Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of about 10,000 for Returns (0.22 sec)

  1. src/os/proc.go

    // Getgid returns the numeric group id of the caller.
    //
    // On Windows, it returns -1.
    func Getgid() int { return syscall.Getgid() }
    
    // Getegid returns the numeric effective group id of the caller.
    //
    // On Windows, it returns -1.
    func Getegid() int { return syscall.Getegid() }
    
    // Getgroups returns a list of the numeric ids of groups that the caller belongs to.
    //
    // On Windows, it returns [syscall.EWINDOWS]. See the [os/user] package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/sets/byte.go

    // UnsortedList returns the slice with contents in random order.
    func (s Byte) UnsortedList() []byte {
    	return cast(s).UnsortedList()
    }
    
    // PopAny returns a single element from the set.
    func (s Byte) PopAny() (byte, bool) {
    	return cast(s).PopAny()
    }
    
    // Len returns the size of the set.
    func (s Byte) Len() int {
    	return len(s)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/sets/int64.go

    func (s1 Int64) Equal(s2 Int64) bool {
    	return cast(s1).Equal(cast(s2))
    }
    
    // List returns the contents as a sorted int64 slice.
    func (s Int64) List() []int64 {
    	return List(cast(s))
    }
    
    // UnsortedList returns the slice with contents in random order.
    func (s Int64) UnsortedList() []int64 {
    	return cast(s).UnsortedList()
    }
    
    // PopAny returns a single element from the set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/sets/string.go

    	return cast(s).HasAll(items...)
    }
    
    // HasAny returns true if any items are contained in the set.
    func (s String) HasAny(items ...string) bool {
    	return cast(s).HasAny(items...)
    }
    
    // Clone returns a new set which is a copy of the current set.
    func (s String) Clone() String {
    	return String(cast(s).Clone())
    }
    
    // Difference returns a set of objects that are not in s2.
    // For example:
    // s1 = {a1, a2, a3}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/sets/int32.go

    func (s1 Int32) Equal(s2 Int32) bool {
    	return cast(s1).Equal(cast(s2))
    }
    
    // List returns the contents as a sorted int32 slice.
    func (s Int32) List() []int32 {
    	return List(cast(s))
    }
    
    // UnsortedList returns the slice with contents in random order.
    func (s Int32) UnsortedList() []int32 {
    	return cast(s).UnsortedList()
    }
    
    // PopAny returns a single element from the set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  6. pkg/proxy/util/localdetector.go

    	return len(d.ifLocal) > 0
    }
    
    func (d *detectLocal) IfLocal() []string {
    	return d.ifLocal
    }
    
    func (d *detectLocal) IfNotLocal() []string {
    	return d.ifNotLocal
    }
    
    func (d *detectLocal) IfLocalNFT() []string {
    	return d.ifLocalNFT
    }
    
    func (d *detectLocal) IfNotLocalNFT() []string {
    	return d.ifNotLocalNFT
    }
    
    // NewNoOpLocalDetector returns a no-op implementation of LocalTrafficDetector.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 15:34:37 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/jvm/toolchain/internal/operations/JavaToolchainUsageProgressDetails.java

             */
            String getJavaVendor();
    
            /**
             * Returns Java runtime name such as {@code OpenJDK Runtime Environment}.
             */
            String getRuntimeName();
    
            /**
             * Returns Java runtime version such as {@code 17.0.3.1+2-LTS}.
             */
            String getRuntimeVersion();
    
            /**
             * Returns Java VM name such as {@code OpenJDK 64-Bit Server VM}.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/container_manager.go

    	// Returns a noop implementation if qos cgroup hierarchy is not enabled
    	NewPodContainerManager() PodContainerManager
    
    	// GetMountedSubsystems returns the mounted cgroup subsystems on the node
    	GetMountedSubsystems() *CgroupSubsystems
    
    	// GetQOSContainersInfo returns the names of top level QoS containers
    	GetQOSContainersInfo() QOSContainersInfo
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

      // FilePath("dir/file"). If a case-insensitive extension is not
      // found, returns a copy of the original FilePath.
      FilePath RemoveExtension(const char* extension) const;
    
      // Creates directories so that path exists. Returns true if successful or if
      // the directories already exist; returns false if unable to create
      // directories for any reason. Will also return false if the FilePath does
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  10. src/sync/atomic/type.go

    	return CompareAndSwapInt64(&x.v, old, new)
    }
    
    // Add atomically adds delta to x and returns the new value.
    func (x *Int64) Add(delta int64) (new int64) { return AddInt64(&x.v, delta) }
    
    // And atomically performs a bitwise AND operation on x using the bitmask
    // provided as mask and returns the old value.
    func (x *Int64) And(mask int64) (old int64) { return AndInt64(&x.v, mask) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top