Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 280 for Id (0.04 sec)

  1. src/cmd/vendor/golang.org/x/text/internal/language/compact/language.go

    // index, exact will be false and the compact index will be returned for the
    // first match after repeatedly taking the Parent of t.
    func LanguageID(t Tag) (id ID, exact bool) {
    	return t.language, t.full == nil
    }
    
    // RegionalID returns the ID for the regional variant of this tag. This index is
    // used to indicate region-specific overrides, such as default currency, default
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. internal/event/target/webhook.go

    		if err := queueStore.Open(); err != nil {
    			cancel()
    			return nil, fmt.Errorf("unable to initialize the queue store of Webhook `%s`: %w", id, err)
    		}
    	}
    
    	target := &WebhookTarget{
    		id:         event.TargetID{ID: id, Name: "webhook"},
    		args:       args,
    		loggerOnce: loggerOnce,
    		transport:  transport,
    		store:      queueStore,
    		cancel:     cancel,
    		cancelCh:   ctx.Done(),
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. src/internal/coverage/pkid.go

    //    registered list:
    //    slot: 0 path='internal/cpu'  hard-coded id: 1
    //    slot: 1 path='internal/goarch'  hard-coded id: 2
    //    slot: 2 path='internal/runtime/atomic'  hard-coded id: 3
    //    slot: 3 path='internal/goos'
    //    slot: 4 path='runtime/internal/sys'  hard-coded id: 5
    //    slot: 5 path='internal/abi'  hard-coded id: 4
    //    slot: 6 path='runtime/internal/math'  hard-coded id: 6
    //    slot: 7 path='internal/bytealg'  hard-coded id: 7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. src/runtime/covermeta.go

    func addCovMeta(p unsafe.Pointer, dlen uint32, hash [16]byte, pkgpath string, pkgid int, cmode uint8, cgran uint8) uint32 {
    	id := rtcov.AddMeta(p, dlen, hash, pkgpath, pkgid, cmode, cgran)
    	if id == 0 {
    		throw("runtime.addCovMeta: coverage package map collision")
    	}
    	return id
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 603 bytes
    - Viewed (0)
  5. src/internal/trace/internal/testgen/go122/trace.go

    // strings to traces.
    func (g *Generation) String(s string) uint64 {
    	if len(s) == 0 {
    		return 0
    	}
    	if id, ok := g.strings[s]; ok {
    		return id
    	}
    	id := uint64(len(g.strings) + 1)
    	g.strings[s] = id
    	return id
    }
    
    // Stack registers a stack with the trace.
    //
    // This is a convenience function for easily adding correct
    // stacks to traces.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. src/net/rpc/jsonrpc/client.go

    	Params [1]any `json:"params"`
    	Id     uint64 `json:"id"`
    }
    
    func (c *clientCodec) WriteRequest(r *rpc.Request, param any) error {
    	c.mutex.Lock()
    	c.pending[r.Seq] = r.ServiceMethod
    	c.mutex.Unlock()
    	c.req.Method = r.ServiceMethod
    	c.req.Params[0] = param
    	c.req.Id = r.Seq
    	return c.enc.Encode(&c.req)
    }
    
    type clientResponse struct {
    	Id     uint64           `json:"id"`
    	Result *json.RawMessage `json:"result"`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. security/pkg/server/ca/authenticate/kubeauth/kube_jwt_test.go

    				if err == nil {
    					t.Errorf("Case %s: Succeeded. Error expected: %v", id, err)
    				} else if err.Error() != tc.expectedErrMsg {
    					t.Errorf("Case %s: Incorrect error message: \n%s\nVS\n%s",
    						id, err.Error(), tc.expectedErrMsg)
    				}
    				return
    			} else if err != nil {
    				t.Errorf("Case %s: Unexpected Error: %v", id, err)
    				return
    			}
    
    			expectedCaller := &security.Caller{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. src/runtime/traceexp.go

    	traceEvSpan      // heap span exists [timestamp, id, npages, type/class]
    	traceEvSpanAlloc // heap span alloc [timestamp, id, npages, type/class]
    	traceEvSpanFree  // heap span free [timestamp, id]
    
    	// Experimental heap object events. IDs map reversibly to addresses.
    	traceEvHeapObject      // heap object exists [timestamp, id, type]
    	traceEvHeapObjectAlloc // heap object alloc [timestamp, id, type]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. cmd/metacache-marker.go

    			continue
    		}
    		switch kv[0] {
    		case "minio_cache":
    			if kv[1] != markerTagVersion {
    				continue
    			}
    		case "id":
    			o.ID = kv[1]
    		case "return":
    			o.ID = mustGetUUID()
    			o.Create = true
    		case "p": // pool
    			v, err := strconv.ParseInt(kv[1], 10, 64)
    			if err != nil {
    				o.ID = mustGetUUID()
    				o.Create = true
    				continue
    			}
    			o.pool = int(v)
    		case "s": // set
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. pilot/pkg/xds/xdsgen.go

    type IstioControlPlaneInstance struct {
    	// The Istio component type (e.g. "istiod")
    	Component string
    	// The ID of the component instance
    	ID string
    	// The Istio version
    	Info istioversion.BuildInfo
    }
    
    // Evaluate the controlPlane lazily in order to allow "POD_NAME" env var setting after running the process.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top