Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 729 for keys2 (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/filters/authentication_test.go

    				"X-Remote-Group-2":      {"two-a", "two-b"},
    				"X-Remote-extra-1-key1": {"alfa", "bravo"},
    				"X-Remote-Extra-1-Key2": {"charlie", "delta"},
    				"X-Remote-Extra-1-":     {"india", "juliet"},
    				"X-Remote-extra-2-":     {"kilo", "lima"},
    				"X-Remote-extra-2-Key1": {"echo", "foxtrot"},
    				"X-Remote-Extra-2-key2": {"golf", "hotel"},
    			},
    		},
    
    		"extra prefix matches case-insensitive with unrelated headers": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  2. pkg/ledger/smt.go

    		batch), nil}
    }
    
    // splitKeys divides the array of keys into 2 so they can update left and right branches in parallel
    func (s *smt) splitKeys(keys [][]byte, height int) ([][]byte, [][]byte) {
    	for i, key := range keys {
    		if bitIsSet(key, height) {
    			return keys[:i], keys[i:]
    		}
    	}
    	return keys, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 14K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureWriteIntegTest.groovy

                }
            """
    
            when:
            writeVerificationMetadata()
    
            succeeds ":help", "--export-keys"
    
            then:
            outputContains("Exported 1 keys to")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/18567")
        def "--export-keys can export keys even with without --write-verification-metadata"() {
            def keyring = newKeyRing()
            createMetadataFile {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  4. pkg/util/iptree/iptree_test.go

    		return false
    	})
    	if !cmp.Equal(path, keys[:4]) {
    		t.Errorf("Walkpath expected %v got %v", keys[:4], path)
    	}
    	// not match on prefix
    	path = []string{}
    	r.WalkPath(netip.MustParsePrefix("10.1.1.33/26"), func(k netip.Prefix, v int) bool {
    		path = append(path, k.String())
    		return false
    	})
    	if !cmp.Equal(path, keys[:3]) {
    		t.Errorf("Walkpath expected %v got %v", keys[:3], path)
    	}
    	// match exact prefix
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  5. pkg/serviceaccount/openidmetadata_test.go

    	wantPubECDSA := getPublicKey(ecdsaPublicKey).(*ecdsa.PublicKey)
    	var serveKeysTests = []struct {
    		Name     string
    		Keys     []interface{}
    		WantKeys []jose.JSONWebKey
    	}{
    		{
    			Name: "configured public keys",
    			Keys: []interface{}{
    				getPublicKey(rsaPublicKey),
    				getPublicKey(ecdsaPublicKey),
    			},
    			WantKeys: []jose.JSONWebKey{
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 02 01:53:17 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  6. src/text/template/doc.go

    	  Key invocations may be chained and combined with fields to any
    	  depth:
    	    .Field1.Key1.Field2.Key2
    	  Although the key must be an alphanumeric identifier, unlike with
    	  field names they do not need to start with an upper case letter.
    	  Keys can also be evaluated on variables, including chaining:
    	    $x.key1.key2
    	- The name of a niladic method of the data, preceded by a period,
    	  such as
    		.Method
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Table.java

      /**
       * Associates the specified value with the specified keys. If the table already contained a
       * mapping for those keys, the old value is replaced with the specified value.
       *
       * @param rowKey row key that the value should be associated with
       * @param columnKey column key that the value should be associated with
       * @param value value to be associated with the specified keys
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Table.java

      /**
       * Associates the specified value with the specified keys. If the table already contained a
       * mapping for those keys, the old value is replaced with the specified value.
       *
       * @param rowKey row key that the value should be associated with
       * @param columnKey column key that the value should be associated with
       * @param value value to be associated with the specified keys
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  9. internal/config/identity/openid/jwks_test.go

    		t.Fatal("Unmarshal: ", err)
    	} else if len(jk.Keys) != 2 {
    		t.Fatalf("Expected 2 keys, got %d", len(jk.Keys))
    	}
    
    	keys := make([]crypto.PublicKey, len(jk.Keys))
    	for ii, jks := range jk.Keys {
    		var err error
    		keys[ii], err = jks.DecodePublicKey()
    		if err != nil {
    			t.Fatalf("Failed to decode key %d: %v", ii, err)
    		}
    	}
    
    	//nolint:gocritic
    	if key0, ok := keys[0].(*ecdsa.PublicKey); !ok {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  10. pkg/serviceaccount/jwt_test.go

    			Token:       rsaToken,
    			Client:      nil,
    			Keys:        []interface{}{getPublicKey(otherPublicKey), getPublicKey(ecdsaPublicKey)},
    			ExpectedErr: true,
    			ExpectedOK:  false,
    		},
    		"invalid keys (ecdsa)": {
    			Token:       ecdsaToken,
    			Client:      nil,
    			Keys:        []interface{}{getPublicKey(otherPublicKey), getPublicKey(rsaPublicKey)},
    			ExpectedErr: true,
    			ExpectedOK:  false,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 22:16:08 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top