Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,483 for Keys (2.2 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. gradle/verification-keyring.keys

    Vlad Chesnokov <******@****.***> 1711962993 +0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 525.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/plugin-portal-api-keys.png

    plugin-portal-api-keys.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 71K bytes
    - Viewed (0)
  4. platforms/software/security/src/test/resources/keyrings/valid-with-extra-metadata.keys

    Tom Tresansky <******@****.***> 1697026569 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 65.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top