Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 253 for default_value (0.16 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractCollectionProperty.java

            init();
        }
    
        private void init() {
            defaultValue = emptySupplier();
            init(defaultValue, noValueSupplier());
        }
    
        @Override
        protected CollectionSupplier<T, C> getDefaultValue() {
            return defaultValue;
        }
    
        @Override
        protected CollectionSupplier<T, C> getDefaultConvention() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  2. src/mdo/reader.vm

         *
         * @param s a s object.
         * @param defaultValue a defaultValue object.
         * @param parser a parser object.
         * @param attribute a attribute object.
         * @throws XMLStreamException XMLStreamException if
         * any.
         * @return boolean
         */
        private boolean getBooleanValue(String s, String attribute, XMLStreamReader parser, boolean defaultValue)
            throws XMLStreamException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/graph/ValueGraph.java

       * otherwise, returns {@code defaultValue}.
       *
       * <p>In an undirected graph, this is equal to {@code edgeValueOrDefault(nodeV, nodeU,
       * defaultValue)}.
       *
       * @throws IllegalArgumentException if {@code nodeU} or {@code nodeV} is not an element of this
       *     graph
       */
      @CheckForNull
      V edgeValueOrDefault(N nodeU, N nodeV, @CheckForNull V defaultValue);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/Optional.java

      /**
       * Returns the contained instance if it is present; {@code defaultValue} otherwise. If no default
       * value should be required because the instance is known to be present, use {@link #get()}
       * instead. For a default value of {@code null}, use {@link #orNull}.
       *
       * <p>Note about generics: The signature {@code public T or(T defaultValue)} is overly
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/Optional.java

      /**
       * Returns the contained instance if it is present; {@code defaultValue} otherwise. If no default
       * value should be required because the instance is known to be present, use {@link #get()}
       * instead. For a default value of {@code null}, use {@link #orNull}.
       *
       * <p>Note about generics: The signature {@code public T or(T defaultValue)} is overly
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. src/mdo/model.vm

          #if ( $field.defaultValue )
            #set ( $type = ${types.getOrDefault($field,${types.getOrDefault($field.type,$field.type)})} )
            #if ( $field.type == "String" )
                    this.${field.name} = "${field.defaultValue}";
            #elseif ( $field.type != "java.util.List" && $field.type != "java.util.Properties" )
                    this.${field.name} = ${field.defaultValue};
            #end
          #end
        #end
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/capture/run_test.go

    		ProxyGID:                constants.DefaultProxyUID,
    		InboundTProxyMark:       "1337",
    		InboundTProxyRouteTable: "133",
    		OwnerGroupsInclude:      constants.OwnerGroupsInclude.DefaultValue,
    		HostIPv4LoopbackCidr:    constants.HostIPv4LoopbackCidr.DefaultValue,
    		RestoreFormat:           false,
    	}
    }
    
    func TestIptables(t *testing.T) {
    	cases := []struct {
    		name   string
    		config func(cfg *config.Config)
    	}{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultMapProperty.java

            init();
        }
    
        private void init() {
            defaultValue = emptySupplier();
            init(defaultValue, noValueSupplier());
        }
    
        @Override
        public MapSupplier<K, V> getDefaultValue() {
            return defaultValue;
        }
    
        @Override
        protected MapSupplier<K, V> getDefaultConvention() {
            return noValueSupplier();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/objectGraph/reflectObject.kt

        }
    
        data class Null(override val objectOrigin: ObjectOrigin) : ObjectReflection {
            override val type: DataType
                get() = DataTypeInternal.DefaultNullType
        }
    
        data class DefaultValue(
            override val type: DataType,
            override val objectOrigin: ObjectOrigin
        ) : ObjectReflection
    
        data class PureFunctionInvocation(
            override val type: DataType,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/testing/ArbitraryInstances.java

       * determined.
       */
      public static <T> @Nullable T get(Class<T> type) {
        T defaultValue = DEFAULTS.getInstance(type);
        if (defaultValue != null) {
          return defaultValue;
        }
        Class<? extends T> implementation = getImplementation(type);
        if (implementation != null) {
          return get(implementation);
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 20.5K bytes
    - Viewed (0)
Back to top