Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for St (0.31 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/interpodaffinity/filtering_test.go

    				PodAntiAffinityExists("abc", "zone", st.PodAntiAffinityWithRequiredReq).
    				PodAntiAffinityExists("def", "zone", st.PodAntiAffinityWithRequiredReq).Obj(),
    			pods: []*v1.Pod{
    				st.MakePod().Namespace(defaultNamespace).Node("node1").Labels(map[string]string{"abc": "", "xyz": ""}).
    					PodAntiAffinityExists("abc", "zone", st.PodAntiAffinityWithRequiredReq).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/podtopologyspread/scoring_test.go

    				st.MakePod().Name("p-b2").Node("node-b").Label("foo", "").Obj(),
    				st.MakePod().Name("p-b3").Node("node-b").Label("foo", "").Obj(),
    				st.MakePod().Name("p-c1").Node("node-c").Label("foo", "").Obj(),
    				st.MakePod().Name("p-c2").Node("node-c").Label("foo", "").Obj(),
    				st.MakePod().Name("p-d1").Node("node-d").Label("foo", "").Obj(),
    			},
    			nodes: []*v1.Node{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 60K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/scheduler/internal/cache/cache_test.go

    			name: "operate the node with one pod",
    			nodes: []*v1.Node{
    				&st.MakeNode().Name("test-node-1").Capacity(resourceList1).Taints(taints).Images(imageStatus1).Node,
    				&st.MakeNode().Name("test-node-2").Capacity(resourceList2).Taints(taints).Images(imageStatus2).Node,
    				&st.MakeNode().Name("test-node-3").Capacity(resourceList1).Taints(taints).Images(imageStatus1).Node,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top