Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 441 for returns_ (0.31 sec)

  1. pkg/proxy/winkernel/proxier.go

    func (info *endpointInfo) IsServing() bool {
    	return info.serving
    }
    
    // IsTerminating returns true if an endpoint is terminating.
    func (info *endpointInfo) IsTerminating() bool {
    	return info.terminating
    }
    
    // ZoneHints returns the zone hints for the endpoint.
    func (info *endpointInfo) ZoneHints() sets.Set[string] {
    	return sets.Set[string]{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  2. src/runtime/mprof.go

    }
    
    // InUseBytes returns the number of bytes in use (AllocBytes - FreeBytes).
    func (r *MemProfileRecord) InUseBytes() int64 { return r.AllocBytes - r.FreeBytes }
    
    // InUseObjects returns the number of objects in use (AllocObjects - FreeObjects).
    func (r *MemProfileRecord) InUseObjects() int64 {
    	return r.AllocObjects - r.FreeObjects
    }
    
    // Stack returns the stack trace associated with the record,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. configure.py

      pass
    
    
    def is_windows():
      return platform.system() == 'Windows'
    
    
    def is_linux():
      return platform.system() == 'Linux'
    
    
    def is_macos():
      return platform.system() == 'Darwin'
    
    
    def is_ppc64le():
      return platform.machine() == 'ppc64le'
    
    
    def is_s390x():
      return platform.machine() == 's390x'
    
    
    def is_cygwin():
      return platform.system().startswith('CYGWIN_NT')
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		return func() uint64 { return 0 }, nil
    	}
    
    	switch {
    	case len(opts.ResourceVersion) == 0:
    		return func() uint64 { return requiredResourceVersion }, nil
    	case parsedResourceVersion == 0:
    		// here we assume that watchCache locked is already held
    		return func() uint64 { return c.watchCache.resourceVersion }, nil
    	default:
    		return func() uint64 { return parsedResourceVersion }, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. src/go/build/build.go

    		return &p.HFiles
    	case ".f", ".F", ".for", ".f90":
    		return &p.FFiles
    	case ".s", ".S", ".sx":
    		return &p.SFiles
    	case ".swig":
    		return &p.SwigFiles
    	case ".swigcxx":
    		return &p.SwigCXXFiles
    	case ".syso":
    		return &p.SysoFiles
    	}
    	return nil
    }
    
    func uniq(list []string) []string {
    	if list == nil {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      int total_test_count() const;
    
      // Returns true iff the test case passed.
      bool Passed() const { return !Failed(); }
    
      // Returns true iff the test case failed.
      bool Failed() const { return failed_test_count() > 0; }
    
      // Returns the elapsed time, in milliseconds.
      TimeInMillis elapsed_time() const { return elapsed_time_; }
    
      // Returns the i-th test among all the tests. i can range from 0 to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  7. pkg/kubelet/pod_workers.go

    func (s *podSyncStatus) IsDeleted() bool              { return s.deleted }
    func (s *podSyncStatus) IsStarted() bool              { return !s.startedAt.IsZero() }
    
    // WorkType returns this pods' current state of the pod in pod lifecycle state machine.
    func (s *podSyncStatus) WorkType() PodWorkerState {
    	if s.IsTerminated() {
    		return TerminatedPod
    	}
    	if s.IsTerminationRequested() {
    		return TerminatingPod
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    func Chown(path string, uid int, gid int) (err error)  { return syscall.EWINDOWS }
    func Lchown(path string, uid int, gid int) (err error) { return syscall.EWINDOWS }
    func Fchown(fd Handle, uid int, gid int) (err error)   { return syscall.EWINDOWS }
    
    func Getuid() (uid int)                  { return -1 }
    func Geteuid() (euid int)                { return -1 }
    func Getgid() (gid int)                  { return -1 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      int total_test_count() const;
    
      // Returns true iff the test case passed.
      bool Passed() const { return !Failed(); }
    
      // Returns true iff the test case failed.
      bool Failed() const { return failed_test_count() > 0; }
    
      // Returns the elapsed time, in milliseconds.
      TimeInMillis elapsed_time() const { return elapsed_time_; }
    
      // Returns the i-th test among all the tests. i can range from 0 to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  10. src/time/format.go

    			if c1 != c2 || c1 < 'a' || c1 > 'z' {
    				return false
    			}
    		}
    	}
    	return true
    }
    
    func lookup(tab []string, val string) (int, string, error) {
    	for i, v := range tab {
    		if len(val) >= len(v) && match(val[0:len(v)], v) {
    			return i, val[len(v):], nil
    		}
    	}
    	return -1, val, errBad
    }
    
    // appendInt appends the decimal form of x to b and returns the result.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
Back to top