Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,571 for excluding (0.32 sec)

  1. src/cmd/vendor/golang.org/x/sync/semaphore/semaphore.go

    			//
    			// Consider a semaphore used as a read-write lock, with N tokens, N
    			// readers, and one writer.  Each reader can Acquire(1) to obtain a read
    			// lock.  The writer can Acquire(N) to obtain a write lock, excluding all
    			// of the readers.  If we allow the readers to jump ahead in the queue,
    			// the writer will starve — there is always one token available for every
    			// reader.
    			break
    		}
    
    		s.cur += w.n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. hack/verify-shellcheck.sh

    SHELLCHECK_DISABLED="$(join_by , "${disabled[@]}")"
    readonly SHELLCHECK_DISABLED
    
    # ensure we're linting the k8s source tree
    cd "${KUBE_ROOT}"
    
    scripts_to_check=("$@")
    if [[ "$#" == 0 ]]; then
      # Find all shell scripts excluding:
      # - Anything git-ignored - No need to lint untracked files.
      # - ./_* - No need to lint output directories.
      # - ./.git/* - Ignore anything in the git object store.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:05 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/node/v1beta1/generated.proto

      // with a pod's existing nodeSelector. Any conflicts will cause the pod to
      // be rejected in admission.
      // +optional
      // +mapType=atomic
      map<string, string> nodeSelector = 1;
    
      // tolerations are appended (excluding duplicates) to pods running with this
      // RuntimeClass during admission, effectively unioning the set of nodes
      // tolerated by the pod and the RuntimeClass.
      // +optional
      // +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/node/v1beta1/generated.proto

      // with a pod's existing nodeSelector. Any conflicts will cause the pod to
      // be rejected in admission.
      // +optional
      // +mapType=atomic
      map<string, string> nodeSelector = 1;
    
      // tolerations are appended (excluding duplicates) to pods running with this
      // RuntimeClass during admission, effectively unioning the set of nodes
      // tolerated by the pod and the RuntimeClass.
      // +optional
      // +listType=atomic
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/node/v1alpha1/generated.proto

      // be rejected in admission.
      // +optional
      // +mapType=atomic
      map<string, string> nodeSelector = 1;
    
      // tolerations are appended (excluding duplicates) to pods running with this
      // RuntimeClass during admission, effectively unioning the set of nodes
      // tolerated by the pod and the RuntimeClass.
      // +optional
      // +listType=atomic
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/TestFilter.java

     *          includeTestsMatching "*IntegTest*ui"
     *
     *          //exclude a specific test by its name
     *          excludeTestsMatching "*canDoSomethingSpecific"
     *          //excluding tests by name also works for test names which have spaces
     *          excludeTestsMatching "*can do something specific"
     *       }
     *   }
     *
     * </pre>
     *
     * @since 1.10
     */
    public interface TestFilter {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/node/v1beta1/types.go

    	// be rejected in admission.
    	// +optional
    	// +mapType=atomic
    	NodeSelector map[string]string `json:"nodeSelector,omitempty" protobuf:"bytes,1,opt,name=nodeSelector"`
    
    	// tolerations are appended (excluding duplicates) to pods running with this
    	// RuntimeClass during admission, effectively unioning the set of nodes
    	// tolerated by the pod and the RuntimeClass.
    	// +optional
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 08:59:25 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/node/v1alpha1/generated.proto

      // be rejected in admission.
      // +optional
      // +mapType=atomic
      map<string, string> nodeSelector = 1;
    
      // tolerations are appended (excluding duplicates) to pods running with this
      // RuntimeClass during admission, effectively unioning the set of nodes
      // tolerated by the pod and the RuntimeClass.
      // +optional
      // +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/node/v1alpha1/types_swagger_doc_generated.go

    	"tolerations":  "tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission, effectively unioning the set of nodes tolerated by the pod and the RuntimeClass.",
    }
    
    func (Scheduling) SwaggerDoc() map[string]string {
    	return map_Scheduling
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. pkg/kubelet/metrics/metrics.go

    			Buckets:        podStartupDurationBuckets,
    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    	// PodStartSLIDuration is a Histogram that tracks the duration (in seconds) it takes for a single pod to run,
    	// excluding the time for image pulling. This metric should reflect the "Pod startup latency SLI" definition
    	// ref: https://github.com/kubernetes/community/blob/master/sig-scalability/slos/pod_startup_latency.md
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
Back to top