Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 277 for St (0.16 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. cmd/site-replication-utils.go

    		return
    	}
    	sm.Lock()
    	defer sm.Unlock()
    	st, ok := sm.resyncStatus[o.resyncID]
    	if ok {
    		if st.BucketStatuses == nil {
    			st.BucketStatuses = map[string]ResyncStatusType{}
    		}
    		switch bktStatus {
    		case ResyncCompleted:
    			st.BucketStatuses[o.bucket] = ResyncCompleted
    			st.Status = siteResyncStatus(st.Status, st.BucketStatuses)
    			st.LastUpdate = UTCNow()
    			sm.resyncStatus[o.resyncID] = st
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 8.9K bytes
    - Viewed (1)
  3. src/syscall/syscall_linux_mips64x.go

    	st := &stat_t{}
    	err = stat(path, st)
    	fillStat_t(s, st)
    	return
    }
    
    func fillStat_t(s *Stat_t, st *stat_t) {
    	s.Dev = st.Dev
    	s.Ino = st.Ino
    	s.Mode = st.Mode
    	s.Nlink = st.Nlink
    	s.Uid = st.Uid
    	s.Gid = st.Gid
    	s.Rdev = st.Rdev
    	s.Size = st.Size
    	s.Atim = Timespec{int64(st.Atime), int64(st.Atime_nsec)}
    	s.Mtim = Timespec{int64(st.Mtime), int64(st.Mtime_nsec)}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/podtopologyspread/plugin_test.go

    				Obj(),
    			newPod:       st.MakePod().Label("foo", "").Obj(),
    			expectedHint: framework.QueueSkip,
    		},
    		{
    			name: "update un-scheduled pod",
    			pod: st.MakePod().Name("p").Label("foo", "").
    				SpreadConstraint(1, "zone", v1.DoNotSchedule, fooSelector, nil, nil, nil, nil).
    				Obj(),
    			newPod:       st.MakePod().Label("foo", "").Obj(),
    			oldPod:       st.MakePod().Label("bar", "").Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 06:30:53 UTC 2023
    - 13K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    				st.MakeNode().Name("node-y").Label("zone", "zone2").Label("node", "node-y").Obj(),
    			},
    			existingPods: []*v1.Pod{
    				st.MakePod().Name("p-a1").Node("node-a").Label("foo", "").Obj(),
    				st.MakePod().Name("p-a2").Node("node-a").Label("foo", "").Obj(),
    				st.MakePod().Name("p-b1").Node("node-b").Label("foo", "").Obj(),
    				st.MakePod().Name("p-y1").Node("node-y").Label("foo", "").Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  6. pkg/scheduler/eventhandlers_test.go

    			nodeFn: func() *v1.Node {
    				return st.MakeNode().Name("fake-node").Label("hostname", "fake-node").Capacity(cpu8).Obj()
    			},
    			existingPods: []*v1.Pod{
    				st.MakePod().Name("p").HostPort(80).Obj(),
    			},
    			pods: []*v1.Pod{
    				st.MakePod().Name("p1").Req(cpu4).Obj(),
    				st.MakePod().Name("p2").Req(cpu16).Obj(),
    				st.MakePod().Name("p3").Req(cpu4).Req(cpu8).Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 14:38:54 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  7. 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)
  8. cmd/metrics-realtime.go

    				TotalTicks:     st.TotalTicks,
    				ReqTicks:       st.ReqTicks,
    				DiscardIOs:     st.DiscardIOs,
    				DiscardMerges:  st.DiscardMerges,
    				DiscardSectors: st.DiscardSectors,
    				DiscardTicks:   st.DiscardTicks,
    				FlushIOs:       st.FlushIOs,
    				FlushTicks:     st.FlushTicks,
    			}
    		}
    
    		metrics[d.Endpoint] = dm
    	}
    	return metrics
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 05:16:24 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. src/net/internal/socktest/switch.go

    }
    
    func (st Stat) String() string {
    	return fmt.Sprintf("(%s, %s, %s): opened=%d connected=%d listened=%d accepted=%d closed=%d openfailed=%d connectfailed=%d listenfailed=%d acceptfailed=%d closefailed=%d", familyString(st.Family), typeString(st.Type), protocolString(st.Protocol), st.Opened, st.Connected, st.Listened, st.Accepted, st.Closed, st.OpenFailed, st.ConnectFailed, st.ListenFailed, st.AcceptFailed, st.CloseFailed)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/volumerestrictions/volume_restrictions_test.go

    		{
    			pod:                 &v1.Pod{},
    			nodeInfo:            framework.NewNodeInfo(st.MakePod().Volume(volState).Obj()),
    			name:                "one state",
    			preFilterWantStatus: framework.NewStatus(framework.Skip),
    			wantStatus:          nil,
    		},
    		{
    			pod:                 st.MakePod().Volume(volState).Obj(),
    			nodeInfo:            framework.NewNodeInfo(st.MakePod().Volume(volState).Obj()),
    			name:                "same state",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 17:40:39 UTC 2023
    - 17.3K bytes
    - Viewed (0)
Back to top