Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 7,716 for value$ (0.11 sec)

  1. tensorflow/c/experimental/filesystem/plugins/gcs/expiring_lru_cache_test.cc

      EXPECT_EQ(value, 4);
      // Insertion of "e" causes "a" to be evicted, but the other entries are still
      // there.
      cache2.Insert("e", 5);
      EXPECT_FALSE(cache2.Lookup("a", &value));
      EXPECT_TRUE(cache2.Lookup("b", &value));
      EXPECT_EQ(value, 2);
      EXPECT_TRUE(cache2.Lookup("c", &value));
      EXPECT_EQ(value, 3);
      EXPECT_TRUE(cache2.Lookup("d", &value));
      EXPECT_EQ(value, 4);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 09 19:31:22 UTC 2020
    - 7.1K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/metrics_test.cc

    }
    
    TEST(MetricsTest, TestSavedModelRead) {
      SavedModelReadApi("bar").IncrementBy(1);
      EXPECT_EQ(SavedModelReadApi("bar").value(), 1);
      SavedModelReadCount("2").IncrementBy(1);
      EXPECT_EQ(SavedModelReadCount("2").value(), 1);
    
      SavedModelReadApi("baz").IncrementBy(1);
      EXPECT_EQ(SavedModelReadApi("baz").value(), 1);
      SavedModelReadCount("2").IncrementBy(1);
      EXPECT_EQ(SavedModelReadCount("2").value(), 2);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/upgrade/admin_upgrade.jsp

    											<la:option value="14.0">14.0</la:option>
    											<la:option value="14.1">14.1</la:option>
    											<la:option value="14.2">14.2</la:option>
    											<la:option value="14.3">14.3</la:option>
    											<la:option value="14.4">14.4</la:option>
    											<la:option value="14.5">14.5</la:option>
    											<la:option value="14.6">14.6</la:option>
    											<la:option value="14.7">14.7</la:option>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/force_shared_name_for_resource_ops.pbtxt

        value {
          shape {
          }
        }
      }
      attr {
        key: "shared_name"
        value {
          s: ""
        }
      }
    }
    node {
      name: "variable_v2_node"
      op: "VariableV2"
      attr {
        key: "dtype"
        value {
          type: DT_INT64
        }
      }
      attr {
        key: "shape"
        value {
          shape {
          }
        }
      }
      attr {
        key: "shared_name"
        value {
          s: ""
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 31 02:37:48 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  5. tests/test_dependency_class.py

    
    class MethodsDependency:
        def synchronous(self, value: str) -> str:
            return value
    
        async def asynchronous(self, value: str) -> str:
            return value
    
        def synchronous_gen(self, value: str) -> Generator[str, None, None]:
            yield value
    
        async def asynchronous_gen(self, value: str) -> AsyncGenerator[str, None]:
            yield value
    
    
    callable_dependency = CallableDependency()
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Aug 09 10:54:05 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top