Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,253 for Preference (0.29 sec)

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

    // with apply.
    type PreferredSchedulingTermApplyConfiguration struct {
    	Weight     *int32                              `json:"weight,omitempty"`
    	Preference *NodeSelectorTermApplyConfiguration `json:"preference,omitempty"`
    }
    
    // PreferredSchedulingTermApplyConfiguration constructs an declarative configuration of the PreferredSchedulingTerm type for use with
    // apply.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  2. pkg/scheduler/apis/config/testing/defaults/defaults.go

    			// Weight is tripled because:
    			// - This is a score coming from user preference.
    			// - Usage of node tainting to group nodes in the cluster is increasing becoming a use-case
    			// for many user workloads
    			{Name: names.TaintToleration, Weight: 3},
    			// Weight is doubled because:
    			// - This is a score coming from user preference.
    			{Name: names.NodeAffinity, Weight: 2},
    			{Name: names.NodeResourcesFit, Weight: 1},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/storage/resource_config.go

    	}
    }
    
    // DisableVersions disables the versions entirely.
    // This will remove any preferences previously set on individual resources.
    func (o *ResourceConfig) DisableVersions(versions ...schema.GroupVersion) {
    	for _, version := range versions {
    		o.GroupVersionConfigs[version] = false
    
    		// a preference about a version takes priority over the previously set resources
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 18:36:33 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/IvyArtifactRepositoryMetaDataProvider.java

         * is used in preference to the {@code rev} attribute. When disabled (the default), the {@code rev} attribute is always used.
         */
        boolean isDynamicMode();
    
        /**
         * Specifies whether dynamic resolve mode should be used for Ivy modules. When enabled, the {@code revConstraint} attribute for each dependency declaration
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:54 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  5. .editorconfig

    # EditorConfig helps developers define and maintain consistent
    # coding styles between different editors and IDEs
    # editorconfig.org
    
    root = true
    
    [*]
    # Change these settings to your own preference
    indent_style = space
    indent_size = 4
    
    # We recommend you to keep these unchanged
    end_of_line = lf
    charset = utf-8
    trim_trailing_whitespace = true
    insert_final_newline = true
    
    # Markdown files sometimes need trailing whitespaces.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 11:48:19 UTC 2023
    - 643 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesConflictResolutionIntegrationTest.groovy

        }
    
        @RequiredFeature(feature = GradleMetadataResolveRunner.GRADLE_METADATA, value = "true")
        def "can express preference for capabilities declared in published modules (#rule)"() {
            given:
            repository {
                'org:testA:1.0' {
                    variant('runtime') {
                        capability('org', 'testA', '1.0')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 07:37:10 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. src/crypto/tls/defaults.go

    		return disabledCipherSuites[c] ||
    			tlsrsakex.Value() != "1" && rsaKexCiphers[c] ||
    			tls3des.Value() != "1" && tdesCiphers[c]
    	})
    }
    
    // defaultCipherSuitesTLS13 is also the preference order, since there are no
    // disabled by default TLS 1.3 cipher suites. The same AES vs ChaCha20 logic as
    // cipherSuitesPreferenceOrder applies.
    //
    // defaultCipherSuitesTLS13 should be an internal detail,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/util/exportto.go

    // and false if it is set to namespace local.
    func IsExportToAllNamespaces(exportTos []string) bool {
    	exportedToAll := false
    	for _, e := range exportTos {
    		if e == ExportToAllNamespaces {
    			// give preference to "*" and stop iterating
    			exportedToAll = true
    			break
    		}
    	}
    	if len(exportTos) == 0 {
    		exportedToAll = true
    	}
    	return exportedToAll
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 08 15:13:29 UTC 2022
    - 1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/developingPlugins/reactingToBuildFeatures/groovy/buildSrc/src/main/java/MyPlugin.java

                myOptionalPluginLogicIncompatibleWithIsolatedProjects();
            }
        }
    
        private String describeFeatureUsage(Boolean requested) {
            return requested == null ? "no preference" : requested ? "opt-in" : "opt-out";
        }
    
        private void myOptionalPluginLogicIncompatibleWithIsolatedProjects() {
        }
    }
    // end::my-plugin[]
    
    class MyReport {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/report/shortnames.go

    package report
    
    import (
    	"regexp"
    
    	"github.com/google/pprof/internal/graph"
    )
    
    var sepRE = regexp.MustCompile(`::|\.`)
    
    // shortNameList returns a non-empty sequence of shortened names
    // (in decreasing preference) that can be used to represent name.
    func shortNameList(name string) []string {
    	name = graph.ShortenFunctionName(name)
    	seps := sepRE.FindAllStringIndex(name, -1)
    	result := make([]string, 0, len(seps)+1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 1.2K bytes
    - Viewed (0)
Back to top