Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,101 for LookUp (0.08 sec)

  1. src/crypto/internal/edwards25519/tables.go

    package edwards25519
    
    import (
    	"crypto/subtle"
    )
    
    // A dynamic lookup table for variable-base, constant-time scalar muls.
    type projLookupTable struct {
    	points [8]projCached
    }
    
    // A precomputed lookup table for fixed-base, constant-time scalar muls.
    type affineLookupTable struct {
    	points [8]affineCached
    }
    
    // A dynamic lookup table for variable-base, variable-time scalar muls.
    type nafLookupTable5 struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 05 21:02:45 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/modulecache/artifacts/TwoStageModuleArtifactCache.java

        }
    
        @Nullable
        @Override
        public CachedArtifact lookup(ArtifactAtRepositoryKey key) {
            CachedArtifact lookup = writableCache.lookup(key);
            if (lookup != null) {
                return lookup;
            }
            return readOnlyCache.lookup(key);
        }
    
        @Override
        public void clear(ArtifactAtRepositoryKey key) {
            writableCache.clear(key);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/sumdb/test.go

    	// We ran the fetch without the lock.
    	// If another fetch happened and committed, use it instead.
    	id, ok = s.lookup[key]
    	if ok {
    		return id, nil
    	}
    
    	// Add record.
    	id = int64(len(s.records))
    	s.records = append(s.records, data)
    	if s.lookup == nil {
    		s.lookup = make(map[string]int64)
    	}
    	s.lookup[key] = id
    	hashes, err := tlog.StoredHashesForRecordHash(id, tlog.RecordHash(data), s.hashes)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_workloadentry_test.go

    	assert.Equal(t,
    		s.lookup(s.wleXdsName("emptyaddr1"))[0].GetWorkload().GetName(),
    		"emptyaddr1") // can lookup this workload by name
    	assert.Equal(t,
    		s.lookup(s.wleXdsName("emptyaddr2"))[0].GetWorkload().GetName(),
    		"emptyaddr2") // can lookup this workload by name
    
    	assert.Equal(t,
    		len(s.lookup(s.addrXdsName(""))),
    		0) // cannot lookup these workloads by address
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_goroot_errors.txt

    # Building a nonexistent std package directly should fail usefully.
    
    ! go build -mod=readonly nonexist
    ! stderr 'import lookup disabled'
    ! stderr 'missing dot'
    stderr '^package nonexist is not in std \('$GOROOT'[/\\]src[/\\]nonexist\)$'
    
    ! go build nonexist
    ! stderr 'import lookup disabled'
    ! stderr 'missing dot'
    stderr '^package nonexist is not in std \('$GOROOT'[/\\]src[/\\]nonexist\)$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. src/net/hosts_test.go

    	for _, ent := range lookupStaticHostAliasesTest {
    		testLookupStaticHostAliases(t, ent.lookup, absDomainName(ent.res))
    	}
    }
    
    func testLookupStaticHostAliases(t *testing.T, lookup, lookupRes string) {
    	ins := []string{lookup, absDomainName(lookup), strings.ToLower(lookup), strings.ToUpper(lookup)}
    	for _, in := range ins {
    		_, res := lookupStaticHost(in)
    		if res != lookupRes {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 07:21:38 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. src/index/suffixarray/suffixarray.go

    // an in-memory suffix array.
    //
    // Example use:
    //
    //	// create index for some data
    //	index := suffixarray.New(data)
    //
    //	// lookup byte slice s
    //	offsets1 := index.Lookup(s, -1) // the list of all indices where s occurs in data
    //	offsets2 := index.Lookup(s, 3)  // the list of at most 3 indices where s occurs in data
    package suffixarray
    
    import (
    	"bytes"
    	"encoding/binary"
    	"errors"
    	"io"
    	"math"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. pkg/credentialprovider/keyring.go

    		}
    	}
    
    	return []AuthConfig{}, false
    }
    
    // Lookup implements the DockerKeyring method for fetching credentials
    // based on image name.
    func (dk *providersDockerKeyring) Lookup(image string) ([]AuthConfig, bool) {
    	keyring := &BasicDockerKeyring{}
    
    	for _, p := range dk.Providers {
    		keyring.Add(p.Provide(image))
    	}
    
    	return keyring.Lookup(image)
    }
    
    // FakeKeyring a fake config credentials
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultSession.java

                @Nonnull RepositorySystem repositorySystem,
                @Nullable List<RemoteRepository> remoteRepositories,
                @Nonnull MavenRepositorySystem mavenRepositorySystem,
                @Nonnull Lookup lookup,
                @Nonnull RuntimeInformation runtimeInformation) {
            super(
                    nonNull(session).getRepositorySession(),
                    repositorySystem,
                    remoteRepositories,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 16 08:45:24 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/ServiceRegistry.java

         * @return The service instance. Never returns null.
         * @throws UnknownServiceException When there is no service of the given type available.
         * @throws ServiceLookupException On failure to lookup the specified service.
         */
        @UsedByScanPlugin("scan, test-retry")
        <T> T get(Class<T> serviceType) throws UnknownServiceException, ServiceLookupException;
    
        /**
         * Locates all services of the given type.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top