Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for default_value (0.17 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

            key_index=lookup_ops.TextFileIndex.WHOLE_LINE,
            value_dtype=dtypes.int64,
            value_index=lookup_ops.TextFileIndex.LINE_NUMBER,
        )
        table = lookup_ops.StaticHashTable(init, default_value=-1)
    
        input_vocabs_placeholder = array_ops.placeholder(
            dtypes.string, shape=(None,), name='input_vocabs'
        )
    
        # Introduce a matmul op that takes the lookup values to observe the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Iterators.java

       * position}th position or {@code defaultValue} otherwise.
       *
       * @param position position of the element to return
       * @param defaultValue the default value to return if the iterator is empty or if {@code position}
       *     is greater than the number of elements remaining in {@code iterator}
       * @return the element at the specified position in {@code iterator} or {@code defaultValue} if
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Iterators.java

       * position}th position or {@code defaultValue} otherwise.
       *
       * @param position position of the element to return
       * @param defaultValue the default value to return if the iterator is empty or if {@code position}
       *     is greater than the number of elements remaining in {@code iterator}
       * @return the element at the specified position in {@code iterator} or {@code defaultValue} if
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. tests/migrate_test.go

    	columnType, err := findColumnType(tableName, "content")
    	AssertEqual(t, err, nil)
    
    	defVal, ok := columnType.DefaultValue()
    	AssertEqual(t, defVal, "null")
    	AssertEqual(t, ok, true)
    
    	columnType2, err := findColumnType(tableName, "active")
    	AssertEqual(t, err, nil)
    
    	defVal, ok = columnType2.DefaultValue()
    	bv, _ := strconv.ParseBool(defVal)
    	AssertEqual(t, bv, false)
    	AssertEqual(t, ok, true)
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/route.go

    			return &core.RuntimeFractionalPercent{
    				DefaultValue: translatePercentToFractionalPercent(in.MirrorPercentage),
    			}
    		}
    		// If zero percent is provided explicitly, we should not mirror.
    		return nil
    	// nolint: staticcheck
    	case in.MirrorPercent != nil:
    		if in.MirrorPercent.GetValue() > 0 {
    			return &core.RuntimeFractionalPercent{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // Macros for defining flags.
    #define GTEST_DEFINE_bool_(name, default_val, doc) \
        GTEST_API_ bool GTEST_FLAG(name) = (default_val)
    #define GTEST_DEFINE_int32_(name, default_val, doc) \
        GTEST_API_ ::testing::internal::Int32 GTEST_FLAG(name) = (default_val)
    #define GTEST_DEFINE_string_(name, default_val, doc) \
        GTEST_API_ ::std::string GTEST_FLAG(name) = (default_val)
    
    // Thread annotations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // Macros for defining flags.
    #define GTEST_DEFINE_bool_(name, default_val, doc) \
        GTEST_API_ bool GTEST_FLAG(name) = (default_val)
    #define GTEST_DEFINE_int32_(name, default_val, doc) \
        GTEST_API_ ::testing::internal::Int32 GTEST_FLAG(name) = (default_val)
    #define GTEST_DEFINE_string_(name, default_val, doc) \
        GTEST_API_ ::std::string GTEST_FLAG(name) = (default_val)
    
    // Thread annotations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        default String getSystemProperty(final String key, final String defaultValue) {
            return ComponentUtil.getSystemProperties().getProperty(key, System.getProperty(Constants.SYSTEM_PROP_PREFIX + key, defaultValue));
        }
    
        default void setSystemProperty(final String key, final String value) {
            if (value != null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_test.go

    								Name:         "custom_tag_env-var",
    								DefaultValue: "custom-tag-env-default",
    							},
    						},
    					},
    					"custom_tag_request_header": {
    						Type: &meshconfig.Tracing_CustomTag_Header{
    							Header: &meshconfig.Tracing_RequestHeader{
    								Name:         "custom_tag_request_header_name",
    								DefaultValue: "custom-defaulted-value-request-header",
    							},
    						},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                assert resource != null;
                return resource;
            }
    
            private String elvis(String value, String defaultValue) {
                return value != null ? value : defaultValue;
            }
    
            private String substitute(String value) {
                return IvyPatternHelper.substituteVariables(value, properties);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
Back to top