Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,152 for keys2 (0.04 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    	return arrayType("set", nil, items)
    }
    
    func listMapType(keys []string, items *schema.Structural) schema.Structural {
    	return arrayType("map", keys, items)
    }
    
    func listMapTypePtr(keys []string, items *schema.Structural) *schema.Structural {
    	l := listMapType(keys, items)
    	return &l
    }
    
    func arrayType(listType string, keys []string, items *schema.Structural) schema.Structural {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    [[sec:refreshing-missing-keys]]
    == Refreshing missing keys
    
    Gradle caches missing keys for 24 hours, meaning it will not attempt to re-download the missing keys for 24 hours after failing.
    
    If you want to retry immediately, you can run with the `--refresh-keys` CLI flag:
    
    ----
    ./gradlew build --refresh-keys
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/features/features.go

    		known = append(known, fmt.Sprintf("%s=true|false (%sdefault=%t)", k, pre, v.Default))
    	}
    	sort.Strings(known)
    	return known
    }
    
    // NewFeatureGate parses a string of the form "key1=value1,key2=value2,..." into a
    // map[string]bool of known keys or returns an error.
    func NewFeatureGate(f *FeatureList, value string) (map[string]bool, error) {
    	featureGate := map[string]bool{}
    	for _, s := range strings.Split(value, ",") {
    		if len(s) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 13:55:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

          this.keys = new @Nullable Object[initialCapacity];
          this.values = new @Nullable Object[initialCapacity];
        }
    
        private void ensureCapacity(int minCapacity) {
          if (minCapacity > keys.length) {
            int newCapacity = ImmutableCollection.Builder.expandedCapacity(keys.length, minCapacity);
            this.keys = Arrays.copyOf(keys, newCapacity);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
Back to top