Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,671 for value$ (0.1 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/batch/v1/jobspec.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the ActiveDeadlineSeconds field is set to the value of the last call.
    func (b *JobSpecApplyConfiguration) WithActiveDeadlineSeconds(value int64) *JobSpecApplyConfiguration {
    	b.ActiveDeadlineSeconds = &value
    	return b
    }
    
    // WithPodFailurePolicy sets the PodFailurePolicy field in the declarative configuration to the given value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/StaticValueTest.groovy

        def "creates value for null value"() {
            expect:
            def value = StaticValue.of(null)
            value.call() == null
            value.taskDependencies == TaskDependencyContainer.EMPTY
            value.attachProducer(Stub(Task))
            value.maybeFinalizeValue()
        }
    
        def "creates value for other value"() {
            expect:
            def value = StaticValue.of("abc")
            value.call() == "abc"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/provider/HasMultipleValues.java

        HasMultipleValues<T> value(@Nullable Iterable<? extends T> elements);
    
        /**
         * Sets the property to have the same value of the given provider, and replaces any existing value. This property will track the value of the provider and query its value each time the value of this property is queried. When the provider has no value, this property will also have no value.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 18:32:13 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/DefaultIsolatableFactory.java

                throw new UnsupportedOperationException("Isolating values of type '" + value.getClass().getSimpleName() + "' is not supported");
            }
    
            @Override
            public Isolatable<?> javaSerialized(Object value, byte[] serializedValue) {
                return new IsolatedJavaSerializedValueSnapshot(classLoaderHashOf(value), serializedValue, value.getClass());
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/util/DocumentUtil.java

                    return (T) value;
                }
                return (T) Long.valueOf(value.toString());
            }
            if (clazz.isAssignableFrom(Integer.class)) {
                if (value instanceof Integer) {
                    return (T) value;
                }
                return (T) Integer.valueOf(value.toString());
            }
            if (clazz.isAssignableFrom(Double.class)) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/collection/Maps.java

         * @param <VALUE>
         *            <code>Map</code>の値ーの型
         * @param key
         *            <code>Map</code>に追加されるキー
         * @param value
         *            <code>Map</code>に追加される値
         * @return 指定されたキーと値を持つ{@link IdentityHashMap}を構築するための{@literal Maps}
         */
        public static <KEY, VALUE> Maps<KEY, VALUE> identityHashMap(final KEY key, final VALUE value) {
            return new Maps<>(new IdentityHashMap<KEY, VALUE>()).$(key, value);
        }
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/measure/Amount.java

            return valueOf(BigDecimal.valueOf(value), units);
        }
    
        /**
         * Returns null if the given value is null.
         */
        @Nullable
        public static <Q> Amount<Q> valueOf(@Nullable BigDecimal value, Units<Q> units) {
            if (value == null) {
                return null;
            }
            return new Amount<>(value, units);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. src/reflect/iter.go

    		return func(yield func(Value, Value) bool) {
    			rf := MakeFunc(v.Type().In(0), func(in []Value) []Value {
    				return []Value{ValueOf(yield(in[0], in[1]))}
    			})
    			v.Call([]Value{rf})
    		}
    	}
    	switch v.Kind() {
    	case Pointer:
    		if v.Elem().kind() != Array {
    			break
    		}
    		return func(yield func(Value, Value) bool) {
    			v = v.Elem()
    			for i := range v.Len() {
    				if !yield(ValueOf(i), v.Index(i)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 13:40:11 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaSerializationIntegrationTest.groovy

                        println "this.value = " + value.prop
                        println "bean.value = " + bean.value.prop
                    }
                }
    
                task ok(type: SomeTask)
            """
    
            when:
            configurationCacheRun "ok"
            configurationCacheRun "ok"
    
            then:
            outputContains("this.value = [a]")
            outputContains("bean.value = [b]")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/DefaultValueSnapshotter.java

            @Override
            public ValueSnapshot longValue(Long value) {
                return new LongValueSnapshot(value);
            }
    
            @Override
            public ValueSnapshot shortValue(Short value) {
                return new ShortValueSnapshot(value);
            }
    
            @Override
            public ValueSnapshot hashCode(HashCode value) {
                return new HashCodeSnapshot(value);
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 20:22:01 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top