Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 106 of 106 for Id (0.06 sec)

  1. pkg/workloadapi/workload.pb.go

    	Status                WorkloadStatus `protobuf:"varint,17,opt,name=status,proto3,enum=istio.workload.WorkloadStatus" json:"status,omitempty"`
    	// The cluster ID that the workload instance belongs to
    	ClusterId string `protobuf:"bytes,18,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"`
    	// The Locality defines information about where a workload is geographically deployed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  2. src/cmd/dist/build.go

    	// toolchain2 having build IDs - that is, due to the go command seeing
    	// that there are new compilers. In release builds, the toolchain's reported
    	// version is used in place of the build ID, and the go command does not
    	// see that change from toolchain1 to toolchain2, so in release builds,
    	// nothing looks out of date.
    	// To keep the behavior the same in both non-release and release builds,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  3. cmd/object-api-listobjects_test.go

    }
    
    func testDeleteObjectVersion(obj ObjectLayer, instanceType string, t1 TestErrHandler) {
    	t, _ := t1.(*testing.T)
    
    	testBuckets := []string{
    		"bucket-suspended-version",
    		"bucket-suspended-version-id",
    	}
    	for _, bucket := range testBuckets {
    		err := obj.MakeBucket(context.Background(), bucket, MakeBucketOptions{
    			VersioningEnabled: true,
    		})
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loader/loader.go

    // some specific symbol.
    func (l *Loader) SetRelocVariant(s Sym, ri int, v sym.RelocVariant) {
    	// sanity check
    	if relocs := l.Relocs(s); ri >= relocs.Count() {
    		panic("invalid relocation ID")
    	}
    	if l.relocVariant == nil {
    		l.relocVariant = make(map[relocId]sym.RelocVariant)
    	}
    	if v != 0 {
    		l.relocVariant[relocId{s, ri}] = v
    	} else {
    		delete(l.relocVariant, relocId{s, ri})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  5. src/reflect/type.go

    //
    //go:noescape
    func resolveTextOff(rtype unsafe.Pointer, off int32) unsafe.Pointer
    
    // addReflectOff adds a pointer to the reflection lookup map in the runtime.
    // It returns a new ID that can be used as a typeOff or textOff, and will
    // be resolved correctly. Implemented in the runtime package.
    //
    // addReflectOff should be an internal detail,
    // but widely used packages access it using linkname.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  6. src/runtime/mheap.go

    // A heapArena stores metadata for a heap arena. heapArenas are stored
    // outside of the Go heap and accessed via the mheap_.arenas index.
    type heapArena struct {
    	_ sys.NotInHeap
    
    	// spans maps from virtual address page ID within this arena to *mspan.
    	// For allocated spans, their pages map to the span itself.
    	// For free spans, only the lowest and highest pages map to the span itself.
    	// Internal pages map to an arbitrary span.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top