Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of about 10,000 for value$ (0.17 sec)

  1. 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)
  2. tensorflow/compiler/mlir/lite/tests/end2end/back2back_fake_quant.pbtxt

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

    import org.jetbrains.kotlin.types.ConstantValueKind
    
    
    /**
     * A Kotlin constant value. This value amy be used as `const val` initializer or annotation argument.
     * Also, may represent evaluated constant value. So, `1 + 2` will be represented as `KaIntConstantValue(3)`
     *
     * For more info about constant values please see [official Kotlin documentation](https://kotlinlang.org/docs/properties.html#compile-time-constants])
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. 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)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/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)
  6. subprojects/core-api/src/main/java/org/gradle/api/provider/Property.java

         * @param value The value, can be null.
         * @return this
         * @since 5.0
         */
        Property<T> value(@Nullable T value);
    
        /**
         * Sets the property to have the same value as the given provider, replacing whatever value the property already had.
         * This property will track the value of the provider and query its value each time the value of the property is queried.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'search_engine.password'. <br>
         * The value is, e.g.  <br>
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getSearchEnginePassword();
    
        /**
         * Get the value for the key 'search_engine.password' as {@link Integer}. <br>
         * The value is, e.g.  <br>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/MoreObjects.java

          // Put types estimated to be the most frequent first.
          if (value instanceof CharSequence) {
            return ((CharSequence) value).length() == 0;
          } else if (value instanceof Collection) {
            return ((Collection<?>) value).isEmpty();
          } else if (value instanceof Map) {
            return ((Map<?, ?>) value).isEmpty();
          } else if (value instanceof Optional) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/idna/tables11.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
    - 270.5K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/idna/tables10.0.0.go

    	{value: 0x0000, lo: 0x0b},
    	{value: 0x0808, lo: 0x80, hi: 0x95},
    	{value: 0x3308, lo: 0x96, hi: 0x99},
    	{value: 0x0808, lo: 0x9a, hi: 0x9a},
    	{value: 0x3308, lo: 0x9b, hi: 0xa3},
    	{value: 0x0808, lo: 0xa4, hi: 0xa4},
    	{value: 0x3308, lo: 0xa5, hi: 0xa7},
    	{value: 0x0808, lo: 0xa8, hi: 0xa8},
    	{value: 0x3308, lo: 0xa9, hi: 0xad},
    	{value: 0x0040, lo: 0xae, hi: 0xaf},
    	{value: 0x0818, lo: 0xb0, hi: 0xbe},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 267.2K bytes
    - Viewed (0)
Back to top