The optional tag has no wiki summary.
0
votes
1answer
7 views
How to make an Optional Arguement that requires no value in Python(but only the command)
I have a program, that can run like this.
./program -i /path -o /path -nomore
The -nomore argument is optional. If you type it, it hides some output infos, if you don't, it doesn't (so default is ...
1
vote
0answers
62 views
c# method overloading and optional parameters [duplicate]
Say I have these 2 functions:
public void Test(int Param1)
{
//do something
}
public void Test(int Param1, int Param2 = 1)
{
//do something
}
If I execute ...
0
votes
2answers
30 views
PHP: When should I check optional parameter type for array?
What is the best way to check for optional parameter type in a function? Every example I've seen so far has been of style 2 below. Is that a better way than option 1, or only because you can't check ...
0
votes
1answer
21 views
Django modelform NOT required field
I have a form like this:
class My_Form(ModelForm):
class Meta:
model = My_Class
fields = ('first_name', 'last_name' , 'address')
How can I put the address field as optional?
...
4
votes
4answers
148 views
Optional return in C#.Net
Java 1.8 is receiving the Optional class, that allows us to explicitly say when a method may return a null value and "force" its consumer to verify if it is not null (isPresent()) before using it.
I ...
0
votes
3answers
54 views
Using Color As Optional Parameter In a function within a class
How can I declare an optional color parameter in some function or sub, as if I do that in the normal way (I mean to give some default color for that optional parameter) as the vb.net compiler ...
0
votes
2answers
23 views
Regex, optional match in url
I spend a couple of hour with no good result (maybe my mood is not helping about it).
I am trying to build a regex to help me match both urls:
/reservables/imagenes/4/editar/6
...
3
votes
1answer
91 views
A class whose attributes are all optional
i created a class, whose attributes are all optional. At the moment, my code is thoroughly afflicted by try: ... except AttributeError: ... blocks, but I'm wondering if this is the best approach to ...
2
votes
1answer
143 views
Calling an oracle procedure with optional parameter with nhibernate
I have a procedure like this:
Procedure MyProc(param1 IN VARCHAR2 default 'default_value', param2 IN VARCHAR2 default null);
To debug this in PL-SQL i'm doing:
MyPackage.MyProc(param2 => ...
0
votes
2answers
65 views
twig: display variable only if it exists
Is there a smart way to display/use a twig variable only if it exists?
Say, I've got a structure:
'opt1': {'visible': false, 'bundle': 'XxxBundle', 'name': 'label1'},
'opt2': {'visible': true, ...
0
votes
1answer
212 views
XSD: what is the significance of minOccurs=“0” and defaultValue=“x”
I find myself wondering what the purpose of the defaultValue attribute in XSD is.
Consider, for example a complexType
<xs:complexType name="myType">
<xs:sequence>
...
0
votes
1answer
266 views
Using a System.DateTime type as optional parameter in Visual Basic VB.Net 2010
I am trying to pass an optional System.DateTime parameter to a constructor in VB.NET 2010.
...
Public Sub New(Optional ByVal givendate As System.DateTime = System.DateTime.MinValue)
...
I am ...
0
votes
1answer
20 views
What is going on in this function to achieve this type of parameter input?
Language is AS3, but it shouldn't matter.
Almost all of the code can be ignored, I just had a series of specific questions regarding function formatting I've never seen, but found in this function ...
2
votes
2answers
102 views
mixing optional parameters and params keyword in c# [duplicate]
I am trying to mix optional parameters and variable length parameters (using params keyword):
Here's the function declaration:
void foo(int req, string opt = "empty", params object[] rest) {}
And ...
0
votes
2answers
49 views
Why is this $.getJSON call in the jquery documentation correct?
I am a little bit confused by the jQuery documentation. I am looking at this page describing $.getJSON. The code sample is:
$.getJSON('ajax/test.json', function(data) {
var items = [];
...
1
vote
1answer
28 views
Can I have optional properties in a GAE datastore model?
I have a GAE application, where I'm using the geomodel for a location based model in my database. There are two "types" of this model, however, they need to be geo-queryed together as one. The two ...
0
votes
0answers
204 views
How to pass multiple optional parameters using Ireport
I am trying to add optional parameters to the where clause of my query. Each have been tested and work individually but how can I incorporate them into the query so it doesn't matter which one is ...
0
votes
1answer
64 views
How do I regex match a pattern with optional surrounding parentheses?
I'm looking for a single line regular expression which matches a pattern with optional parentheses. When the parentheses are present they should not be included in the matched pattern.
The following ...
1
vote
2answers
102 views
How to set optional parameter without compile-time constant
Is there a way to write the C# method below:
public string Download(Encoding contentEncoding = null) {
defaultEncoding = contentEncoding ?? Encoding.UTF8;
// codes...
}
with a default ...
0
votes
3answers
74 views
Rails: Count optional tags while having conditional tags in one query
I want to find products matching as many optional tags as possible which are tagged by all conditional tags, ordered by the amount of matching optional tags.
I came up with this for counting the ...
0
votes
1answer
80 views
ANTLR expression with optional operator + custom AST nodes
recently I had to make a grammar for expressions like:
rule1 & rule2 & rule3 => produces binary tree
(AndNode (AndNode RuleNode(rule1) RuleNode(rule2)) RuleNode(rule3))
rule1 | (rule2 ...
0
votes
1answer
86 views
Makefile with optional dependencies
I have some .c and .h files that are generated by a script based on one XML file and optionally another XML file.
From what I've read I should be able to use a wildcard, for example:
%Generated.c ...
0
votes
1answer
157 views
C# .Net How to determine if nullable DataMember value has been supplied
I'm in the process of implementing a WCF/Soap service operation and have defined several of the data contract's members as not required (IsRequired = false).
My question relates to the following two ...
8
votes
1answer
217 views
Python regular expression question mark operator not working?
import re
str='abc defg'
m1 = re.match(".*(def)?",str)
m2 = re.match(".*(def)",str)
print (m1.group(1),m2.group(1))
The output of the above is:
(None, 'def')
What is going on? Even with a ...
0
votes
1answer
142 views
Drupal Views Output an image field as an optional link
I have two normal fields in a view, one optional URL field and one image field. I want that if the optional URL field is empty, the image render as normal, but if the optional URL field contains an ...
1
vote
1answer
94 views
Oracle SQL optional primary key
I'm having a problem in an oracle SQL project I'm working on:
I have a (weak) entity 'Ticket' that has as primary key: (Customer_id,packet_id,project_id,ticket_id). Customer_id, packet_id and ...
1
vote
3answers
123 views
Regular expression with separator and optional part
I seem to have a mental block when it comes to regular expressions, so I hope you can help me.
I have a string that has this format
.* :: .* :: .*
But sometimes like this:
.* :: .*
I want to ...
0
votes
1answer
41 views
mysql optional variables function
So say I have a user defined function:
CREATE FUNCTION ADDRESS_EXISTS_FULL (
line_1 VARCHAR(64),
line_2 VARCHAR(64),
city VARCHAR(64),
state VARCHAR(32),
zip VARCHAR(10),
type ...
0
votes
2answers
56 views
How to assign a default type to create an optional type parameter?
I can work around this, but I am curious why it won't work:
In the same way that you can create an optional parameter with a default value for a routine, such as the one below.....
public void ...
0
votes
1answer
40 views
Optional parameters in mule cloud connector
I want to build a processor in my custom cloud connector using @Optional and @Default, like so:
@Processor
public void createTopic(String topicName, @Optional @Default("defaultSecurity") String ...
1
vote
1answer
485 views
PHPDoc optional parameter
There are already 2 similar questions of this type here on SO but none of the answers seem to work.
PHPDoc doesn't seem to recognize optional parameters in my functions as optional, for example:
/**
...
0
votes
2answers
131 views
How to inject a bean only when it exists
I have the following structure of spring context files ( -> stands for 'includes') :
A1.xml -> B.xml & C.xml
A2.xml -> B.xml
C.xml defines a bean c
B.xml defines a bean b with a ...
0
votes
1answer
76 views
How to hide/show an optional keyboard animatedly from behind the Standard Keyboard in Objective C
I have set a inputAccessoryView as Referencing Outlet of the XIB's file View which has the buttons for an optional keyboard. That makes the View be shown when the Standard Keyboard is shown and be ...
1
vote
1answer
397 views
JSF optional old values come back after clearing them
I am using JSF, PrimeFaces 3.2, Omnifaces 1.1, JBoss AS 7.1.1, Final, Mojarra 2.1.7
I have a form that has two numeric fields both are not required, like this:
<h:form>
<p:inputText ...
2
votes
1answer
497 views
Groovy Closure with optional arguments
I want to define a closure which takes one argument (which i refer to with it )
sometimes i want to pass another additional argument to the closure.
how can i do this?
0
votes
2answers
260 views
Elegant way to handle “undefined method `each' for nil:NilClass” in Ruby for optional associations?
I have a scenario where I have optional associations. Sometimes the associations are there, other times they are not.
I run into a problem when I try to display the data on the screen (think a simple ...
1
vote
1answer
67 views
How To Create WordPress Custom Post Type With OPTIONAL Fields
When creating a custom post type in wordpress for dynamic items, such as portfolio items, some fields may be unsable for certain portfolio items. But, if you leave this field out, there will be a ...
3
votes
2answers
426 views
boost::optional<std::string> and implicit constructor from char[]
I have got used to initializing std::strings in the following way by letting the compiler figure out the magic involved
std::string my_string = "hello";
The following will not work as there is no ...
0
votes
0answers
80 views
const_cast in boost::optional
So I have a member function that returns a view (into a boost::multi_array) that exists in both const and non-const forms. I am using boost::optional to return the view (since it could fail to get any ...
0
votes
1answer
71 views
Make extension optional in htaccess RewriteRule
I've got the following code in .htaccess: -
Options +FollowSymLinks
RewriteEngine On
RewriteRule ^([^/]+)/([^/]+)(.pdf)$ showpdf.pdf?product_code=$1 [NC,QSA,L]
which takes a request in the format ...
0
votes
1answer
669 views
Guava Optional. How to use the correct
I have a class
private class TouchCommand {
private int action;
private int x;
private int y;
...
When the command is executed, it is necessary to verify the field values - null / not null, ...
0
votes
0answers
209 views
How to make a json field optional in facebook registration plugin
I have the following code for my Facebook Registration Social Plugin:
<iframe src="https://www.facebook.com/plugins/registration?
client_id=xxxxxxxxxxxxxxxx&
...
2
votes
2answers
182 views
Clojure: Pass 'expanded' optional args to function
I'm new to Clojure and I'm stuck on how to 'expand' a function's optional args so they can be sent to another function that uses optional args (but wants those args as keywords not a seq of keywords).
...
1
vote
2answers
886 views
JSON: Serialize Guava Optional
Is there a Json Serializer/Deserializer for com.google.common.base.Optional?
Out of the box this doesn't seem to work with Jackson, see below:
package com.example;
import java.io.IOException;
...
0
votes
2answers
180 views
Optional include in PHP
I have a config file with the general configuration (in a git repo), and a local config file that overwrites configuration properties (ignored in the repo). Right now the local config file is included ...
2
votes
1answer
545 views
Guava: How do I convert Collection<T> to Collection<Optional<T>>?
In Guava, if I have a Collection<T> - is there any existing function in Guava that will allow me to easily transform it to a Collection<Optional<T>> ?
3
votes
1answer
44 views
confusing OPTIONAL - disappearing records
I have problems with using the OPTIONAL phrase in the SPARQL statements. When I'm quering dbpedia like this:
CONSTRUCT { ?guitarist rdfs:label ?name . ?guitarist rdfs:comment ?desc . ?guitarist ...
8
votes
2answers
118 views
Java writing libraries
I'm trying to write my first library, but I am still hitting some design issues.
My library expects a lot of configuration for which I have created interfaces and default Impl classes, but now my ...
0
votes
1answer
134 views
MySQL - 0 or 1 character select query
is there any way in MySQL to select terms that contain OPTIONALLY (0 or 1) a character without using REGEX ?
For instance I want the SQL query to match at the same time xxx_yyy and xxxyyy.
Hope that's ...
2
votes
2answers
411 views
How do I make an inherited_resource optionally nested as a singleton?
I'm using inherited_resources to DRY my controllers, but can't figure out how to make a particular controller behave correctly. In my model, User has_one Person. I want it to be optionally nested, ...


