Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 145 for St (0.09 sec)

  1. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity_test.go

    			oldObj:       st.MakeNode().Obj(),
    			newObj:       st.MakeNode().Label("k", "v").Obj(),
    			expectedHint: framework.QueueSkip,
    		},
    		"skip-labels-changes-on-node-from-suitable-to-unsuitable": {
    			args:         &config.NodeAffinityArgs{},
    			pod:          podWithNodeAffinity.DeepCopy(),
    			oldObj:       st.MakeNode().Label("foo", "bar").Obj(),
    			newObj:       st.MakeNode().Label("k", "v").Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 38.7K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/nodeports/node_ports_test.go

    			oldObj:       st.MakePod().Obj(),
    			expectedHint: framework.QueueSkip,
    		},
    		"skip-queue-on-non-hostport": {
    			pod:          podWithHostPort.Obj(),
    			oldObj:       st.MakePod().Node("fake-node").Obj(),
    			expectedHint: framework.QueueSkip,
    		},
    		"skip-queue-on-unrelated-hostport": {
    			pod:          podWithHostPort.Obj(),
    			oldObj:       st.MakePod().Node("fake-node").HostPort(8081).Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 11:02:11 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. internal/grid/benchmark_test.go

    					// Send the payload.
    					t := time.Now()
    					st, err := conn.NewStream(ctx, handlerTest, payload)
    					if err != nil {
    						if debugReqs {
    							fmt.Println(err.Error())
    						}
    						b.Fatal(err.Error())
    					}
    					got := 0
    					for i := 0; i < requests; i++ {
    						got++
    						st.Requests <- append(GetByteBuffer()[:0], payload...)
    					}
    					close(st.Requests)
    					err = st.Results(func(b []byte) error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. src/runtime/type.go

    		return typesEqual(pt.Elem, pv.Elem, seen)
    	case abi.Slice:
    		st := (*slicetype)(unsafe.Pointer(t))
    		sv := (*slicetype)(unsafe.Pointer(v))
    		return typesEqual(st.Elem, sv.Elem, seen)
    	case abi.Struct:
    		st := (*structtype)(unsafe.Pointer(t))
    		sv := (*structtype)(unsafe.Pointer(v))
    		if len(st.Fields) != len(sv.Fields) {
    			return false
    		}
    		if st.PkgPath.Name() != sv.PkgPath.Name() {
    			return false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. src/internal/trace/summary.go

    	case EventSync:
    		s.syncTs = ev.Time()
    
    	// Handle state transitions.
    	case EventStateTransition:
    		st := ev.StateTransition()
    		switch st.Resource.Kind {
    		// Handle goroutine transitions, which are the meat of this computation.
    		case ResourceGoroutine:
    			id := st.Resource.Goroutine()
    			old, new := st.Goroutine()
    			if old == new {
    				// Skip these events; they're not telling us anything new.
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  6. src/runtime/signal_unix.go

    	sp := uintptr(unsafe.Pointer(&sig))
    	if sp >= mp.gsignal.stack.lo && sp < mp.gsignal.stack.hi {
    		return false
    	}
    
    	var st stackt
    	sigaltstack(nil, &st)
    	stsp := uintptr(unsafe.Pointer(st.ss_sp))
    	if st.ss_flags&_SS_DISABLE == 0 && sp >= stsp && sp < stsp+st.ss_size {
    		setGsignalStack(&st, gsigStack)
    		return true
    	}
    
    	if sp >= mp.g0.stack.lo && sp < mp.g0.stack.hi {
    		// The signal was delivered on the g0 stack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p256_asm_amd64.s

    	ST (s2)
    
    	LDt (y1in)
    	CALL p256SubInternal(SB)	// r = s2 - s1
    	ST (r)
    
    	CALL p256SqrInternal(SB)	// rsqr = rˆ2
    	ST (rsqr)
    
    	LDacc (h)
    	CALL p256SqrInternal(SB)	// hsqr = hˆ2
    	ST (hsqr)
    
    	LDt (h)
    	CALL p256MulInternal(SB)	// hcub = hˆ3
    	ST (hcub)
    
    	LDt (y1in)
    	CALL p256MulInternal(SB)	// y1 * hˆ3
    	ST (s2)
    
    	LDacc (x1in)
    	LDt (hsqr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  8. cmd/data-usage-cache.go

    			st := e.ReplicationStats.Targets[arn]
    			e.ReplicationStats.Targets[arn] = replicationStats{
    				PendingSize:     stat.PendingSize + st.PendingSize,
    				FailedSize:      stat.FailedSize + st.FailedSize,
    				ReplicatedSize:  stat.ReplicatedSize + st.ReplicatedSize,
    				PendingCount:    stat.PendingCount + st.PendingCount,
    				FailedCount:     stat.FailedCount + st.FailedCount,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 14:49:50 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/profile/encode.go

    // exported fields are cleared up to facilitate testing.
    func (p *Profile) preEncode() {
    	strings := make(map[string]int)
    	addString(strings, "")
    
    	for _, st := range p.SampleType {
    		st.typeX = addString(strings, st.Type)
    		st.unitX = addString(strings, st.Unit)
    	}
    
    	for _, s := range p.Sample {
    		s.labelX = nil
    		var keys []string
    		for k := range s.Label {
    			keys = append(keys, k)
    		}
    		sort.Strings(keys)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/go.go

    				remote, q = before, after
    			}
    			s := l.LookupOrCreateSym(local, 0)
    			st := l.SymType(s)
    			if st == 0 || st == sym.SXREF || st == sym.SBSS || st == sym.SNOPTRBSS || st == sym.SHOSTOBJ {
    				l.SetSymDynimplib(s, lib)
    				l.SetSymExtname(s, remote)
    				l.SetSymDynimpvers(s, q)
    				if st != sym.SHOSTOBJ {
    					su := l.MakeSymbolUpdater(s)
    					su.SetType(sym.SDYNIMPORT)
    				} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top