Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 49 of 49 for stwat (0.06 sec)

  1. pilot/pkg/networking/core/listener.go

    type httpListenerOpts struct {
    	routeConfig *route.RouteConfiguration
    	rds         string
    	// If set, use this as a basis
    	connectionManager *hcm.HttpConnectionManager
    	// stat prefix for the http connection manager
    	// DO not set this field. Will be overridden by buildCompleteFilterChain
    	statPrefix       string
    	protocol         protocol.Instance
    	useRemoteAddress bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. src/time/time_test.go

    		t.Errorf("14th weekday = %q; want %q", got, want)
    	}
    }
    
    func TestReadFileLimit(t *testing.T) {
    	const zero = "/dev/zero"
    	if _, err := os.Stat(zero); err != nil {
    		t.Skip("skipping test without a /dev/zero")
    	}
    	_, err := ReadFile(zero)
    	if err == nil || !strings.Contains(err.Error(), "is too large") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. cmd/xl-storage-format-v2.go

    	switch j.Type {
    	case ObjectType:
    		return time.Unix(0, j.ObjectV2.ModTime)
    	case DeleteType:
    		return time.Unix(0, j.DeleteMarker.ModTime)
    	case LegacyType:
    		return j.ObjectV1.Stat.ModTime
    	}
    	return time.Time{}
    }
    
    // getVersionID will return the versionID of the underlying version.
    func (j xlMetaV2Version) getVersionID() [16]byte {
    	switch j.Type {
    	case ObjectType:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. src/runtime/mgc.go

    	// these two may keep accumulating even if the GC is not active.
    	scavenge.assistTime.Store(0)
    	scavenge.backgroundTime.Store(0)
    
    	// Reset idle time stat.
    	sched.idleTime.Store(0)
    
    	if work.userForced {
    		memstats.numforcedgc++
    	}
    
    	// Bump GC cycle count and wake goroutines waiting on sweep.
    	lock(&work.sweepWaiters.lock)
    	memstats.numgc++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modget/get.go

    		if strings.HasSuffix(q.raw, ".go") && q.rawVersion == "" {
    			if !strings.Contains(q.raw, "/") {
    				base.Errorf("go: %s: arguments must be package or module paths", q.raw)
    				continue
    			}
    			if fi, err := os.Stat(q.raw); err == nil && !fi.IsDir() {
    				base.Errorf("go: %s exists as a file, but 'go get' requires package arguments", q.raw)
    				continue
    			}
    		}
    
    		queries = append(queries, q)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    //sys	signalfd(fd int, sigmask *Sigset_t, maskSize uintptr, flags int) (newfd int, err error) = SYS_SIGNALFD4
    //sys	Statx(dirfd int, path string, flags int, mask int, stat *Statx_t) (err error)
    //sys	Sync()
    //sys	Syncfs(fd int) (err error)
    //sysnb	Sysinfo(info *Sysinfo_t) (err error)
    //sys	Tee(rfd int, wfd int, len int, flags int) (n int64, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  7. src/testing/testing.go

    	// created by a test, each numbered sequentially.
    	c.tempDirMu.Lock()
    	var nonExistent bool
    	if c.tempDir == "" { // Usually the case with js/wasm
    		nonExistent = true
    	} else {
    		_, err := os.Stat(c.tempDir)
    		nonExistent = os.IsNotExist(err)
    		if err != nil && !nonExistent {
    			c.Fatalf("TempDir: %v", err)
    		}
    	}
    
    	if nonExistent {
    		c.Helper()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. src/runtime/mheap.go

    	})
    	return s
    }
    
    // allocManual allocates a manually-managed span of npage pages.
    // allocManual returns nil if allocation fails.
    //
    // allocManual adds the bytes used to *stat, which should be a
    // memstats in-use field. Unlike allocations in the GC'd heap, the
    // allocation does *not* count toward heapInUse.
    //
    // The memory backing the returned span may not be zeroed if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader.go

    func (l *Loader) Errorf(s Sym, format string, args ...interface{}) {
    	l.errorReporter.Errorf(s, format, args...)
    }
    
    // Symbol statistics.
    func (l *Loader) Stat() string {
    	s := fmt.Sprintf("%d symbols, %d reachable\n", l.NSym(), l.NReachableSym())
    	s += fmt.Sprintf("\t%d package symbols, %d hashed symbols, %d non-package symbols, %d external symbols\n",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top