Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for key_new (0.12 sec)

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

            cache.put("key_1", "1234");
            assertThat(cacheFile.length(), equalTo(len));
    
            cache.remove("key_1");
            cache.put("key_new", "a1b2");
            assertThat(cacheFile.length(), equalTo(len));
    
            cache.put("key_new", "longer value");
            assertTrue(cacheFile.length() > len);
            len = cacheFile.length();
    
            cache.put("key_1", "1234");
    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. pkg/kube/kclient/index_test.go

    	pod1Alt.Spec.ServiceAccountName = "new-sa"
    
    	keyNew := SaNode{
    		ServiceAccount: types.NamespacedName{
    			Namespace: "ns",
    			Name:      "new-sa",
    		},
    		Node: "node",
    	}
    	c.Kube().CoreV1().Pods("ns").Update(context.Background(), pod1Alt, metav1.UpdateOptions{})
    	assertIndex(k1, pod3)        // Pod should be dropped from the index
    	assertIndex(keyNew, pod1Alt) // And added under the new key
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 03:49:30 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. src/crypto/aes/gcm_ppc64x.s

    	VXOR V30, V29, V22; \
    	VADDUWM V30, V31, V30
    
    // Load the keys to be used for
    // encryption based on key_len.
    // Keys are in VS0 - VS14
    // depending on key_len.
    // Valid keys sizes are verified
    // here. CR2 is set and used
    // throughout to check key_len.
    #define LOAD_KEYS(blk_key, key_len) \
    	MOVD	$16, R16; \
    	MOVD	$32, R17; \
    	MOVD	$48, R18; \
    	MOVD	$64, R19; \
    	LXVD2X (blk_key)(R0), VS0; \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    			Current:  `{}`,
    			Modified: `{"complex_nullable":[{"inner_one":{"key_one":"foo","key_two":null}}]}`,
    
    			ExpectedTwoWay:         `{"complex_nullable":[{"inner_one":{"key_one":"foo","key_two":null}}]}`,
    			ExpectedTwoWayResult:   `{"complex_nullable":[{"inner_one":{"key_one":"foo"}}]}`,
    			ExpectedThreeWay:       `{"complex_nullable":[{"inner_one":{"key_one":"foo","key_two":null}}]}`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

        const string& xla_cluster_name, Graph* g) {
      NodeDef key_def;
      NodeDefBuilder builder(absl::StrCat(xla_cluster_name, "_key_placeholder"),
                             "Placeholder");
      builder.Attr("dtype", DT_STRING);
      builder.Attr("shape", PartialTensorShape({2}));
      builder.Attr("_host_compute_call_node", xla_cluster_name);
      Status s = builder.Finalize(&key_def);
      if (!s.ok()) return s;
    
      Node* n = g->AddNode(key_def, &s);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
Back to top