Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 547 for keyA (3.31 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope_test.go

    				}
    				if bytes.Equal(key1, key2) != reflect.DeepEqual(tc, tc2) {
    					t.Errorf("expected %v, got %v", reflect.DeepEqual(tc, tc2), bytes.Equal(key1, key2))
    				}
    			})
    		}
    	}
    }
    
    func TestGenerateTransformer(t *testing.T) {
    	t.Parallel()
    	testCases := []struct {
    		name            string
    		envelopeService func() kmsservice.Service
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:50:20 UTC 2023
    - 47.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*Key)(nil), (*apiserver.Key)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_Key_To_apiserver_Key(a.(*Key), b.(*apiserver.Key), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*apiserver.Key)(nil), (*Key)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/RegularImmutableMap.java

      }
    
      /**
       * Returns a hash table for the specified keys and values, and ensures that neither keys nor
       * values are null. This method may update {@code alternatingKeysAndValues} if there are duplicate
       * keys. If so, the return value will indicate how many entries are still valid, and will also
       * include a {@link Builder.DuplicateKey} in case duplicate keys are not allowed now or will not
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 15 22:32:14 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/index_test.go

    	}
    }
    
    // createVolumeNodeAffinity returns a VolumeNodeAffinity for given key and value.
    func createNodeAffinity(key string, value string) *v1.VolumeNodeAffinity {
    	return &v1.VolumeNodeAffinity{
    		Required: &v1.NodeSelector{
    			NodeSelectorTerms: []v1.NodeSelectorTerm{
    				{
    					MatchExpressions: []v1.NodeSelectorRequirement{
    						{
    							Key:      key,
    							Operator: v1.NodeSelectorOpIn,
    							Values:   []string{value},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 44K bytes
    - Viewed (0)
  5. cmd/sftp-server.go

    		if len(attribValue) != 1 {
    			continue
    		}
    
    		if attribKey == "sshPublicKey" && key != nil {
    			key2, _, _, _, err := ssh.ParseAuthorizedKey([]byte(attribValue[0]))
    			if err != nil {
    				return nil, errSFTPPublicKeyBadFormat
    			}
    
    			if subtle.ConstantTimeCompare(key2.Marshal(), key.Marshal()) != 1 {
    				return nil, errAuthentication
    			}
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/language/parse.go

    					}
    					keys = append(keys, scan.b[keyStart:end])
    				}
    				sort.Stable(bytesSort{keys, 2})
    				if n := len(keys); n > 0 {
    					k := 0
    					for i := 1; i < n; i++ {
    						if !bytes.Equal(keys[k][:2], keys[i][:2]) {
    							k++
    							keys[k] = keys[i]
    						} else if !bytes.Equal(keys[k], keys[i]) {
    							scan.setError(ErrDuplicateKey)
    						}
    					}
    					keys = keys[:k+1]
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/testing/testcase.go

    			}
    		}
    		// Change annotation keys for Validating's fail open to Mutating's fail open.
    		failOpenAnnotations := map[string]string{}
    		for key, value := range t.ExpectAnnotations {
    			if strings.HasPrefix(key, "failed-open.validating.webhook.admission.k8s.io/") {
    				failOpenAnnotations[key] = value
    			}
    		}
    		for key, value := range failOpenAnnotations {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 47.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    					}
    				}
    			}
    		}
    	}
    	// Infer units for keys without any units associated with
    	// numeric tag values.
    	for key := range encounteredKeys {
    		unit := numLabelUnits[key]
    		if unit == "" {
    			switch key {
    			case "alignment", "request":
    				numLabelUnits[key] = "bytes"
    			default:
    				numLabelUnits[key] = key
    			}
    		}
    	}
    
    	// Copy ignored units into more readable format
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/signing_plugin.adoc

    * The passphrase used to protect your private key.
    
    These items must be supplied as the values of the `signing.keyId`, `signing.secretKeyRingFile`, and `signing.password` properties, respectively.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/MapMaker.java

     * interface. It does not permit null keys or values.
     *
     * <p><b>Note:</b> by default, the returned map uses equality comparisons (the {@link Object#equals
     * equals} method) to determine equality for keys or values. However, if {@link #weakKeys} was
     * specified, the map uses identity ({@code ==}) comparisons instead for keys. Likewise, if {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
Back to top