Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 158 for VALUE1 (0.1 sec)

  1. tensorflow/c/tf_status_helper_test.cc

    namespace tsl {
    namespace {
    
    TEST(StatusHelper, TestStatusHelper) {
      TSL_Status* s = TSL_NewStatus();
      absl::Status cc_status(absl::InvalidArgumentError("some error"));
      cc_status.SetPayload("key1", absl::Cord("value1"));
      cc_status.SetPayload("key2", absl::Cord("value2"));
      Set_TF_Status_from_Status(s, cc_status);
      ASSERT_EQ(TSL_INVALID_ARGUMENT, TSL_GetCode(s));
      ASSERT_EQ(std::string("some error"), TSL_Message(s));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 21:57:32 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. README.ja.md

    suggester.indexer().indexFromDocument(reader, 2, 100).getResponse();
    ```
    
    ### Add suggest document from queryLog
    
    クエリーログ(query_string)を解析してサジェストドキュメントを登録
    
    ```java
    QueryLog queryLog = new QueryLog("field1:value1", null);
    suggester.indexer().indexFromQueryLog(queryLog);
    ```
    
    ### Add suggest document from search words
    
    検索語を解析してサジェストドキュメントを登録
    
    ```java
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Jul 27 10:00:55 UTC 2015
    - 2.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/ClosingFutureFinishToFutureTest.java

            });
      }
    
      public void testFinishToFuture_preventsFurtherDerivation() {
        ClosingFuture<String> closingFuture = ClosingFuture.from(immediateFuture("value1"));
        FluentFuture<String> unused = closingFuture.finishToFuture();
        assertDerivingThrowsIllegalStateException(closingFuture);
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. security/tools/jwt/sa-jwt.py

                            help="sub claim. If not provided, it is set to the same as iss claim.")
        parser.add_argument("-claims", "--claims",
                            help="Other claims in format name1:value1,name2:value2 etc. Only string values are supported.")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/DefaultIsolatableFactoryTest.groovy

            def value = instantiator.named(Thing, "value1")
    
            expect:
            def isolated = isolatableFactory.isolate(value)
            isolated instanceof IsolatedImmutableManagedValue
            isolated.isolate().is(value)
        }
    
        def "can coerce named managed type"() {
            def instantiator = TestUtil.objectInstantiator()
            def value = instantiator.named(Thing, "value1")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 17K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/plugin-exec-config-order/wo-plugin-mgmt/pom.xml

                    <stringParam>four</stringParam>
                  </stringParams>
                  <propertiesParam>
                    <property>
                      <name>key1</name>
                      <value>value1</value>
                    </property>
                    <property>
                      <name>key2</name>
                      <value>value2</value>
                    </property>
                  </propertiesParam>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/conversion/queryparams/convert_test.go

    		},
    		{
    			input: &foo{
    				Str:       "named types",
    				NamedStr:  "value1",
    				NamedBool: true,
    			},
    			expected: url.Values{"str": {"named types"}, "namedStr": {"value1"}, "namedBool": {"true"}},
    		},
    		{
    			input: &foo{
    				Str: "don't ignore embedded struct",
    				Foobar: bar{
    					Float1: 5.0,
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 03 07:01:02 UTC 2018
    - 6.2K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/crypto/cryptobyte/asn1.go

    	// encoded differently) and then every varint is a single byte long.
    	components := make([]int, len(bytes)+1)
    
    	// The first varint is 40*value1 + value2:
    	// According to this packing, value1 can take the values 0, 1 and 2 only.
    	// When value1 = 0 or value1 = 1, then value2 is <= 39. When value1 = 2,
    	// then there are no restrictions on value2.
    	var v int
    	if !bytes.readBase128Int(&v) {
    		return false
    	}
    	if v < 80 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/toleration_test.go

    			toleration: Toleration{
    				Key:      "foo",
    				Operator: TolerationOpEqual,
    				Value:    "value1",
    				Effect:   TaintEffectNoSchedule,
    			},
    			taint: Taint{
    				Key:    "foo",
    				Value:  "value2",
    				Effect: TaintEffectNoSchedule,
    			},
    			expectTolerated: false,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 22 17:21:42 UTC 2017
    - 3.4K bytes
    - Viewed (0)
  10. 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) {
        ImmutableMultiset.Builder<T> builder = ImmutableMultiset.builder();
    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