Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,398 for keyA (0.06 sec)

  1. test/fixedbugs/issue58572.go

    package p
    
    func New() resource {
    	return &Client{}
    }
    
    type resource interface {
    	table()
    }
    
    type Client struct {
    	m map[Key1]int
    }
    
    func (c *Client) table() {}
    
    type Key1 struct {
    	K Key2
    }
    
    type Key2 struct {
    	f [2]any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:59:20 UTC 2023
    - 394 bytes
    - Viewed (0)
  2. src/runtime/map_benchmark_test.go

    	m := make(map[string]bool)
    	key1 := strings.Repeat("X", 1<<20)
    	key2 := strings.Repeat("X", 1<<20) // equal but different instance
    	m[key1] = true
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		_, _ = m[key2]
    	}
    }
    
    func BenchmarkMegEmptyMap(b *testing.B) {
    	m := make(map[string]bool)
    	key := strings.Repeat("X", 1<<20)
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		_, _ = m[key]
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 09 16:41:16 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/device_executable_persistor_test.cc

      XlaSerializedCacheEntry entry;
      TF_ASSERT_OK(ReadTextOrBinaryProto(
          Env::Default(), GetFilePath(key1, persistor.persistent_cache_directory()),
          &entry));
      // Change the entry's key to key2.
      *entry.mutable_key() = key2;
      // Write the modified entry to file corresponding to key2.
      TF_ASSERT_OK(WriteBinaryProto(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureWriteIntegTest/duplicated.keys

    bqHKOPLhLn0UNbUmMzzrPo71y7qiMDmv5D8K/aVgxiX7roDSv9PSqwsZ3mw+EV4L
    Qr12Aw2WG2uNijO99r02xqNU6vvHEglWH/f5gT4eYNEtGTqyp5PNTuYkI7GKybBg
    EPtLjZykvvWJNn/P6KdmcsxQthX3XnbCIRq2LDL7A4GNor2DcqTyOw3cjy0=
    =zmeZ
    -----END PGP PUBLIC KEY BLOCK-----
    
    -----BEGIN PGP PUBLIC KEY BLOCK-----
    Version: BCPG v1.68
    
    mQINBFrDOW0BEAC9byiOScTIrOeZ4+nUJHx5nApGe1jT0RBK6QGl0utlqWubJS3W
    oOt11vQPbugBTTX9QkIFRARxs/gqkToJR2UqfJJKE6FdtKStSsVGGesnYM+5Tp0v
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/util/RenderDataUtilTest.java

        public void test_register() {
            RenderData data = new RenderData();
    
            RenderDataUtil.register(data, "key1", null);
            assertNull(data.getDataMap().get("key1"));
    
            RenderDataUtil.register(data, "key5", "");
            assertEquals(data.getDataMap().get("key5"), "");
    
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/route/route_internal_test.go

    		},
    		{
    			name: "@request.auth.claims.key1-key2",
    			in:   &networking.StringMatch{MatchType: &networking.StringMatch_Exact{Exact: "exact"}},
    			want: authz.MetadataMatcherForJWTClaims([]string{"key1-key2"}, authzmatcher.StringMatcher("exact"), false),
    		},
    		{
    			name: "@request.auth.claims.prefix",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 11 02:47:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. tests/integration/security/testdata/authz/jwt.yaml.tmpl

          values: ["valueC"]
      - to:
        - operation:
            paths: ["/nested-2-key1"]
            methods: ["GET"]
        when:
        - key: request.auth.claims[nested][nested-2][key1]
          values: ["valueA"]
      - to:
        - operation:
            paths: ["/valid-jwt"]
        when:
        - key: request.auth.principal
          values: ["*"]
      - to:
        - operation:
            paths: ["*/presenter"]
        when:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/attributes_test.go

    	// test AddAnnotation
    	attr.AddAnnotation("foo.admission.k8s.io/key1", "value1")
    	attr.AddAnnotation("foo.admission.k8s.io/key2", "value2")
    	annotations := attr.getAnnotations(auditinternal.LevelMetadata)
    	assert.Equal(t, annotations["foo.admission.k8s.io/key1"], "value1")
    
    	// test overwrite
    	assert.Error(t, attr.AddAnnotation("foo.admission.k8s.io/key1", "value1-overwrite"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 19:44:40 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. maven-di/src/main/java/org/apache/maven/di/Key.java

     * For example, to create a key of type Map&lt;String, List&lt;Integer&gt;&gt;, you can just use
     * this syntax: <code>new Key&lt;Map&lt;String, List&lt;Integer&gt;&gt;&gt;(){}</code>.
     * <p>
     * If your types are not known at compile time, you can use {@link Types#parameterizedType} to make a
     * parameterized type and give it to a {@link #ofType Key.ofType} constructor.
     *
     * @param <T> binding type
     */
    public abstract class Key<T> {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantized_function_library_xla_weight_only.mlir

    // ```
    // parameters[
    //   {"key1": "value11", "key2": "value21"},
    //   {"key1": "value12", "key2": "value22"},
    // ]
    // func.func func_name_${key1}_fn (...) {
    //   ...${key2}...
    // }
    // ```
    // The above template with generate two functions by substituting `key1` and
    // `key2` with given values.
    
    module {
    
      func.func private @internal_dequantize_f32(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 15:43:38 UTC 2023
    - 7K bytes
    - Viewed (0)
Back to top