Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of about 10,000 for Returns (0.14 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/apps/v1/statefulsetspec.go

    // apply.
    func StatefulSetSpec() *StatefulSetSpecApplyConfiguration {
    	return &StatefulSetSpecApplyConfiguration{}
    }
    
    // WithReplicas sets the Replicas 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 Nov 08 15:48:00 UTC 2022
    - 8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/errors/errors.go

    		return true
    	}
    	if _, ok := knownReasons[reason]; !ok && code == http.StatusGone {
    		return true
    	}
    	return false
    }
    
    // IsResourceExpired is true if the error indicates the resource has expired and the current action is
    // no longer possible.
    // It supports wrapped errors and returns false when the error is nil.
    func IsResourceExpired(err error) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 21 03:41:32 UTC 2022
    - 30.5K bytes
    - Viewed (0)
  3. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/ManifestMergeDetails.java

    public interface ManifestMergeDetails {
        /**
         * Returns the section this merge details belongs to.
         */
        String getSection();
    
        /**
         * Returns the key that is to be merged.
         */
        String getKey();
    
        /**
         * Returns the value for the key of the manifest that is the target of the merge.
         */
        String getBaseValue();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. operator/pkg/object/objects.go

    		// Must be the type from the schema.
    		return node.Node.(map[string]any)
    	}
    	return nil
    }
    
    // GroupVersionKind returns the GroupVersionKind for the K8sObject
    func (o *K8sObject) GroupVersionKind() schema.GroupVersionKind {
    	return o.object.GroupVersionKind()
    }
    
    // Version returns the APIVersion of the K8sObject
    func (o *K8sObject) Version() string {
    	return o.object.GetAPIVersion()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 15.5K bytes
    - Viewed (1)
  5. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/tasks/testing/TestResult.java

         * Returns the time when this test completed execution.
         *
         * @return The end t ime, in milliseconds since the epoch.
         */
        long getEndTime();
    
        /**
         * Returns the total number of atomic tests executed for this test. This will return 1 if this test is itself an
         * atomic test.
         *
         * @return The number of tests, possibly 0
         */
        long getTestCount();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_cluster_util.h

    // Returns true if `g` is a single-GPU graph.  A single-GPU graph uses exactly
    // one GPU (and any number of CPUs).
    bool IsSingleGpuGraph(const Graph& g);
    
    // Returns true if it is possible (but not guaranteed) that `n` calls a
    // function.
    bool MayCallFunction(const Node& n, const FunctionLibraryDefinition* flib_def);
    
    // Returns true if `node` an operator that consumes only the shape of its input,
    // not the data itself.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/LenientConfiguration.java

    public interface LenientConfiguration {
        /**
         * Returns successfully resolved direct dependencies.
         *
         * @return only resolved dependencies
         * @since 3.3
         */
        Set<ResolvedDependency> getFirstLevelModuleDependencies();
    
        /**
         * Returns successfully resolved dependencies that match the given spec.
         *
         * @param dependencySpec dependency spec
         * @return only resolved dependencies
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. 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
    - 19.6K bytes
    - Viewed (0)
  9. src/strings/strings.go

    		return last
    	}
    	for i := last - 1; i >= 0; i-- {
    		h *= bytealg.PrimeRK
    		h += uint32(s[i])
    		h -= pow * uint32(s[i+n])
    		if h == hashss && s[i:i+n] == substr {
    			return i
    		}
    	}
    	return -1
    }
    
    // IndexByte returns the index of the first instance of c in s, or -1 if c is not present in s.
    func IndexByte(s string, c byte) int {
    	return stringslite.IndexByte(s, c)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta2/scale.go

    	return b
    }
    
    // WithNamespace sets the Namespace field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Namespace field is set to the value of the last call.
    func (b *ScaleApplyConfiguration) WithNamespace(value string) *ScaleApplyConfiguration {
    	b.ensureObjectMetaApplyConfigurationExists()
    	b.Namespace = &value
    	return b
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 9.8K bytes
    - Viewed (0)
Back to top