Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 84 for identity1 (0.47 sec)

  1. tensorflow/compiler/jit/deadness_analysis.cc

        PredicateFactory* parent_;
      };
    
      // A cache for the MakeNotPredicate function.
      //
      // NB! This is *not* the same as `interned_not_instances_`.
      // `interned_not_instances_` maps ensures pointer identity for `NotPredicate`
      // instances, i.e., it ensures there at most one instance of Not(predicate)
      // for any given predicate whereas `make_not_predicate_cache_` simply caches
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    The go tool will ignore a directory named "testdata", making it available
    to hold ancillary data needed by the tests.
    
    As part of building a test binary, go test runs go vet on the package
    and its test source files to identify significant problems. If go vet
    finds any problems, go test reports those and does not run the test
    binary. Only a high-confidence subset of the default go vet checks are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. cmd/kubelet/app/server.go

    		// to always fall back to the external bootstrap credentials when such credentials are
    		// provided by a fundamental trust system like cloud VM identity or an HSM module.
    		config := certConfig
    		if current != nil {
    			config = clientConfig
    		}
    		return clientset.NewForConfig(config)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  4. src/net/netip/netip_test.go

    			if err != nil {
    				t.Fatal(err)
    			}
    			if got != got2 {
    				t.Errorf("ParseAddr(%q) got 2 different results: %#v, %#v", test.in, got, got2)
    			}
    
    			// Check that ParseAddr(ip.String()) is the identity function.
    			s := got.String()
    			got3, err := ParseAddr(s)
    			if err != nil {
    				t.Fatal(err)
    			}
    			if got != got3 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  5. src/crypto/tls/tls_test.go

    			called |= 1 << 4
    			return nil
    		},
    		VerifyConnection: func(ConnectionState) error {
    			called |= 1 << 5
    			return nil
    		},
    		UnwrapSession: func(identity []byte, cs ConnectionState) (*SessionState, error) {
    			called |= 1 << 6
    			return nil, nil
    		},
    		WrapSession: func(cs ConnectionState, ss *SessionState) ([]byte, error) {
    			called |= 1 << 7
    			return nil, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    We recommend the following steps for all users:
    
    . Try running `gradle help --scan` and view the https://gradle.com/enterprise/releases/2018.4/#identify-usages-of-deprecated-gradle-functionality[deprecations view] of the generated build scan.
    +
    image::deprecations.png[Deprecations View of a Gradle Build Scan]
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    We recommend the following steps for all users:
    
    . Try running `gradle help --scan` and view the https://gradle.com/enterprise/releases/2018.4/#identify-usages-of-deprecated-gradle-functionality[deprecations view] of the generated build scan.
    +
    image::deprecations.png[Deprecations View of a Gradle Build Scan]
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  8. istioctl/pkg/describe/describe.go

    }
    
    func getIstioRBACPolicies(cd *configdump.Wrapper, port int32) ([]string, error) {
    	hcm, err := getInboundHTTPConnectionManager(cd, port)
    	if err != nil || hcm == nil {
    		return []string{}, err
    	}
    
    	// Identify RBAC policies. Currently there are no "breadcrumbs" so we only return the policy names.
    	for _, httpFilter := range hcm.HttpFilters {
    		if httpFilter.Name == wellknown.HTTPRoleBasedAccessControl {
    			rbac := &rbachttp.RBAC{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types/type.go

    // TODO(josharian): make this safe for recursive interface types
    // and use in signatlist sorting. See issue 19869.
    func (t *Type) cmp(x *Type) Cmp {
    	// This follows the structure of function identical in identity.go
    	// with two exceptions.
    	// 1. Symbols are compared more carefully because a <,=,> result is desired.
    	// 2. Maps are treated specially to avoid endless recursion -- maps
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  10. pkg/kubelet/status/status_manager_test.go

    	t.Logf("syncBatch should not sync any pods because nothing is changed.")
    	m.testSyncBatch()
    	verifyActions(t, m, []core.Action{})
    
    	t.Logf("Change mirror pod identity.")
    	m.podManager.(mutablePodManager).RemovePod(mirrorPod)
    	mirrorPod.UID = "new-mirror-pod"
    	mirrorPod.Status = v1.PodStatus{}
    	m.podManager.(mutablePodManager).AddPod(mirrorPod)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
Back to top