Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 376 for St (0.03 sec)

  1. src/cmd/cgo/internal/test/issue26430/a.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package a
    
    // typedef struct S ST;
    // static ST* F() { return 0; }
    import "C"
    
    func F1() {
    	C.F()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 260 bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/noderesources/balanced_allocation_test.go

    				st.MakePod().Node("node2").Labels(labels1).Obj(),
    				st.MakePod().Node("node2").Labels(labels1).Obj(),
    			},
    			args:        config.NodeResourcesBalancedAllocationArgs{Resources: defaultResourceBalancedAllocationSet},
    			runPreScore: true,
    		},
    		{
    			// Node1 scores on 0-MaxNodeScore scale
    			// CPU Fraction: 0 / 250 = 0%
    			// Memory Fraction: 0 / 1000 = 0%
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  3. test/fixedbugs/issue43701.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    func f() {
    	var st struct {
    		s string
    		i int16
    	}
    	_ = func() {
    		var m map[int16]int
    		m[st.i] = 0
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 15 16:13:04 UTC 2021
    - 290 bytes
    - Viewed (0)
  4. src/cmd/trace/goroutinegen.go

    	st := ev.StateTransition()
    	goID := st.Resource.Goroutine()
    
    	// If we haven't seen this goroutine before, create a new
    	// gState for it.
    	gs, ok := g.gStates[goID]
    	if !ok {
    		gs = newGState[trace.GoID](goID)
    		g.gStates[goID] = gs
    	}
    
    	// Try to augment the name of the goroutine.
    	gs.augmentName(st.Stack)
    
    	// Handle the goroutine state transition.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/interactive.go

    func profileShortcuts(p *profile.Profile) shortcuts {
    	s := pprofShortcuts
    	// Add shortcuts for sample types
    	for _, st := range p.SampleType {
    		command := fmt.Sprintf("sample_index=%s", st.Type)
    		s[st.Type] = []string{command}
    		s["total_"+st.Type] = []string{"mean=0", command}
    		s["mean_"+st.Type] = []string{"mean=1", command}
    	}
    	return s
    }
    
    func sampleTypes(p *profile.Profile) []string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  6. cmd/bucket-replication-handlers.go

    	}
    
    	var rinfo ResyncTargetsInfo
    	for tarn, st := range brs.TargetsMap {
    		if arn != "" && tarn != arn {
    			continue
    		}
    		rinfo.Targets = append(rinfo.Targets, ResyncTarget{
    			Arn:             tarn,
    			ResetID:         st.ResyncID,
    			StartTime:       st.StartTime,
    			EndTime:         st.LastUpdate,
    			ResyncStatus:    st.ResyncStatus.String(),
    			ReplicatedSize:  st.ReplicatedSize,
    			ReplicatedCount: st.ReplicatedCount,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  7. src/syscall/fs_wasip1.go

    	errno := path_filestat_get(dirFd, 0, pathPtr, pathLen, unsafe.Pointer(st))
    	setDefaultMode(st)
    	return errnoErr(errno)
    }
    
    func Fstat(fd int, st *Stat_t) error {
    	errno := fd_filestat_get(int32(fd), unsafe.Pointer(st))
    	setDefaultMode(st)
    	return errnoErr(errno)
    }
    
    func setDefaultMode(st *Stat_t) {
    	// WASI does not support unix-like permissions, but Go programs are likely
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  8. src/internal/types/testdata/fixedbugs/issue50779a.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    type AC interface {
    	C
    }
    
    type ST []int
    
    type R[S any, P any] struct{}
    
    type SR = R[SS, ST]
    
    type SS interface {
    	NSR(any) *SR
    }
    
    type C interface {
    	NSR(any) *SR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 13 20:18:45 UTC 2023
    - 356 bytes
    - Viewed (0)
  9. test/fixedbugs/issue49016.dir/a.go

    	if x, ok := s[0]; ok {
    		return x[0].(struct {
    			noder
    			Scope
    		}).Scope
    	}
    	return nil
    }
    
    func (s Scope) M2() Scope {
    	if x, ok := s[0]; ok {
    		st, _ := x[0].(struct {
    			noder
    			Scope
    		})
    		return st.Scope
    	}
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 20 17:26:58 UTC 2021
    - 543 bytes
    - Viewed (0)
  10. src/cmd/trace/procgen.go

    	st := ev.StateTransition()
    	goID := st.Resource.Goroutine()
    
    	// If we haven't seen this goroutine before, create a new
    	// gState for it.
    	gs, ok := g.gStates[goID]
    	if !ok {
    		gs = newGState[trace.ProcID](goID)
    		g.gStates[goID] = gs
    	}
    	// If we haven't already named this goroutine, try to name it.
    	gs.augmentName(st.Stack)
    
    	// Handle the goroutine state transition.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top