Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 186 for key_1 (0.04 sec)

  1. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/btree/BTreeIndexedCacheTest.java

            cache.put("key_1", 1);
            cache.put("key_2", 2);
            cache.put("key_3", 3);
            cache.put("key_4", 4);
            cache.put("key_5", 5);
    
            cache.put("key_1", 1);
            cache.put("key_4", 12);
    
            assertThat(cache.get("key_1"), equalTo(1));
            assertThat(cache.get("key_2"), equalTo(2));
            assertThat(cache.get("key_3"), equalTo(3));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  2. internal/s3select/json/testdata/10.json

    [
     {
    	 "key_1": "value",
    	 "key_2": "value"
     }
    ]
    [
    	{
    		"key_1": "value2",
    		"key_2": "value3"
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 100 bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/PgpKeyGrouperTest.groovy

                entry("org", "foo", "1.0", "foo-1.0.pom").addVerifiedKey(KEY_1)
                entry("org", "foo", "1.1", "foo-1.1.jar").addVerifiedKey(KEY_1)
                entry("org", "foo", "1.1", "foo-1.1.pom").addVerifiedKey(KEY_1)
            }
    
            when:
            executeGrouping()
    
            then:
            verifier.configuration.trustedKeys*.keyId == [KEY_1]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  4. internal/s3select/json/testdata/9.json

    [
     {
    	 "key_1": "value",
    	 "key_2": "value"
     }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 49 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/control_flow_duplicate_v1.py

    # Tests handling dupliate functions after V1 control flow is functionalized.
    
    # CHECK:  func {{.*}} tf_saved_model.exported_names = ["key_1"]
    # CHECK: "tf.If"
    # CHECK-SAME: else_branch = @[[else:[a-zA-Z_0-9]+]]
    # CHECK-SAME: then_branch = @[[then:[a-zA-Z_0-9]+]]
    
    # CHECK:  func {{.*}} tf_saved_model.exported_names = ["key_2"]
    # CHECK: "tf.If"
    # CHECK-SAME: else_branch = @[[else]]
    # CHECK-SAME: then_branch = @[[then]]
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/fuse_tpu_compile_and_execute_ops.mlir

      // CHECK: [[key_1:%.*]], [[exec_result_1:%.*]] = "tf.TPUCompileMlirAndExecute"(%arg0, %2, %0, %1) <{metadata = "metadata", mlir_module = "mlir_module", operandSegmentSizes = array<i32: 4, 0>, operands_with_static_shape = [], producer_name = "default"}> : (tensor<?x?xi32>,...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

    }
    
    // In general, we convert the following form of sort to tf.TopK:
    //
    // %result = "mhlo.sort" (%keys, %indices) ({
    //  ^bb0(%key_0, %key_1, %index_0, %index_1):
    //     %1 = "mhlo.compare"(%key_0, %key_1) {mhlo::ComparisonDirection::GT}
    //     -> tensor<i1>
    //  }),
    //
    // where the indices is obtained by an IotaOp (maybe folded).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/managedfieldsupdater_test.go

    		"metadata": {
    			"name": "configmap"
    		},
    		"data": {
    			"key_a": "value"
    		}
    	}`))
    	if err != nil {
    		t.Fatal(err)
    	}
    	err = updateObject(f, "fieldmanager_b_test", []byte(`{
    		"apiVersion": "v1",
    		"kind": "ConfigMap",
    		"metadata": {
    			"name": "configmap"
    		},
    		"data": {
    			"key_b": "value"
    		}
    	}`))
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  9. pkg/test/util/yml/cache_test.go

    	t.Logf("Test Dir: %q", d)
    
    	c := NewCache(d)
    
    	keys1, err := c.Apply(gateway)
    	g.Expect(err).To(BeNil())
    
    	keys2, err := c.Apply(gateway)
    	g.Expect(err).To(BeNil())
    
    	keys := c.AllKeys()
    	g.Expect(keys).To(HaveLen(1))
    	g.Expect(keys1).To(HaveLen(1))
    	g.Expect(keys2).To(HaveLen(1))
    	g.Expect(keys).To(ContainElement(keys1[0]))
    	g.Expect(keys).To(ContainElement(keys2[0]))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  10. platforms/jvm/platform-jvm/src/test/groovy/org/gradle/api/java/archives/internal/DefaultManifestMergeSpecTest.groovy

            DefaultManifest baseManifest = new DefaultManifest(Mock(FileResolver))
            baseManifest.attributes key1: 'value1'
            mergeSpec.from(new DefaultManifest(Mock(FileResolver)).attributes(key1: 'mergeValue1'))
    
            expect:
            mergeSpec.merge(baseManifest, Mock(FileResolver)).attributes == [key1: 'mergeValue1'] + MANIFEST_VERSION_MAP
        }
    
        def addActionByAnonymousInnerClass() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top