Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for Returns (0.16 sec)

  1. pkg/kubelet/server/stats/handler.go

    	//
    	// GetPodByName returns the spec of the pod with the name in the specified
    	// namespace.
    	GetPodByName(namespace, name string) (*v1.Pod, bool)
    	// GetNode returns the spec of the local node.
    	GetNode() (*v1.Node, error)
    	// GetNodeConfig returns the configuration of the local node.
    	GetNodeConfig() cm.NodeConfig
    	// ListVolumesForPod returns the stats of the volume used by the pod with
    	// the podUID.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 21:31:38 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/primitives/UnsignedInteger.java

      /**
       * Returns the result of subtracting this and {@code val}. If the result would be negative,
       * returns the low 32 bits of the result.
       *
       * @since 14.0
       */
      public UnsignedInteger minus(UnsignedInteger val) {
        return fromIntBits(value - checkNotNull(val).value);
      }
    
      /**
       * Returns the result of multiplying this and {@code val}. If the result would have more than 32
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 18:45:50 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/primitives/UnsignedInteger.java

      /**
       * Returns the result of subtracting this and {@code val}. If the result would be negative,
       * returns the low 32 bits of the result.
       *
       * @since 14.0
       */
      public UnsignedInteger minus(UnsignedInteger val) {
        return fromIntBits(value - checkNotNull(val).value);
      }
    
      /**
       * Returns the result of multiplying this and {@code val}. If the result would have more than 32
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 18:45:50 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. pkg/test/framework/components/cluster/clusters.go

    	if cluster != nil {
    		return cluster
    	}
    	return c.Default()
    }
    
    // GetByName returns the Cluster with the given name or nil if it is not in the list.
    func (c Clusters) GetByName(name string) Cluster {
    	for _, cc := range c {
    		if cc.Name() == name {
    			return cc
    		}
    	}
    	return nil
    }
    
    // Contains returns true if a cluster with the given name is found in the list.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/file/FileCopyDetails.java

         *
         * @return The path, relative to the root of the copy destination. Never returns null.
         */
        @Override
        String getPath();
    
        /**
         * Returns the path of this file, relative to the root of the copy destination.
         *
         * @return The path, relative to the root of the copy destination. Never returns null.
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/project/IsolatedProject.java

         *
         * @return The project directory. Never returns null.
         * @since 8.8
         */
        Directory getProjectDirectory();
    
        /**
         * <p>Returns the root project for the hierarchy that this project belongs to.  In the case of a single-project
         * build, this method returns this project.</p>
         *
         * @return The root project. Never returns null.
         * @since 8.8
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 18:34:13 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/file/FileTreeElement.java

         *
         * @return The path. Never returns null.
         */
        String getPath();
    
        /**
         * Returns the path of this file, relative to the root of the containing file tree.
         *
         * @return The path. Never returns null.
         */
        RelativePath getRelativePath();
    
        /**
         * Returns the UNIX-style file permission mode of this file.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:43:13 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. src/os/dir.go

    //
    // If n > 0, ReadDir returns at most n DirEntry records.
    // In this case, if ReadDir returns an empty slice, it will return an error explaining why.
    // At the end of a directory, the error is [io.EOF].
    //
    // If n <= 0, ReadDir returns all the DirEntry records remaining in the directory.
    // When it succeeds, it returns a nil error (not io.EOF).
    func (f *File) ReadDir(n int) ([]DirEntry, error) {
    	if f == nil {
    		return nil, ErrInvalid
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. src/net/interface_stub.go

    //go:build js || wasip1
    
    package net
    
    // If the ifindex is zero, interfaceTable returns mappings of all
    // network interfaces. Otherwise it returns a mapping of a specific
    // interface.
    func interfaceTable(ifindex int) ([]Interface, error) {
    	return nil, nil
    }
    
    // If the ifi is nil, interfaceAddrTable returns addresses for all
    // network interfaces. Otherwise it returns addresses for a specific
    // interface.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 814 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/op_or_arg_name_mapper.h

      // Returns true if the name is unique. A derived class can override it if the
      // class maintains uniqueness in a different scope.
      virtual bool IsUnique(llvm::StringRef name);
    
      // Returns a constant view of the underlying map.
      const llvm::DenseMap<OpOrVal, absl::string_view>& GetMap() const {
        return op_or_val_to_name_;
      }
    
      // Returns the separator used before uniqueing suffix.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 22:54:55 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top