Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 90 for identity1 (0.24 sec)

  1. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.google-earth.kmz",
    				"application/vnd.grafeq",
    				"application/vnd.gridmp",
    				"application/vnd.groove-account",
    				"application/vnd.groove-help",
    				"application/vnd.groove-identity-message",
    				"application/vnd.groove-injector",
    				"application/vnd.groove-tool-message",
    				"application/vnd.groove-tool-template",
    				"application/vnd.groove-vcard",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    	for _, n := range f.Name {
    		if n.Kind == "func" {
    			functions[n.Go] = false
    		}
    	}
    
    	// Now that we have all the name types filled in,
    	// scan through the Refs to identify the ones that
    	// are trying to do a ,err call. Also check that
    	// functions are only used in calls.
    	for _, r := range f.Ref {
    		if r.Name.IsConst() && r.Name.Const == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    //sys	isValidSid(sid *SID) (isValid bool) = advapi32.IsValidSid
    
    // The security identifier (SID) structure is a variable-length
    // structure used to uniquely identify users or groups.
    type SID struct{}
    
    // StringToSid converts a string-format security identifier
    // SID into a valid, functional SID.
    func StringToSid(s string) (*SID, error) {
    	var sid *SID
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

    using ::mlir::quant::UniformQuantizedType;
    
    #define GEN_PASS_DEF_COMPOSEUNIFORMQUANTIZEDTYPEPASS
    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.h.inc"
    
    // These strings are used to identify the uniform_quantize / uniform_dequantize
    // functions.
    constexpr StringRef kUniformQuantizeFunctionNameSubstring = "uniform_quantize";
    constexpr StringRef kUniformDequantizeFunctionNameSubstring =
        "uniform_dequantize";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top