Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 199 for St (0.1 sec)

  1. src/cmd/trace/threadgen.go

    			g.threads[ev.Thread()] = struct{}{}
    		}
    	}
    
    	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.ThreadID](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
    - 5.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.go

    	return rv, rc, rn
    }
    
    func BpxFileFStat(fd int32, st *Bpxystat_t) (rv int32, rc int32, rn int32) {
    	st.St_id = [4]uint8{0xe2, 0xe3, 0xc1, 0xe3}
    	st.St_version = 2
    	stat_sz := uint32(unsafe.Sizeof(*st))
    	var parms [6]unsafe.Pointer
    	parms[0] = unsafe.Pointer(&fd)
    	parms[1] = unsafe.Pointer(&stat_sz)
    	parms[2] = unsafe.Pointer(st)
    	parms[3] = unsafe.Pointer(&rv)
    	parms[4] = unsafe.Pointer(&rc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. src/net/parse.go

    			f.atEOF = true
    		}
    	}
    	s, ok = f.getLineFromData()
    	return
    }
    
    func (f *file) stat() (mtime time.Time, size int64, err error) {
    	st, err := f.file.Stat()
    	if err != nil {
    		return time.Time{}, 0, err
    	}
    	return st.ModTime(), st.Size(), nil
    }
    
    func open(name string) (*file, error) {
    	fd, err := os.Open(name)
    	if err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. pkg/scheduler/schedule_one_test.go

    	nodes := []runtime.Object{
    		st.MakeNode().Name("node1").UID("node1").Obj(),
    		st.MakeNode().Name("node2").UID("node2").Obj(),
    		st.MakeNode().Name("node3").UID("node3").Obj(),
    	}
    	pods := []*v1.Pod{
    		st.MakePod().Name("pod1").UID("pod1").SchedulerName("match-node3").Obj(),
    		st.MakePod().Name("pod2").UID("pod2").SchedulerName("match-node2").Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  5. security/pkg/nodeagent/sds/sdsservice.go

    	sync.Mutex
    	watch *xds.WatchedResource
    }
    
    // newSDSService creates Secret Discovery Service which implements envoy SDS API.
    func newSDSService(st security.SecretManager, options *security.Options, pkpConf *mesh.PrivateKeyProvider) *sdsservice {
    	ret := &sdsservice{
    		st:      st,
    		stop:    make(chan struct{}),
    		pkpConf: pkpConf,
    		clients: make(map[string]*Context),
    	}
    
    	ret.rootCaPath = options.CARootPath
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 25 00:20:04 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. internal/grid/grid_test.go

    	if inCap > 0 {
    		go func() {
    			defer close(st.Requests)
    			if !blockReq {
    				<-nowBlocking
    				return
    			}
    			for {
    				select {
    				case <-nowBlocking:
    					return
    				case <-st.Done():
    				case st.Requests <- []byte{1}:
    					time.Sleep(10 * time.Millisecond)
    				}
    			}
    		}()
    	}
    	// Check that local returned.
    	err = st.Results(func(b []byte) error {
    		<-st.Done()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_host_send_device_context.cc

      status = stream_->RecordEvent(done_event_.get().get());
      if (!status.ok()) {
        done(status);
        return;
      }
      if (auto st = stream_->BlockHostUntilDone(); !st.ok()) {
        done_event_.SetError(absl::InternalError(absl::StrFormat(
            "failed to synchronize send operation with a stream: %s",
            st.ToString())));
        return;
      }
    
      done_event_.SetStateConcrete();
      done(absl::OkStatus());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. src/os/stat_wasip1.go

    		fs.mode |= ModeSocket
    	case syscall.FILETYPE_SYMBOLIC_LINK:
    		fs.mode |= ModeSymlink
    	}
    }
    
    // For testing.
    func atime(fi FileInfo) time.Time {
    	st := fi.Sys().(*syscall.Stat_t)
    	return time.Unix(0, int64(st.Atime))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 990 bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    func (st *http2stream) isPushed() bool {
    	return st.id%2 == 0
    }
    
    // endStream closes a Request.Body's pipe. It is called when a DATA
    // frame says a request body is over (or after trailers).
    func (st *http2stream) endStream() {
    	sc := st.sc
    	sc.serveG.check()
    
    	if st.declBodyBytes != -1 && st.declBodyBytes != st.bodyBytes {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. src/time/genzabbrs.go

    			// to avoid dups. I don't know why.
    			continue
    		}
    		l, err := time.LoadLocation(z.Type)
    		if err != nil {
    			return nil, err
    		}
    		st, dt := getAbbrs(l)
    		zs = append(zs, &zone{
    			WinName:  z.Other,
    			UnixName: z.Type,
    			StTime:   st,
    			DSTime:   dt,
    		})
    	}
    	return zs, nil
    }
    
    func main() {
    	flag.Parse()
    	zs, err := readWindowsZones()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top