Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for toidentifier (0.39 sec)

  1. src/crypto/x509/x509.go

    //
    //	anyExtendedKeyUsage OBJECT IDENTIFIER ::= { id-ce-extKeyUsage 0 }
    //
    //	id-kp OBJECT IDENTIFIER ::= { id-pkix 3 }
    //
    //	id-kp-serverAuth             OBJECT IDENTIFIER ::= { id-kp 1 }
    //	id-kp-clientAuth             OBJECT IDENTIFIER ::= { id-kp 2 }
    //	id-kp-codeSigning            OBJECT IDENTIFIER ::= { id-kp 3 }
    //	id-kp-emailProtection        OBJECT IDENTIFIER ::= { id-kp 4 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  2. src/net/url/url_test.go

    	},
    	// host subcomponent; IPv6 address with zone identifier in RFC 6874
    	{
    		"http://[fe80::1%25en0]/", // alphanum zone identifier
    		&URL{
    			Scheme: "http",
    			Host:   "[fe80::1%en0]",
    			Path:   "/",
    		},
    		"",
    	},
    	// host and port subcomponents; IPv6 address with zone identifier in RFC 6874
    	{
    		"http://[fe80::1%25en0]:8080/", // alphanum zone identifier
    		&URL{
    			Scheme: "http",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/parser.go

    		n := NewName(p.pos(), p.lit)
    		p.next()
    		return n
    	}
    
    	n := NewName(p.pos(), "_")
    	p.syntaxError("expected name")
    	p.advance()
    	return n
    }
    
    // IdentifierList = identifier { "," identifier } .
    // The first name must be provided.
    func (p *parser) nameList(first *Name) []*Name {
    	if trace {
    		defer p.trace("nameList")()
    	}
    
    	if debug && first == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  4. 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
    	p, e := UTF16PtrFromString(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

    // the attribute identifier in the float function.
    LogicalResult TransferTFAttributesToTFUniformAttributes(
        PatternRewriter& rewriter, func::FuncOp float_func,
        func::FuncOp quantized_func, QuantMethod quantization_method,
        bool enable_per_channel_quantization) {
      // A map to find an attribute from its identifier.
      llvm::StringMap<Attribute> identifier_to_attr;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    				}
    
    				expectObj := out
    				podIdentifier := watchTest.obj.Namespace + "/" + watchTest.obj.Name
    				if watchTest.watchType == watch.Deleted {
    					expectObj = currentObjs[podIdentifier]
    					expectObj.ResourceVersion = out.ResourceVersion
    					delete(currentObjs, podIdentifier)
    				} else {
    					currentObjs[podIdentifier] = out
    				}
    				if watchTest.expectEvent {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

    }
    
    // MatchCondition represents a condition which must by fulfilled for a request to be sent to a webhook.
    message MatchCondition {
      // Name is an identifier for this match condition, used for strategic merging of MatchConditions,
      // as well as providing an identifier for logging purposes. A good name should be descriptive of
      // the associated expression.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            if (upcomingNoLongerPendingConstraints != null) {
                for (ModuleIdentifier identifier : upcomingNoLongerPendingConstraints) {
                    ModuleResolveState module = resolveState.getModule(identifier);
                    for (EdgeState unattachedDependency : module.getUnattachedDependencies()) {
                        if (!unattachedDependency.getSelector().isResolved()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

                }
    
                String taskPath = projectPath.append(Path.path("dependencyInsight")).getPath();
    
                ModuleVersionIdentifier identifier = conflicts.iterator().next().getVersions().get(0);
                String dependencyNotation = identifier.getGroup() + ":" + identifier.getName();
    
                return Collections.singletonList(String.format(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1/types.go

    }
    
    // MatchCondition represents a condition which must by fulfilled for a request to be sent to a webhook.
    type MatchCondition struct {
    	// Name is an identifier for this match condition, used for strategic merging of MatchConditions,
    	// as well as providing an identifier for logging purposes. A good name should be descriptive of
    	// the associated expression.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
Back to top