Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,495 for Id (0.04 sec)

  1. 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)
  2. 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)
  3. tests/integration/operator/operator_dumper.go

    	rev string
    }
    
    func (d *operatorDumper) Dump(ctx resource.Context) {
    	scopes.Framework.Errorf("=== Dumping Istio Deployment State for %v...", ctx.ID())
    	ns := d.ns
    	if len(ns) < 1 {
    		ns = "istio-operator"
    	}
    
    	dir, err := ctx.CreateTmpDirectory("istio-operator-" + d.ID().String())
    	if err != nil {
    		scopes.Framework.Errorf("Unable to create directory for dumping operator contents: %v", err)
    		return
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:33 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. pkg/kubelet/stats/cri_stats_provider_windows_test.go

    			if found {
    				// add the container
    				e.SharedContainers = append(e.SharedContainers, c.container.ID)
    				continue
    			}
    
    			uniqueEndpoints[stat.EndpointId] = &hcsshim.HNSEndpoint{
    				Name:             stat.EndpointId,
    				Id:               stat.EndpointId,
    				SharedContainers: []string{c.container.ID},
    			}
    		}
    	}
    
    	eps := []hcsshim.HNSEndpoint{}
    	for _, ep := range uniqueEndpoints {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 17 00:02:10 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/net/rpc/jsonrpc/server.go

    }
    
    type serverRequest struct {
    	Method string           `json:"method"`
    	Params *json.RawMessage `json:"params"`
    	Id     *json.RawMessage `json:"id"`
    }
    
    func (r *serverRequest) reset() {
    	r.Method = ""
    	r.Params = nil
    	r.Id = nil
    }
    
    type serverResponse struct {
    	Id     *json.RawMessage `json:"id"`
    	Result any              `json:"result"`
    	Error  any              `json:"error"`
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. pkg/kube/multicluster/clusterstore.go

    	remoteClusters map[string]map[cluster.ID]*Cluster
    	clusters       sets.String
    }
    
    // newClustersStore initializes data struct to store clusters information
    func newClustersStore() *ClusterStore {
    	return &ClusterStore{
    		remoteClusters: make(map[string]map[cluster.ID]*Cluster),
    		clusters:       sets.New[string](),
    	}
    }
    
    func (c *ClusterStore) Store(secretKey string, clusterID cluster.ID, value *Cluster) {
    	c.Lock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 07 15:01:12 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. 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)
Back to top