Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for valve (0.05 sec)

  1. pkg/kubelet/envvars/envvars_test.go

    		{Name: "ABC_123_SERVICE_PORT", Value: "8081"},
    		{Name: "ABC_123_SERVICE_PORT_U_D_P", Value: "8081"},
    		{Name: "ABC_123_SERVICE_PORT_T_C_P", Value: "8081"},
    		{Name: "ABC_123_PORT", Value: "udp://5.6.7.8:8081"},
    		{Name: "ABC_123_PORT_8081_UDP", Value: "udp://5.6.7.8:8081"},
    		{Name: "ABC_123_PORT_8081_UDP_PROTO", Value: "udp"},
    		{Name: "ABC_123_PORT_8081_UDP_PORT", Value: "8081"},
    		{Name: "ABC_123_PORT_8081_UDP_ADDR", Value: "5.6.7.8"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 27 05:56:27 UTC 2018
    - 5.8K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/testdata/half_plus_two_pbtxt/00000123/saved_model.pbtxt

        key: "asset_filepaths"
        value {
          node_list {
            value: "Const:0"
          }
        }
      }
      collection_def {
        key: "legacy_init_op"
        value {
          node_list {
            value: "group_deps"
          }
        }
      }
      collection_def {
        key: "saved_model_assets"
        value {
          any_list {
            value {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 26 01:10:27 UTC 2017
    - 46.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/AbstractValueProcessor.java

            }
            if (value instanceof Number) {
                if (value instanceof Integer) {
                    return visitor.integerValue((Integer) value);
                }
                if (value instanceof Long) {
                    return visitor.longValue((Long) value);
                }
                if (value instanceof Short) {
                    return visitor.shortValue((Short) value);
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 19:08:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumesource.go

    	return b
    }
    
    // WithFC sets the FC field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the FC field is set to the value of the last call.
    func (b *PersistentVolumeSourceApplyConfiguration) WithFC(value *FCVolumeSourceApplyConfiguration) *PersistentVolumeSourceApplyConfiguration {
    	b.FC = value
    	return b
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 13.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/IsolatedCodecs.kt

            writeString(value.value)
        }
    
        override suspend fun ReadContext.decode(): StringValueSnapshot {
            val value = readString()
            return StringValueSnapshot(value)
        }
    }
    
    
    object IntegerValueSnapshotCodec : Codec<IntegerValueSnapshot> {
        override suspend fun WriteContext.encode(value: IntegerValueSnapshot) {
            writeInt(value.value)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/Providers.java

            private final Value<? extends T> value;
    
            public NoValueProvider(Value<? extends T> value) {
                assert value.isMissing();
                this.value = value;
            }
    
            @Override
            public Value<? extends T> calculateValue(ValueConsumer consumer) {
                return value;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:32 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/end2end/back2back_fake_quant.pbtxt

      attr {
        key: "T"
        value {
          type: DT_FLOAT
        }
      }
    }
    node {
      name: "sequential/quant_dense/MatMul/kquant/FakeQuantWithMinMaxVars/ReadVariableOp/resource"
      op: "Const"
      attr {
        key: "dtype"
        value {
          type: DT_FLOAT
        }
      }
      attr {
        key: "value"
        value {
          tensor {
            dtype: DT_FLOAT
            tensor_shape {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 15 19:42:47 UTC 2021
    - 25.9K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/base/KtConstantValue.kt

        /**
         * The constant value. The type of this value is always the type specified in its name, i.e, it is `Boolean` for [KaBooleanConstantValue]
         *
         * It is null only for [KaNullConstantValue]
         */
        public abstract val value: Any?
    
        /**
         * Source element from which the value was created. May be null for constants from non-source files.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/jsonschemaprops.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Schema field is set to the value of the last call.
    func (b *JSONSchemaPropsApplyConfiguration) WithSchema(value v1beta1.JSONSchemaURL) *JSONSchemaPropsApplyConfiguration {
    	b.Schema = &value
    	return b
    }
    
    // WithRef sets the Ref field in the declarative configuration to the given value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueSupplier.java

                if (value.isMissing()) {
                    return null;
                }
    
                return fixed(value.getWithoutSideEffect(), value.getSideEffect());
            }
    
            /**
             * Extracts the side effect from the {@code value} if any, and fixes it on that value.
             * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 20:31:29 UTC 2024
    - 27.2K bytes
    - Viewed (0)
Back to top