Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 259 for keylen (0.07 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/DefaultVersionCatalog.java

            return description;
        }
    
        public List<String> getLibraryAliases() {
            return libraries.keySet()
                .stream()
                .sorted()
                .collect(Collectors.toList());
        }
    
        public List<String> getBundleAliases() {
            return bundles.keySet()
                .stream()
                .sorted()
                .collect(Collectors.toList());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Dec 17 22:25:43 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/fingerprint/classpath/impl/DefaultClasspathFingerprinterTest.groovy

            ]
            resourceHashesCache.keySet().size() == 2
            def values = resourceHashesCache.keySet().collect { resourceHashesCache.getIfPresent(it).toString() } as Set
            values == ['e3f8c5a79d138a40570261fa7de40642', '5d9e97561e1c86c891600c8df838f7de'] as Set
    
            when:
            fileCollectionFingerprint = fingerprint(zipFile, zipFile2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  3. pkg/kubelet/certificate/transport_test.go

    uC6Jo2eLcSV1sSdzTjaaWdM6XeYj6yHOAm8ZBIQs7m6V
    -----END RSA PRIVATE KEY-----`)
    )
    
    type certificateData struct {
    	keyPEM         []byte
    	certificatePEM []byte
    	certificate    *tls.Certificate
    }
    
    func newCertificateData(certificatePEM string, keyPEM string) *certificateData {
    	certificate, err := tls.X509KeyPair([]byte(certificatePEM), []byte(keyPEM))
    	if err != nil {
    		panic(fmt.Sprintf("Unable to initialize certificate: %v", err))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 18 08:52:58 UTC 2020
    - 7.8K bytes
    - Viewed (0)
  4. docs/ftp/README.md

    Note that certificates that lack a list of principals will not be permitted for authentication using trusted-user-ca-key.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 06:41:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. src/net/http/http.go

    			return true
    		}
    	}
    	return false
    }
    
    func hexEscapeNonASCII(s string) string {
    	newLen := 0
    	for i := 0; i < len(s); i++ {
    		if s[i] >= utf8.RuneSelf {
    			newLen += 3
    		} else {
    			newLen++
    		}
    	}
    	if newLen == len(s) {
    		return s
    	}
    	b := make([]byte, 0, newLen)
    	var pos int
    	for i := 0; i < len(s); i++ {
    		if s[i] >= utf8.RuneSelf {
    			if pos < i {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/attributes/AttributeDesugaring.java

            }
            return desugared.computeIfAbsent(attributes,  key -> {
                AttributeContainerInternal mutable = attributesFactory.mutable();
                Set<Attribute<?>> keySet = key.keySet();
                for (Attribute<?> attribute : keySet) {
                    Object value = key.getAttribute(attribute);
                    Attribute<Object> desugared = Cast.uncheckedCast(attribute);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. src/os/dirent_netbsd.go

    	return readInt(buf, unsafe.Offsetof(syscall.Dirent{}.Fileno), unsafe.Sizeof(syscall.Dirent{}.Fileno))
    }
    
    func direntReclen(buf []byte) (uint64, bool) {
    	return readInt(buf, unsafe.Offsetof(syscall.Dirent{}.Reclen), unsafe.Sizeof(syscall.Dirent{}.Reclen))
    }
    
    func direntNamlen(buf []byte) (uint64, bool) {
    	return readInt(buf, unsafe.Offsetof(syscall.Dirent{}.Namlen), unsafe.Sizeof(syscall.Dirent{}.Namlen))
    }
    
    func direntType(buf []byte) FileMode {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 00:59:20 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/LinkedHashMultimapTest.java

        assertThat(multimap.keySet()).containsExactly("foo", "bar", "cow").inOrder();
        assertThat(multimap.removeAll("foo")).containsExactly(6, 7).inOrder();
        assertThat(multimap.keySet()).containsExactly("bar", "cow").inOrder();
        assertTrue(multimap.remove("bar", 4));
        assertThat(multimap.keySet()).containsExactly("bar", "cow").inOrder();
        assertTrue(multimap.remove("bar", 1));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 10:16:44 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. src/syscall/syscall_js.go

    const direntSize = 8 + 8 + 2 + 256
    
    type Dirent struct {
    	Reclen uint16
    	Name   [256]byte
    }
    
    func direntIno(buf []byte) (uint64, bool) {
    	return 1, true
    }
    
    func direntReclen(buf []byte) (uint64, bool) {
    	return readInt(buf, unsafe.Offsetof(Dirent{}.Reclen), unsafe.Sizeof(Dirent{}.Reclen))
    }
    
    func direntNamlen(buf []byte) (uint64, bool) {
    	reclen, ok := direntReclen(buf)
    	if !ok {
    		return 0, false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/TreeMultimapNaturalTest.java

                        }
                        return multimap.keySet();
                      }
    
                      @Override
                      public List<String> order(List<String> insertionOrder) {
                        return Ordering.natural().nullsFirst().sortedCopy(insertionOrder);
                      }
                    })
                .named("TreeMultimap.keySet")
                .withFeatures(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top