Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 109 for toidentifier (0.36 sec)

  1. kotlin-js-store/yarn.lock

      integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
      dependencies:
        is-number "^7.0.0"
    
    toidentifier@1.0.1:
      version "1.0.1"
      resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35"
      integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  2. 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)
  3. src/go/printer/testdata/parser.go

    func (p *parser) resolve(x ast.Expr) {
    	// nothing to do if x is not an identifier or the blank identifier
    	ident, _ := x.(*ast.Ident)
    	if ident == nil {
    		return
    	}
    	assert(ident.Obj == nil, "identifier already declared or resolved")
    	if ident.Name == "_" {
    		return
    	}
    	// try to resolve the identifier
    	for s := p.topScope; s != nil; s = s.Outer {
    		if obj := s.Lookup(ident.Name); obj != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	//                   resource.
    	//   "id"   string - the identifier of the missing resource
    	// Status code 404
    	StatusReasonNotFound StatusReason = "NotFound"
    
    	// StatusReasonAlreadyExists means the resource you are creating already exists.
    	// Details (optional):
    	//   "kind" string - the kind attribute of the conflicting resource
    	//   "id"   string - the identifier of the conflicting resource
    	// Status code 409
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  9. docs/bucket/notifications/README.md

    Note that, you can add as many AMQP server endpoint configurations as needed by providing an identifier (like "1" in the example above) for the AMQP instance and an object of per-server configuration parameters.
    
    ### Step 2: Enable RabbitMQ bucket notification using MinIO client
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  10. 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)
Back to top