Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of about 10,000 for value$ (0.15 sec)

  1. 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)
  2. 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)
  3. schema/field.go

    						return field.Set(ctx, value, reflectV.Elem().Interface())
    					} else {
    						if valuer, ok := v.(driver.Valuer); ok {
    							v, _ = valuer.Value()
    						}
    
    						err = field.ReflectValueOf(ctx, value).Addr().Interface().(sql.Scanner).Scan(v)
    					}
    					return
    				}
    			} else {
    				field.Set = func(ctx context.Context, value reflect.Value, v interface{}) (err error) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 15 03:20:20 UTC 2024
    - 32K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/core/v1/ephemeralcontainer.go

    // If called multiple times, values provided by each call will be appended to the Ports field.
    func (b *EphemeralContainerApplyConfiguration) WithPorts(values ...*ContainerPortApplyConfiguration) *EphemeralContainerApplyConfiguration {
    	for i := range values {
    		if values[i] == nil {
    			panic("nil value passed to WithPorts")
    		}
    		b.Ports = append(b.Ports, *values[i])
    	}
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1/jsonschemaprops.go

    // If called multiple times, values provided by each call will be appended to the AllOf field.
    func (b *JSONSchemaPropsApplyConfiguration) WithAllOf(values ...*JSONSchemaPropsApplyConfiguration) *JSONSchemaPropsApplyConfiguration {
    	for i := range values {
    		if values[i] == nil {
    			panic("nil value passed to WithAllOf")
    		}
    		b.AllOf = append(b.AllOf, *values[i])
    	}
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/tests/keras_imagenet_main_graph_mode.pbtxt

      attr {
        key: "_class"
        value {
          list {
            s: "loc:@G4SM2HGMB5/Read/ReadVariableOp"
          }
        }
      }
      attr {
        key: "container"
        value {
          s: ""
        }
      }
      attr {
        key: "dtype"
        value {
          type: DT_FLOAT
        }
      }
      attr {
        key: "shape"
        value {
          shape {
            dim {
              size: 117
            }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 30 02:52:54 UTC 2019
    - 1.1M bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/ListenerCallQueueTest.java

          }
        };
      }
    
      private static <T> ImmutableMultiset<T> multiset(T value, int count) {
        return multiset(ImmutableMap.of(value, count));
      }
    
      private static <T> ImmutableMultiset<T> multiset(T value1, int count1, T value2, int count2) {
        return multiset(ImmutableMap.of(value1, count1, value2, count2));
      }
    
      private static <T> ImmutableMultiset<T> multiset(Map<T, Integer> counts) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 09 22:57:07 UTC 2022
    - 8.2K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/ListenerCallQueueTest.java

          }
        };
      }
    
      private static <T> ImmutableMultiset<T> multiset(T value, int count) {
        return multiset(ImmutableMap.of(value, count));
      }
    
      private static <T> ImmutableMultiset<T> multiset(T value1, int count1, T value2, int count2) {
        return multiset(ImmutableMap.of(value1, count1, value2, count2));
      }
    
      private static <T> ImmutableMultiset<T> multiset(Map<T, Integer> counts) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 09 22:57:07 UTC 2022
    - 8.2K bytes
    - Viewed (0)
Back to top