Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 4,862 for sresource (0.28 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/util/internal/Resources.java

            assertNotNull(declaringTestClass);
            URL resource = declaringTestClass.getResource(name);
            if (resource == null) {
                return null;
            }
    
            try {
                switch (resource.getProtocol()) {
                    case "jar":
                            return fromWithinJar(resource);
                    case "file":
                        return fromFile(resource);
                    default:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. pkg/kubeapiserver/admission/exclusion/resources.go

    	{Group: "", Resource: "pods/binding"},
    	{Group: "", Resource: "pods/eviction"},
    	{Group: "", Resource: "pods/exec"},
    	{Group: "", Resource: "pods/portforward"},
    
    	// ref: https://github.com/kubernetes/kubernetes/issues/122205#issuecomment-1927390823
    	{Group: "", Resource: "serviceaccounts/token"},
    }
    
    // excluded is the list of resources that the expression-based admission controllers
    // should ignore.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 23:31:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. src/internal/trace/resources.go

    type StateTransition struct {
    	// Resource is the resource this state transition is for.
    	Resource ResourceID
    
    	// Reason is a human-readable reason for the state transition.
    	Reason string
    
    	// Stack is the stack trace of the resource making the state transition.
    	//
    	// This is distinct from the result (Event).Stack because it pertains to
    	// the transitioning resource, not any of the ones executing the event
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java/sourceSets/groovy/src/intTest/resources/resource.txt

    some resource...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 14 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/quota/v1/resources.go

    }
    
    // IsNegative returns the set of resource names that have a negative value.
    func IsNegative(a corev1.ResourceList) []corev1.ResourceName {
    	results := []corev1.ResourceName{}
    	zero := resource.MustParse("0")
    	for k, v := range a {
    		if v.Cmp(zero) < 0 {
    			results = append(results, k)
    		}
    	}
    	return results
    }
    
    // ToSet takes a list of resource names and converts to a string set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 06 23:11:22 UTC 2021
    - 8.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/io/Resources.java

       * this class ({@code Resources}) will be used instead.
       *
       * @throws IllegalArgumentException if the resource is not found
       */
      @CanIgnoreReturnValue // being used to check if a resource exists
      // TODO(cgdecker): maybe add a better way to check if a resource exists
      // e.g. Optional<URL> tryGetResource or boolean resourceExists
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  7. pkg/config/analysis/legacy/util/kuberesource/resources.go

    package kuberesource
    
    import (
    	"fmt"
    
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/schema/collection"
    	"istio.io/istio/pkg/config/schema/collections"
    	"istio.io/istio/pkg/config/schema/resource"
    )
    
    func ConvertInputsToSchemas(inputs []config.GroupVersionKind) collection.Schemas {
    	resultBuilder := collection.NewSchemasBuilder()
    	for _, gv := range inputs {
    		s, f := collections.All.FindByGroupVersionKind(gv)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/io/Resources.java

       * this class ({@code Resources}) will be used instead.
       *
       * @throws IllegalArgumentException if the resource is not found
       */
      @CanIgnoreReturnValue // being used to check if a resource exists
      // TODO(cgdecker): maybe add a better way to check if a resource exists
      // e.g. Optional<URL> tryGetResource or boolean resourceExists
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  9. pkg/scheduler/metrics/resources/resources.go

    // reports the current resources requested by all pods on the cluster within
    // the Kubernetes resource model. Metrics are broken down by pod, node, resource,
    // and phase of lifecycle. Each pod returns two series per resource - one for
    // their aggregate usage (required to schedule) and one for their phase specific
    // usage. This allows admins to assess the cost per resource at different phases
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 23:15:53 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/compile_mlir_util/graph-resource.mlir

    module attributes {tf.versions = {producer = 511 : i32}} {
      func.func @main(%arg0: tensor<*xf32>, %arg1: tensor<*x!tf_type.resource>) {
        tf_executor.graph {
          %control = tf_executor.island wraps "tf.AssignVariableOp"(%arg1, %arg0) : (tensor<*x!tf_type.resource>, tensor<*xf32>) -> ()
          tf_executor.fetch %control : !tf_executor.control
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 1.3K bytes
    - Viewed (0)
Back to top