Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of about 10,000 for valve (0.07 sec)

  1. src/vendor/golang.org/x/net/idna/tables12.0.0.go

    	{value: 0x3008, lo: 0x86, hi: 0x88},
    	{value: 0x0040, lo: 0x89, hi: 0x89},
    	{value: 0x3008, lo: 0x8a, hi: 0x8c},
    	{value: 0x3b08, lo: 0x8d, hi: 0x8d},
    	{value: 0x0040, lo: 0x8e, hi: 0x8f},
    	{value: 0x0008, lo: 0x90, hi: 0x90},
    	{value: 0x0040, lo: 0x91, hi: 0x96},
    	{value: 0x3008, lo: 0x97, hi: 0x97},
    	{value: 0x0040, lo: 0x98, hi: 0xa5},
    	{value: 0x0008, lo: 0xa6, hi: 0xaf},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 273.5K bytes
    - Viewed (0)
  2. 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)
  3. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_xla_attribute_utils.cc

      Value one = CreateScalarConstValue<int32_t>(builder, loc, 1);
      Value two = CreateScalarConstValue<int32_t>(builder, loc, 2);
      Value filter_size = CreateScalarConstValue<int32_t>(builder, loc, filter_sz);
      Type int32_scalar_type = zero.getType();
    
      auto scalar_add = [&](Value lhs, Value rhs) {
        return builder.create<TF::AddOp>(loc, int32_scalar_type, lhs, rhs);
      };
      auto scalar_mul = [&](Value lhs, Value rhs) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/AtomicDouble.java

      }
    
      /**
       * Atomically sets the value to the given updated value if the current value is <a
       * href="#bitEquals">bitwise equal</a> to the expected value.
       *
       * @param expect the expected value
       * @param update the new value
       * @return {@code true} if successful. False return indicates that the actual value was not
       *     bitwise equal to the expected value.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 28 21:00:54 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  5. .idea/inspectionProfiles/idea_default.xml

                <option name="ACCESS_JAVADOC_REQUIRED_FOR" value="none" />
                <option name="REQUIRED_TAGS" value="" />
              </value>
            </option>
            <option name="INNER_CLASS_OPTIONS">
              <value>
                <option name="ACCESS_JAVADOC_REQUIRED_FOR" value="none" />
                <option name="REQUIRED_TAGS" value="" />
              </value>
            </option>
            <option name="METHOD_OPTIONS">
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Nov 09 20:59:03 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  6. schema/field.go

    	switch {
    	case len(field.StructField.Index) == 1 && fieldIndex > 0:
    		field.ReflectValueOf = func(ctx context.Context, value reflect.Value) reflect.Value {
    			return reflect.Indirect(value).Field(fieldIndex)
    		}
    	default:
    		field.ReflectValueOf = func(ctx context.Context, v reflect.Value) reflect.Value {
    			v = reflect.Indirect(v)
    			for idx, fieldIdx := range field.StructField.Index {
    				if fieldIdx >= 0 {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 15 03:20:20 UTC 2024
    - 32K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/core/v1/ephemeralcontainer.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Image field is set to the value of the last call.
    func (b *EphemeralContainerApplyConfiguration) WithImage(value string) *EphemeralContainerApplyConfiguration {
    	b.Image = &value
    	return b
    }
    
    // WithCommand adds the given value to the Command field in the declarative configuration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/MoreObjects.java

          } else if (value instanceof OptionalInt) {
            return !((OptionalInt) value).isPresent();
          } else if (value instanceof OptionalLong) {
            return !((OptionalLong) value).isPresent();
          } else if (value instanceof OptionalDouble) {
            return !((OptionalDouble) value).isPresent();
          } else if (value instanceof Optional) {
            return !((Optional) value).isPresent();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ioctl_linux.go

    	var value uint32
    	err := ioctlPtr(fd, req, unsafe.Pointer(&value))
    	return value, err
    }
    
    func IoctlGetRTCTime(fd int) (*RTCTime, error) {
    	var value RTCTime
    	err := ioctlPtr(fd, RTC_RD_TIME, unsafe.Pointer(&value))
    	return &value, err
    }
    
    func IoctlSetRTCTime(fd int, value *RTCTime) error {
    	return ioctlPtr(fd, RTC_SET_TIME, unsafe.Pointer(value))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  10. 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)
Back to top