Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 4,490 for value$ (0.14 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/JavaTestSubject.java

        protected void setProtectedProperty(String value) {
        }
    
        private String getPrivateProperty() {
            return null;
        }
    
        private void setPrivateProperty(String value) {
        }
    
        public void setMultiValue(Set<String> values) { }
    
        public void setMultiValue(Iterable<?> values) { }
    
        public void setMyProperty2(String value) {
            myProp2 = value;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/core/v1/podsecuritycontext.go

    // If called multiple times, values provided by each call will be appended to the Sysctls field.
    func (b *PodSecurityContextApplyConfiguration) WithSysctls(values ...*SysctlApplyConfiguration) *PodSecurityContextApplyConfiguration {
    	for i := range values {
    		if values[i] == nil {
    			panic("nil value passed to WithSysctls")
    		}
    		b.Sysctls = append(b.Sysctls, *values[i])
    	}
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.td

    // Creates a scalar const with integer value.
    class CreateScalarIntegerConst<string type, string value> : NativeCodeCall<
      "CreateScalarConstValue<"# type #">($_builder, $_loc, "# value #")">;
    
    // Creates an I64 array attribute with given values.
    class CreateI64ArrayAttr<string values> : NativeCodeCall<
      "$_builder.getI64ArrayAttr("# values #")">;
    
    // Creates a string attribute with given values.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 08 04:55:44 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/PatternSetCodec.kt

        writeCollection(value.includeSpecsView)
        writeCollection(value.excludeSpecsView)
    }
    
    
    private
    suspend fun ReadContext.readPatternSet(value: PatternSet) {
        value.isCaseSensitive = readBoolean()
        value.setIncludes(readStrings())
        value.setExcludes(readStrings())
        readCollection {
            value.include(readNonNull<Spec<FileTreeElement>>())
        }
        readCollection {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/TransformBackedProvider.java

                return mapValue(context, value);
            }
        }
    
        @Nonnull
        protected Value<OUT> mapValue(EvaluationContext.ScopeContext context, Value<? extends IN> value) {
            if (value.isMissing()) {
                return value.asType();
            }
            return value.transform(transformer);
        }
    
        protected void beforeRead(EvaluationContext.ScopeContext context) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/kryo/StringDeduplicatingKryoBackedEncoder.java

        public void writeInt(int value) {
            output.writeInt(value);
        }
    
        @Override
        public void writeSmallInt(int value) {
            output.writeInt(value, true);
        }
    
        @Override
        public void writeShort(short value) throws IOException {
            output.writeShort(value);
        }
    
        @Override
        public void writeFloat(float value) throws IOException {
            output.writeFloat(value);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. test/alias2.go

    	type _ = struct{}
    	type _ = reflect.Value
    	type _ = Value
    
    	type (
    		A0 = T0
    		A1 = int
    		A2 = struct{}
    		A3 = reflect.Value
    		A4 = Value
    		A5 Value
    
    		N0 A0
    	)
    
    	var _ A0 = T0{}
    	var _ T0 = A0{}
    
    	var _ N0 = T0{} // ERROR "cannot use T0{} \(value of type T0\) as N0 value in variable declaration"
    	var _ N0 = A0{} // ERROR "cannot use A0{} \(value of type A0\) as N0 value in variable declaration"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:09:14 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/functional/src/main/java/org/gradle/internal/Either.java

    import java.util.function.Function;
    
    /**
     * Represents values with two possibilities.
     *
     * @param <L> the left type.
     * @param <R> the right type.
     */
    public abstract class Either<L, R> {
    
        public static <L, R> Either<L, R> left(L value) {
            return new Left<>(value);
        }
    
        public static <L, R> Either<L, R> right(R value) {
            return new Right<>(value);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/validationrule.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Message field is set to the value of the last call.
    func (b *ValidationRuleApplyConfiguration) WithMessage(value string) *ValidationRuleApplyConfiguration {
    	b.Message = &value
    	return b
    }
    
    // WithMessageExpression sets the MessageExpression field in the declarative configuration to the given value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:34:13 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/customModel/internalViews/tests/softwareModelExtend-iv-model.out

                  | Type:   	java.lang.String
                  | Value:  	Some PUBLIC data
                  | Creator: 	components { ... } @ build.gradle line 37, column 5 > create(my)
    + tasks
          | Type:   	org.gradle.model.ModelMap<org.gradle.api.Task>
          | Creator: 	Project.<init>.tasks()
        + assemble
              | Type:   	org.gradle.api.DefaultTask
              | Value:  	task ':assemble'
              | Creator: 	Project.<init>.tasks.assemble()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:33:19 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top