Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 585 for Keys (0.04 sec)

  1. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureWriteIntegTest/duplicated.keys

    Tom Tresansky <******@****.***> 1696954098 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. pkg/test/util/yml/cache_test.go

    	}
    	g.Expect(keys[1]).To(Equal(expected))
    
    	file = c.GetFileFor(keys[1])
    	by, err = os.ReadFile(file)
    	g.Expect(err).To(BeNil())
    	g.Expect(strings.TrimSpace(string(by))).To(Equal(strings.TrimSpace(virtualService)))
    
    	applyKeys := keys
    	keys = c.AllKeys()
    	g.Expect(keys).To(HaveLen(2))
    	g.Expect(keys).To(ContainElement(applyKeys[0]))
    	g.Expect(keys).To(ContainElement(applyKeys[1]))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. cmd/xl-storage-meta-inline.go

    		if err != nil {
    			return keys, err
    		}
    		if len(key) == 0 {
    			return keys, fmt.Errorf("xlMetaInlineData: key %d is length 0", i)
    		}
    		keys = append(keys, string(key))
    		// Skip data...
    		_, buf, err = msgp.ReadBytesZC(buf)
    		if err != nil {
    			return keys, err
    		}
    	}
    	return keys, nil
    }
    
    // serialize will serialize the provided keys and values.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. internal/config/config_test.go

    	tests := []struct {
    		input          string
    		keys           []string
    		expectedFields map[string]struct{}
    	}{
    		// No keys present
    		{
    			input:          "",
    			keys:           []string{"comment"},
    			expectedFields: map[string]struct{}{},
    		},
    		// No keys requested for tokenizing
    		{
    			input:          `comment="Hi this is my comment ="`,
    			keys:           []string{},
    			expectedFields: map[string]struct{}{},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Aug 18 22:55:17 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  5. pkg/ledger/smt_test.go

    	smt.atomicUpdate = false
    
    	// Add data to empty trie
    	keys := getFreshData(10)
    	values := getFreshData(10)
    	ch := make(chan result, 1)
    	smt.update(smt.root, keys, values, nil, 0, smt.trieHeight, false, true, ch)
    	res := <-ch
    	root := res.update
    
    	// Check all keys have been stored
    	for i, key := range keys {
    		value, _ := smt.get(root, key, nil, 0, smt.trieHeight)
    		if !bytes.Equal(values[i], value) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/ImmutableMultisetFloodingTest.java

            return ImmutableMultiset.copyOf(keys);
          }
        },
        COPY_OF_ITERATOR {
          @Override
          public ImmutableMultiset<Object> create(List<?> keys) {
            return ImmutableMultiset.copyOf(keys.iterator());
          }
        },
        BUILDER_ADD_ENTRY_BY_ENTRY {
          @Override
          public ImmutableMultiset<Object> create(List<?> keys) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 03 21:01:39 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/componentconfigs/checksums.go

    	// Then iterate over that slice to fetch the values to be hashed.
    	keys := []string{}
    	for key := range cm.Data {
    		keys = append(keys, key)
    	}
    	sort.Strings(keys)
    
    	for _, key := range keys {
    		hash.Write([]byte(cm.Data[key]))
    	}
    
    	// Do the same as above, but for binaryData this time.
    	keys = []string{}
    	for key := range cm.BinaryData {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  8. src/internal/types/testdata/fixedbugs/issue58611.go

    type Set[T comparable] map[T]struct{}
    
    func (s *Set[string]) String() string {
    	keys := make([]string, 0, len(*s))
    	for k := range *s {
    		keys = append(keys, k)
    	}
    	sort.Strings(keys /* ERRORx "cannot use keys.*with string declared at.*|type parameter" */ )
    	return strings /* ERROR "cannot use strings.Join" */ .Join(keys /* ERRORx "cannot use keys.*with string declared at.*|type parameter" */ , ",")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 00:40:19 UTC 2023
    - 742 bytes
    - Viewed (0)
  9. pilot/pkg/model/xds_cache.go

    }
    
    func (x XdsCacheImpl) Keys(t string) []any {
    	switch t {
    	case CDSType:
    		keys := x.cds.Keys()
    		return convertToAnySlices(keys)
    	case EDSType:
    		keys := x.eds.Keys()
    		return convertToAnySlices(keys)
    	case SDSType:
    		keys := x.sds.Keys()
    		return convertToAnySlices(keys)
    	case RDSType:
    		keys := x.rds.Keys()
    		return convertToAnySlices(keys)
    	default:
    		return nil
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 02 07:02:05 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/listtype/validation.go

    		keyField := s.XListMapKeys[0]
    		keys := make([]interface{}, 0, len(obj))
    		for _, x := range obj {
    			if x == nil {
    				keys = append(keys, unspecifiedKeyValue{}) // nil object means unspecified key
    				continue
    			}
    
    			x := x.(map[string]interface{})
    
    			// undefined key?
    			key, ok := x[keyField]
    			if !ok {
    				keys = append(keys, unspecifiedKeyValue{})
    				continue
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 02:47:24 UTC 2021
    - 5.7K bytes
    - Viewed (0)
Back to top