Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,430 for Id (0.03 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/proxy/proxy.go

    				}, nil
    			}
    		}
    	}
    	return nil, errors.NewServiceUnavailable(fmt.Sprintf("no endpoints available for service %q", id))
    }
    
    func ResolveCluster(services listersv1.ServiceLister, namespace, id string, port int32) (*url.URL, error) {
    	svc, err := services.Services(namespace).Get(id)
    	if err != nil {
    		return nil, err
    	}
    
    	switch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 00:36:22 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/http2/hpack/tables.go

    	if !f.Sensitive {
    		if id := t.byNameValue[pairNameValue{f.Name, f.Value}]; id != 0 {
    			return t.idToIndex(id), true
    		}
    	}
    	if id := t.byName[f.Name]; id != 0 {
    		return t.idToIndex(id), false
    	}
    	return 0, false
    }
    
    // idToIndex converts a unique id to an HPACK index.
    // See Section 2.3.3.
    func (t *headerFieldTable) idToIndex(id uint64) uint64 {
    	if id <= t.evictCount {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 22:32:44 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  3. cmd/metacache-bucket.go

    			b.debugf("cache %s not worth keeping", id)
    			remove[id] = struct{}{}
    			continue
    		}
    		if cache.id != id {
    			logger.Info("cache ID mismatch %s != %s", id, cache.id)
    			remove[id] = struct{}{}
    			continue
    		}
    		if cache.bucket != b.bucket {
    			logger.Info("cache bucket mismatch %s != %s", b.bucket, cache.bucket)
    			remove[id] = struct{}{}
    			continue
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. src/os/wait6_freebsd_386.go

    package os
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    const _P_PID = 0
    
    func wait6(idtype, id, options int) (status int, errno syscall.Errno) {
    	// freebsd32_wait6_args{ idtype, id1, id2, status, options, wrusage, info }
    	_, _, errno = syscall.Syscall9(syscall.SYS_WAIT6, uintptr(idtype), uintptr(id), 0, uintptr(unsafe.Pointer(&status)), uintptr(options), 0, 0, 0, 0)
    	return status, errno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 21:25:45 UTC 2022
    - 544 bytes
    - Viewed (0)
  5. src/cmd/buildid/buildid.go

    	}
    
    	newID := id[:strings.LastIndex(id, "/")] + "/" + buildid.HashToString(hash)
    	if len(newID) != len(id) {
    		log.Fatalf("%s: build ID length mismatch %q vs %q", file, id, newID)
    	}
    
    	if len(matches) == 0 {
    		return
    	}
    
    	f, err = os.OpenFile(file, os.O_RDWR, 0)
    	if err != nil {
    		log.Fatal(err)
    	}
    	if err := buildid.Rewrite(f, matches, newID); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/cpumanager/topology/topology_test.go

    							{SocketID: 1, Id: 2, Threads: []int{22, 62}},
    							{SocketID: 1, Id: 8, Threads: []int{23, 63}},
    							{SocketID: 1, Id: 9, Threads: []int{24, 64}},
    							{SocketID: 1, Id: 16, Threads: []int{25, 65}},
    							{SocketID: 1, Id: 17, Threads: []int{26, 66}},
    							{SocketID: 1, Id: 18, Threads: []int{27, 67}},
    							{SocketID: 1, Id: 24, Threads: []int{28, 68}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 31.7K bytes
    - Viewed (0)
  7. src/os/wait6_netbsd.go

    package os
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    const _P_PID = 1 // not 0 as on FreeBSD and Dragonfly!
    
    func wait6(idtype, id, options int) (status int, errno syscall.Errno) {
    	var status32 int32 // C.int
    	_, _, errno = syscall.Syscall6(syscall.SYS_WAIT6, uintptr(idtype), uintptr(id), uintptr(unsafe.Pointer(&status32)), uintptr(options), 0, 0)
    	return int(status32), errno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 21:25:45 UTC 2022
    - 534 bytes
    - Viewed (0)
  8. src/internal/trace/resources.go

    }
    
    // ResourceID represents a generic resource ID.
    type ResourceID struct {
    	// Kind is the kind of resource this ID is for.
    	Kind ResourceKind
    	id   int64
    }
    
    // MakeResourceID creates a general resource ID from a specific resource's ID.
    func MakeResourceID[T interface{ GoID | ProcID | ThreadID }](id T) ResourceID {
    	var rd ResourceID
    	var a any = id
    	switch a.(type) {
    	case GoID:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. src/internal/concurrent/hashtriemap_test.go

    			wg.Add(1)
    			go func(id int) {
    				defer wg.Done()
    
    				makeKey := func(s string) string {
    					return s + "-" + strconv.Itoa(id)
    				}
    				for _, s := range testData {
    					key := makeKey(s)
    					expectMissing(t, key, 0)(m.Load(key))
    					expectStored(t, key, id)(m.LoadOrStore(key, id))
    					expectPresent(t, key, id)(m.Load(key))
    					expectLoaded(t, key, id)(m.LoadOrStore(key, 0))
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  10. tests/preload_suits_test.go

    	type (
    		Level0 struct {
    			ID       uint
    			Value    string
    			Level1ID uint
    		}
    		Level1 struct {
    			ID         uint
    			Value      string
    			Level2ID   *uint
    			Level2_1ID *uint
    			Level0s    []Level0 `json:",omitempty"`
    		}
    		Level2 struct {
    			ID       uint
    			Level1s  []Level1
    			Level3ID uint
    		}
    		Level2_1 struct {
    			ID       uint
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Mar 18 05:38:46 UTC 2022
    - 30.3K bytes
    - Viewed (0)
Back to top