Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 716 for keyA (0.29 sec)

  1. gradle/verification-keyring.keys

    8vGvziOgS1A3qTGvMwNpkd1vg/n/B3wPBZC124wx/yHl4YM19b+xsvp3SQARAQAB
    tB1KZXNzZSBXaWxzb24gPGplc3NlQHN3YW5rLmNhPg==
    =owuM
    -----END PGP PUBLIC KEY BLOCK-----
    
    pub    86FDC7E2A11262CB
    uid    Gary David Gregory (Code signing key) <******@****.***>
    
    -----BEGIN PGP PUBLIC KEY BLOCK-----
    Version: BCPG v1.68
    
    mQENBE2kzuwBCACYV+G9yxNkSjAKSji0B5ipMGM74JAL1Ogtcu+993pLHHYsdXri
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 525.2K bytes
    - Viewed (1)
  2. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/DefaultDynamicCallProblemReportingTest.kt

            val entryPoint2 = Any()
            val key1 = Any()
            val key2 = Any()
    
            reporting.enterDynamicCall(entryPoint1)
            assertTrue(reporting.unreportedProblemInCurrentCall(key1))
            assertFalse(reporting.unreportedProblemInCurrentCall(key1))
            assertTrue(reporting.unreportedProblemInCurrentCall(key2))
            assertFalse(reporting.unreportedProblemInCurrentCall(key2))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1_test.go

    		},
    		{
    			Expression: "('group1' in request.groups)",
    		},
    		{
    			Expression: "('key1' in request.extra)",
    		},
    		{
    			Expression: "!('key2' in request.extra)",
    		},
    		{
    			Expression: "('a' in request.extra['key1'])",
    		},
    		{
    			Expression: "!('z' in request.extra['key1'])",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  4. src/context/x_test.go

    	}
    	if e := c.Err(); e != Canceled {
    		t.Errorf("c.Err() == %v want %v", e, Canceled)
    	}
    }
    
    type key1 int
    type key2 int
    
    func (k key2) String() string { return fmt.Sprintf("%[1]T(%[1]d)", k) }
    
    var k1 = key1(1)
    var k2 = key2(1) // same int as k1, different type
    var k3 = key2(3) // same type as k2, different int
    
    func TestValues(t *testing.T) {
    	check := func(c Context, nm, v1, v2, v3 string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/apimachinery/pkg/util/jsonmergepatch/patch_test.go

        original:
          simpleMap:
            key1: 1
            key2: 1
        modified:
          simpleMap:
            key1: 1
        current:
          simpleMap:
            key1: a
            key2: 1
            other: a
        threeWay:
          simpleMap:
            key1: 1
            key2: null
        result:
          simpleMap:
            key1: 1
            other: a
      - description: delete all fields from map
        original:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. tests/common/jwt/jwt_token.go

    	//  "iss": "******@****.***",
    	//  "nested": {
    	//    "key2": "valueC",
    	//    "nested-2": {
    	//      "key2": "valueC"
    	//    }
    	//  },
    	//  "sub": "sub-1"
    	// }
    	// Generated by: security/tools/jwt/samples/gen-jwt.py tests/common/jwt/key.pem -jwks=tests/common/jwt/jwks.json
    	// --expire=3153600000 --iss=******@****.*** --sub=sub-1 --nestedclaim key2 valueC
    	// nolint: lll
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top