Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 78 for testkey (0.13 sec)

  1. platforms/software/resources-sftp/src/main/java/org/gradle/internal/resource/transport/sftp/SftpClientFactory.java

                        }
    
                        @Override
                        public HostKey[] getHostKey() {
                            throw new UnsupportedOperationException();
                        }
    
                        @Override
                        public HostKey[] getHostKey(String host, String type) {
                            return new HostKey[0];
                        }
                    });
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    	PermitAddressSharing bool
    }
    
    type CertKey struct {
    	// CertFile is a file containing a PEM-encoded certificate, and possibly the complete certificate chain
    	CertFile string
    	// KeyFile is a file containing a PEM-encoded private key for the certificate specified by CertFile
    	KeyFile string
    }
    
    type GeneratableKeyCert struct {
    	// CertKey allows setting an explicit cert/key file to use.
    	CertKey CertKey
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (1)
  3. src/math/rand/v2/rand_test.go

    	testFe = make([]float32, 256)
    
    	q := ve / math.Exp(-de)
    	testKe[0] = uint32((de / q) * m2)
    	testKe[1] = 0
    	testWe[0] = float32(q / m2)
    	testWe[255] = float32(de / m2)
    	testFe[0] = 1.0
    	testFe[255] = float32(math.Exp(-de))
    	for i := 254; i >= 1; i-- {
    		de = -math.Log(ve/de + math.Exp(-de))
    		testKe[i+1] = uint32((de / te) * m2)
    		te = de
    		testFe[i] = float32(math.Exp(-de))
    		testWe[i] = float32(de / m2)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/cache/internal/CacheVersionMapping.java

            Preconditions.checkArgument(!versions.isEmpty(), "versions must not be empty");
            this.versions = new TreeMap<>(versions);
        }
    
        public CacheVersion getLatestVersion() {
            return versions.get(versions.lastKey());
        }
    
        public Optional<CacheVersion> getVersionUsedBy(GradleVersion gradleVersion) {
            GradleVersion versionToFind = gradleVersion.isSnapshot() ? gradleVersion.getBaseVersion() : gradleVersion;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 30 20:23:37 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. pkg/apis/node/validation/validation.go

    	for i, t := range tolerations {
    		// listKey includes the toleration fields identified as listKeys in the API.
    		listKey := core.Toleration{
    			Key:      t.Key,
    			Operator: t.Operator,
    			Value:    t.Value,
    			Effect:   t.Effect,
    		}
    		if tolerationSet[listKey] {
    			allErrs = append(allErrs, field.Duplicate(fldPath.Index(i), t))
    		} else {
    			tolerationSet[listKey] = true
    		}
    	}
    	return allErrs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 19:08:24 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  6. test/typeparam/mapsimp.dir/main.go

    package main
    
    import (
    	"./a"
    	"fmt"
    	"math"
    	"sort"
    )
    
    var m1 = map[int]int{1: 2, 2: 4, 4: 8, 8: 16}
    var m2 = map[int]string{1: "2", 2: "4", 4: "8", 8: "16"}
    
    func TestKeys() {
    	want := []int{1, 2, 4, 8}
    
    	got1 := a.Keys(m1)
    	sort.Ints(got1)
    	if !a.SliceEqual(got1, want) {
    		panic(fmt.Sprintf("a.Keys(%v) = %v, want %v", m1, got1, want))
    	}
    
    	got2 := a.Keys(m2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/VersionCatalogDependencyRegistry.java

        }
    
        private static String findFreeAlias(Set<String> reservedKeys, String key) {
            String nextKey = key;
            int collisionCount = 0;
            while (reservedKeys.contains(nextKey)) {
                collisionCount += 1;
                nextKey = key + "-x" + collisionCount;
            }
            return nextKey;
        }
    
        @NonNullApi
        public static class VersionEntry {
            String alias;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/process/internal/util/MergeOptionsUtil.java

                if (!normalized(left.keySet()).contains(normalized(rightKey))) {
                    return false;
                } else {
                    for (String leftKey : left.keySet()) {
                        if (normalized(leftKey).equals(normalized(rightKey)) && !left.get(leftKey).equals(right.get(rightKey))) {
                            return false;
                        }
                    }
                }
            }
            return true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/testers/SortedMapNavigationTester.java

      public void testFirst() {
        assertEquals(a.getKey(), navigableMap.firstKey());
      }
    
      @CollectionSize.Require(SEVERAL)
      public void testLast() {
        assertEquals(c.getKey(), navigableMap.lastKey());
      }
    
      @CollectionSize.Require(absent = ZERO)
      public void testHeadMapExclusive() {
        assertFalse(navigableMap.headMap(a.getKey()).containsKey(a.getKey()));
      }
    
      @CollectionSize.Require(absent = ZERO)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/certs/renewal/readwriter_test.go

    	if err := pkiutil.WriteCertAndKey(
    		dirPKI,
    		caName,
    		testCACert,
    		testCAKey); err != nil {
    		t.Fatalf("couldn't write out certificate %s to %s", caName, dirPKI)
    	}
    
    	// creates a certificate and then embeds it into a kubeconfig file
    	cert := writeTestKubeconfig(t, dirKubernetes, "test", testCACert, testCAKey, time.Time{}, time.Time{})
    
    	// Creates a KubeconfigReadWriter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:24 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top