Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,844 for Preferences (0.12 sec)

  1. pkg/scheduler/framework/plugins/interpodaffinity/scoring.go

    	hasConstraints := hasPreferredAffinityConstraints || hasPreferredAntiAffinityConstraints
    
    	// Optionally ignore calculating preferences of existing pods' affinity rules
    	// if the incoming pod has no inter-pod affinities.
    	if pl.args.IgnorePreferredTermsOfExistingPods && !hasConstraints {
    		return framework.NewStatus(framework.Skip)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/token_test.go

        server: localhost:8000
      name: prod
    contexts:
    - context:
        cluster: prod
        namespace: default
        user: default-service-account
      name: default
    current-context: default
    kind: Config
    preferences: {}
    users:
    - name: kubernetes-admin
      user:
        client-certificate-data:
        client-key-data:
    `
    )
    
    func TestRunGenerateToken(t *testing.T) {
    	var buf bytes.Buffer
    
    	err := RunGenerateToken(&buf)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_test.go

    	"testing"
    	"time"
    )
    
    // TLS reference tests run a connection against a reference implementation
    // (OpenSSL) of TLS and record the bytes of the resulting connection. The Go
    // code, during a test, is configured with deterministic randomness and so the
    // reference test can be reproduced exactly in the future.
    //
    // In order to save everyone who wishes to run the tests from needing the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    diagnostics. Instead, we expect that drivers will allow the user to
    customize the filtering and prioritization of diagnostics based on the
    producing Analyzer and optional Category, according to the user's
    preferences.
    
    Most Analyzers inspect typed Go syntax trees, but a few, such as asmdecl
    and buildtag, inspect the raw text of Go source files or even non-Go
    files such as assembly. To report a diagnostic against a line of a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    Some IDEs provide a convenience option to delegate the "test classpath generation and execution" to the build.
    In IntelliJ, you can find this option under Preferences... > Build, Execution, Deployment > Build Tools > Gradle > Runner > Delegate IDE build/run actions to Gradle.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. CONTRIBUTING.md

    IntelliJ automatically hides stacktrace elements from the `org.gradle` package, which makes running/debugging tests more difficult. You can disable this behavior by changing IntelliJ Preferences under Editor -> General -> Console. In the "Fold lines that contain" section, remove the `org.gradle` entry.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    - explained that this variant is a substitute for the runtime
    - explained that the consumer needs this variant _only for test runtime_
    
    Gradle therefore offers a powerful mechanism to select the right variants based on preferences and compatibility.
    More details can be found in the <<variant_attributes.adoc#variant_attributes, variant aware plugins section of the documentation>>.
    
    [WARNING]
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher.go

    	drainInputBuffer bool
    
    	// bookmarkAfterResourceVersion holds an RV that indicates
    	// when we should start delivering bookmark events.
    	// If this field holds the value of 0 that means
    	// we don't have any special preferences toward delivering bookmark events.
    	// Note that this field is used in conjunction with the state field.
    	// It should not be changed once the watcher has been started.
    	bookmarkAfterResourceVersion uint64
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 12:22:41 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  9. src/crypto/tls/cipher_suites.go

    // server) or advertise (on the client) TLS 1.0–1.2 cipher suites.
    //
    // Cipher suites are filtered but not reordered based on the application and
    // peer's preferences, meaning we'll never select a suite lower in this list if
    // any higher one is available. This makes it more defensible to keep weaker
    // cipher suites enabled, especially on the server side where we get the last
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher.go

    // need to track the actual RV because
    // we only send the bookmark event
    // after the initial list call.
    //
    // when this variable is set to false,
    // it means we don't have any specific
    // preferences for delivering bookmark events.
    func (wc *watchChan) startWatching(watchClosedCh chan struct{}, initialEventsEndBookmarkRequired, forceInitialEvents bool) {
    	if wc.initialRev > 0 && forceInitialEvents {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 10:26:38 UTC 2023
    - 18.9K bytes
    - Viewed (0)
Back to top