Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for identity1 (0.28 sec)

  1. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

          Equivalence<Object> defaultEquivalence() {
            return Equivalence.equals();
          }
        },
    
        WEAK {
          @Override
          Equivalence<Object> defaultEquivalence() {
            return Equivalence.identity();
          }
        };
    
        /**
         * Returns the default equivalence strategy used to compare and hash keys or values referenced
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  2. src/crypto/x509/x509.go

    	RawTBSRevocationList []byte
    	// RawIssuer contains the DER encoded Issuer.
    	RawIssuer []byte
    
    	// Issuer contains the DN of the issuing certificate.
    	Issuer pkix.Name
    	// AuthorityKeyId is used to identify the public key associated with the
    	// issuing certificate. It is populated from the authorityKeyIdentifier
    	// extension when parsing a CRL. It is ignored when creating a CRL; the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/init.go

    // checksums would be needed in order to reload the same set of packages
    // loaded by the most recent call to LoadPackages or ImportFromFiles,
    // including any go.mod files needed to reconstruct the MVS result
    // or identify go versions,
    // in addition to the checksums for every module in keepMods.
    func keepSums(ctx context.Context, ld *loader, rs *Requirements, which whichSums) map[module.Version]bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context.go

    // for a namespace, a default sidecarscope is assigned to the namespace
    // which enables connectivity to all services in the mesh.
    //
    // When proxies connect to Pilot, we identify the sidecar scope associated
    // with the proxy and derive listeners/routes/clusters based on the sidecar
    // scope.
    func (ps *PushContext) initSidecarScopes(env *Environment) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  5. src/testing/testing.go

    // execution of any function of the form
    //
    //	func TestXxx(*testing.T)
    //
    // where Xxx does not start with a lowercase letter. The function name
    // serves to identify the test routine.
    //
    // Within these functions, use the Error, Fail or related methods to signal failure.
    //
    // To write a new test suite, create a file that
    // contains the TestXxx functions as described here,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  6. src/reflect/type.go

    	// The string representation may use shortened package names
    	// (e.g., base64 instead of "encoding/base64") and is not
    	// guaranteed to be unique among types. To test for type identity,
    	// compare the Types directly.
    	String() string
    
    	// Kind returns the specific kind of this type.
    	Kind() Kind
    
    	// Implements reports whether the type implements the interface type u.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top