Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for St (0.03 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    // a C++23 explicit object parameter.
    func (st *state) localName() (AST, bool) {
    	st.checkChar('Z')
    	fn := st.encoding(true, forLocalName)
    	if len(st.str) == 0 || st.str[0] != 'E' {
    		st.fail("expected E after local name")
    	}
    	st.advance(1)
    	if len(st.str) > 0 && st.str[0] == 's' {
    		st.advance(1)
    		var n AST = &Name{Name: "string literal"}
    		n = st.discriminator(n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    			name: "preemption result filtered out by extenders",
    			pod:  st.MakePod().Name("p").UID("p").Namespace(v1.NamespaceDefault).Priority(highPriority).Obj(),
    			pods: []*v1.Pod{
    				st.MakePod().Name("p1").UID("p1").Namespace(v1.NamespaceDefault).Node("node1").Obj(),
    				st.MakePod().Name("p2").UID("p2").Namespace(v1.NamespaceDefault).Node("node2").Obj(),
    			},
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(onePodRes).Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    		},
    		"insufficient resource": {
    			pod:      st.MakePod().Req(map[v1.ResourceName]string{v1.ResourceCPU: "2"}).Obj(),
    			node:     st.MakeNode().Capacity(map[v1.ResourceName]string{v1.ResourceCPU: "1"}).Obj(),
    			expected: false,
    		},
    		"sufficient resource": {
    			pod:      st.MakePod().Req(map[v1.ResourceName]string{v1.ResourceCPU: "1"}).Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    	structuredAllocatedClaimWithParams = st.FromResourceClaim(structuredAllocatedClaim).ParametersRef(claimName).Obj()
    
    	otherStructuredAllocatedClaim = st.FromResourceClaim(structuredAllocatedClaim).Name(structuredAllocatedClaim.Name + "-other").Obj()
    
    	allocatedDelayedClaimWithWrongTopology = st.FromResourceClaim(allocatedClaim).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  5. cmd/xl-storage.go

    			}
    			for tgt, st := range sizeS.replTargetStats {
    				res["repl-size-"+tgt] = strconv.FormatInt(st.replicatedSize, 10)
    				res["repl-count-"+tgt] = strconv.FormatInt(st.replicatedCount, 10)
    				if st.failedCount > 0 {
    					res["repl-failed-"+tgt] = fmt.Sprintf("%d versions, %d bytes", st.failedCount, st.failedSize)
    				}
    				if st.pendingCount > 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loader/loader.go

    				s, existed := st.hashed64Syms[h64]
    				return s, existed
    			}
    			addToHashMap = func(ss symAndSize) { st.hashed64Syms[h64] = ss }
    		} else {
    			checkHash = func() (symAndSize, bool) {
    				h = r.Hash(li - uint32(r.ndef+r.nhashed64def))
    				s, existed := st.hashedSyms[*h]
    				return s, existed
    			}
    			addToHashMap = func(ss symAndSize) { st.hashedSyms[*h] = ss }
    		}
    		siz := osym.Siz()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ppc64/ssa.go

    		ssa.OpPPC64LoweredAtomicStore32,
    		ssa.OpPPC64LoweredAtomicStore64:
    		// SYNC or LWSYNC
    		// MOVB/MOVW/MOVD arg1,(arg0)
    		st := ppc64.AMOVD
    		switch v.Op {
    		case ssa.OpPPC64LoweredAtomicStore8:
    			st = ppc64.AMOVB
    		case ssa.OpPPC64LoweredAtomicStore32:
    			st = ppc64.AMOVW
    		}
    		arg0 := v.Args[0].Reg()
    		arg1 := v.Args[1].Reg()
    		// If AuxInt == 0, LWSYNC (Store-Release), else SYNC
    		// SYNC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. src/net/netip/netip_test.go

    		t.Run(tt.family, func(t *testing.T) {
    			for _, st := range tt.subtests {
    				t.Run(st.p.String(), func(t *testing.T) {
    					// Ensure st.ip is not mutated.
    					orig := st.ip.String()
    
    					p, err := st.ip.Prefix(int(st.bits))
    					if st.ok && err != nil {
    						t.Fatalf("failed to produce prefix: %v", err)
    					}
    					if !st.ok && err == nil {
    						t.Fatal("expected an error, but none occurred")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/elf.go

    		if target.Arch.Family == sys.I386 && cgoexp && st == sym.STEXT {
    			t = elf.ST_INFO(elf.STB_GLOBAL, elf.STT_FUNC)
    		} else if target.Arch.Family == sys.ARM && cgoeDynamic && st == sym.STEXT {
    			t = elf.ST_INFO(elf.STB_GLOBAL, elf.STT_FUNC)
    		} else {
    			t = elf.ST_INFO(elf.STB_GLOBAL, elf.STT_OBJECT)
    		}
    		d.AddUint8(t)
    		d.AddUint8(0)
    
    		/* shndx */
    		if st == sym.SDYNIMPORT {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. src/time/time_test.go

    	{MinMonoTime, MaxMonoTime, minDuration},
    	{MaxMonoTime, MinMonoTime, maxDuration},
    }
    
    func TestSub(t *testing.T) {
    	for i, st := range subTests {
    		got := st.t.Sub(st.u)
    		if got != st.d {
    			t.Errorf("#%d: Sub(%v, %v): got %v; want %v", i, st.t, st.u, got, st.d)
    		}
    	}
    }
    
    var nsDurationTests = []struct {
    	d    Duration
    	want int64
    }{
    	{Duration(-1000), -1000},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
Back to top