Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 253 for default_value (0.21 sec)

  1. pilot/pkg/networking/core/tracing.go

    						Name:         tag.Environment.Name,
    						DefaultValue: tag.Environment.DefaultValue,
    					},
    				},
    			}
    			tags = append(tags, env)
    		case *telemetrypb.Tracing_CustomTag_Header:
    			header := &tracing.CustomTag{
    				Tag: tagName,
    				Type: &tracing.CustomTag_RequestHeader{
    					RequestHeader: &tracing.CustomTag_Header{
    						Name:         tag.Header.Name,
    						DefaultValue: tag.Header.DefaultValue,
    					},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. src/encoding/asn1/common.go

    		case part == "utf8":
    			ret.stringType = TagUTF8String
    		case strings.HasPrefix(part, "default:"):
    			i, err := strconv.ParseInt(part[8:], 10, 64)
    			if err == nil {
    				ret.defaultValue = new(int64)
    				*ret.defaultValue = i
    			}
    		case strings.HasPrefix(part, "tag:"):
    			i, err := strconv.Atoi(part[4:])
    			if err == nil {
    				ret.tag = new(int)
    				*ret.tag = i
    			}
    		case part == "set":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  3. src/mdo/writer.vm

                }
                serializer.endTag(NAMESPACE, dom.getName());
            }
        }
    
        private void writeTag(String tagName, String defaultValue, String value, XmlSerializer serializer) throws IOException {
            if (value != null && !Objects.equals(defaultValue, value)) {
                serializer.startTag(NAMESPACE, tagName).text(value).endTag(NAMESPACE, tagName);
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/CertificateAdapters.kt

            // v1 == 0.
            .optional(defaultValue = 0),
          Adapters.INTEGER_AS_BIG_INTEGER,
          algorithmIdentifier,
          name,
          validity,
          name,
          subjectPublicKeyInfo,
          Adapters.BIT_STRING.withTag(tag = 1L).optional(),
          Adapters.BIT_STRING.withTag(tag = 2L).optional(),
          extension.asSequenceOf().withExplicitBox(tag = 3).optional(defaultValue = listOf()),
          decompose = {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. src/mdo/writer-stax.vm

        private void writeTag(String tagName, String defaultValue, String value, XMLStreamWriter serializer, InputLocationTracker locationTracker) throws IOException, XMLStreamException {
    #else
        private void writeTag(String tagName, String defaultValue, String value, XMLStreamWriter serializer) throws IOException, XMLStreamException {
    #end
            if (value != null && !Objects.equals(defaultValue, value)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  6. api/maven-api-metadata/src/main/mdo/metadata.mdo

              <version>1.0.0+</version>
              <description>Whether to use a local copy instead (with filename that includes the base version)</description>
              <type>boolean</type>
              <defaultValue>false</defaultValue>
            </field>
          </fields>
        </class>
        <class java.clone="deep">
          <name>SnapshotVersion</name>
          <version>1.1.0+</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 15 17:32:27 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/util/DocumentUtil.java

        private DocumentUtil() {
        }
    
        public static <T> T getValue(final Map<String, Object> doc, final String key, final Class<T> clazz, final T defaultValue) {
            final T value = getValue(doc, key, clazz);
            if (value == null) {
                return defaultValue;
            }
            return value;
        }
    
        @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/job/ExecJob.java

                if (appendValue != null) {
                    buf.append(appendValue);
                }
                cmdList.add(buf.toString());
            } else if (defaultValue != null) {
                cmdList.add("-D" + name + "=" + defaultValue);
            }
        }
    
        protected void addFessConfigProperties(final List<String> cmdList) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/StartParameterInternal.java

        private boolean watchFileSystemDebugLogging;
        private boolean vfsVerboseLogging;
    
        private Option.Value<Boolean> configurationCache = Option.Value.defaultValue(false);
        private Option.Value<Boolean> isolatedProjects = Option.Value.defaultValue(false);
        private ConfigurationCacheProblemsOption.Value configurationCacheProblems = ConfigurationCacheProblemsOption.Value.FAIL;
        private boolean configurationCacheDebug;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 29 08:08:36 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  10. migrator/column_type.go

    }
    
    // Comment returns the comment of current column.
    func (ct ColumnType) Comment() (value string, ok bool) {
    	return ct.CommentValue.String, ct.CommentValue.Valid
    }
    
    // DefaultValue returns the default value of current column.
    func (ct ColumnType) DefaultValue() (value string, ok bool) {
    	return ct.DefaultValueValue.String, ct.DefaultValueValue.Valid
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Mar 24 01:31:58 UTC 2022
    - 3.3K bytes
    - Viewed (0)
Back to top