Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of about 10,000 for Returns (0.33 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/ephemeralcontainercommon.go

    // apply.
    func EphemeralContainerCommon() *EphemeralContainerCommonApplyConfiguration {
    	return &EphemeralContainerCommonApplyConfiguration{}
    }
    
    // WithName sets the Name field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/reflect/Invokable.java

      }
    
      /** Returns true if the element is package-private. */
      public final boolean isPackagePrivate() {
        return !isPrivate() && !isPublic() && !isProtected();
      }
    
      /** Returns true if the element is private. */
      public final boolean isPrivate() {
        return Modifier.isPrivate(getModifiers());
      }
    
      /** Returns true if the element is static. */
      public final boolean isStatic() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 14 20:35:03 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/graph/ValueGraph.java

      //
      // ValueGraph-level accessors
      //
    
      /** Returns all nodes in this graph, in the order specified by {@link #nodeOrder()}. */
      @Override
      Set<N> nodes();
    
      /** Returns all edges in this graph. */
      @Override
      Set<EndpointPair<N>> edges();
    
      /**
       * Returns a live view of this graph as a {@link Graph}. The resulting {@link Graph} will have an
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/endpoint.go

    	// if host is a valid IP, returns it
    	if ip := netutils.ParseIPSloppy(host); ip != nil {
    		return host, port, nil
    	}
    
    	// if host is a validate RFC-1123 subdomain, returns it
    	if errs := validation.IsDNS1123Subdomain(host); len(errs) == 0 {
    		return host, port, nil
    	}
    
    	return "", "", errors.Errorf("hostport %s: host '%s' must be a valid IP address or a valid RFC-1123 DNS subdomain", hostport, host)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 11 15:08:59 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/apps/v1/statefulsetstatus.go

    // apply.
    func StatefulSetStatus() *StatefulSetStatusApplyConfiguration {
    	return &StatefulSetStatusApplyConfiguration{}
    }
    
    // WithObservedGeneration sets the ObservedGeneration field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 25 23:59:58 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/MethodDescriptionTest.groovy

            MethodDescription.name("a").returns(String).toString() == "java.lang.String a"
            MethodDescription.name("a").returns(String).takes().toString() == "java.lang.String a()"
            MethodDescription.name("a").returns(String).owner(String).takes().toString() == "java.lang.String java.lang.String#a()"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/sumdb/cache.go

    		}
    		e.mu.Unlock()
    	}
    	return e.result
    }
    
    // Get returns the cached result associated with key.
    // It returns nil if there is no such result.
    // If the result for key is being computed, Get does not wait for the computation to finish.
    func (c *parCache) Get(key interface{}) interface{} {
    	entryIface, ok := c.m.Load(key)
    	if !ok {
    		return nil
    	}
    	e := entryIface.(*cacheEntry)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 29 20:10:15 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ArtifactIdentifier.java

     */
    @Deprecated
    public interface ArtifactIdentifier {
        /**
         * Returns the identifier of the module that owns this artifact.
         */
        ModuleVersionIdentifier getModuleVersionIdentifier();
    
        /**
         * Returns the name of this artifact.
         */
        String getName();
    
        /**
         * Returns the type of this artifact. Often the type is the same as the extension,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 22:04:14 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. pkg/util/removeall/removeall.go

    	if err != nil {
    		return err
    	}
    	if !isNotMount {
    		return fmt.Errorf("cannot delete directory %s: it is a mount point", path)
    	}
    
    	fd, err := os.Open(path)
    	if err != nil {
    		if os.IsNotExist(err) {
    			// Race. It was deleted between the Lstat and Open.
    			// Return nil per RemoveAll's docs.
    			return nil
    		}
    		return err
    	}
    
    	// Remove contents & return first error.
    	err = nil
    	for {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 15 16:41:02 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/Dependency.java

         * a repository. Never returns null.
         */
        String getName();
    
        /**
         * Returns the version of this dependency. The version is often required to find the artifacts of a dependency in a
         * repository. For example the version name corresponds to a directory name in a Maven like repository. Might return
         * null.
         *
         */
        @Nullable
        String getVersion();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 2.9K bytes
    - Viewed (0)
Back to top