Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 216 for Precedence (0.23 sec)

  1. src/net/http/routing_tree.go

    // patterns.
    //
    // The root of the tree branches on the host of the request.
    // The next level branches on the method.
    // The remaining levels branch on consecutive segments of the path.
    //
    // The "more specific wins" precedence rule can result in backtracking.
    // For example, given the patterns
    //     /a/b/z
    //     /a/{x}/c
    // we will first try to match the path "/a/b/c" with /a/b/z, and
    // when that fails we will try against /a/{x}/c.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    	// SkipPhases is a list of phases to skip during command execution.
    	// The list of phases can be obtained with the "kubeadm init --help" command.
    	// The flag "--skip-phases" takes precedence over this field.
    	// +optional
    	SkipPhases []string `json:"skipPhases,omitempty"`
    
    	// Patches contains options related to applying patches to components deployed by kubeadm during
    	// "kubeadm init".
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentAttributesRulesIntegrationTest.groovy

            outcome << ['fails', 'succeeds']
            mutation << ['not added', 'added']
        }
    
        @RequiredFeature(feature = GradleMetadataResolveRunner.GRADLE_METADATA, value = "true")
        def "variant attributes take precedence over component attributes (component level = #componentLevel)"() {
            given:
            repository {
                'org.test:module:1.0'()
            }
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  4. ReadMe.md

      Otherwise, native-only dependencies may not be added to the verification metadata. This is because `local.properties` has higher 
      precedence than the `-Pkotlin.native.enabled=true` specified in the Gradle command.
    
    ## Using -dev versions
    
    We publish `-dev` versions frequently.
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 11 14:28:46 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    The following table lists these methods in order of highest to lowest precedence (the first one wins):
    
    [cols="~,~,~,~"]
    |===
    |Priority |Method |Location |Notes
    
    |1
    |<<command_line_interface#command_line_interface,Command-line flags>>
    |Command line
    |Flags have precedence over properties and environment variables
    
    |2
    |<<#sec:gradle_system_properties,System properties>>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  6. pkg/test/framework/resource/settings.go

    	// To configure it so that an Istio revision is on the latest version simply list the revision name without the version (i.e. "rev-a,rev-b")
    	// If using this flag with --istio.test.revision, this flag will take precedence.
    	Revisions RevVerMap
    
    	// Image settings
    	Image ImageSettings
    
    	// EchoImage is the app image to be used by echo deployments.
    	EchoImage string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. pkg/serviceaccount/jwt.go

    type jwtTokenGenerator struct {
    	iss    string
    	signer jose.Signer
    }
    
    func (j *jwtTokenGenerator) GenerateToken(claims *jwt.Claims, privateClaims interface{}) (string, error) {
    	// claims are applied in reverse precedence
    	return jwt.Signed(j.signer).
    		Claims(privateClaims).
    		Claims(claims).
    		Claims(&jwt.Claims{
    			Issuer: j.iss,
    		}).
    		CompactSerialize()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 22:16:08 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "items": {
                "$ref": "#/definitions/io.k8s.api.core.v1.EnvFromSource"
              },
              "type": "array"
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  9. cmd/kubelet/app/server.go

    				// We must enforce flag precedence by re-parsing the command line into the new object.
    				// This is necessary to preserve backwards-compatibility across binary upgrades.
    				// See issue #56171 for more details.
    				if err := kubeletConfigFlagPrecedence(kubeletConfig, args); err != nil {
    					return fmt.Errorf("failed to precedence kubeletConfigFlag: %w", err)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/core/v1/generated.proto

      // will be reported as an event when the container is starting. When a key exists in multiple
      // sources, the value associated with the last source will take precedence.
      // Values defined by an Env with a duplicate key will take precedence.
      // Cannot be updated.
      // +optional
      repeated EnvFromSource envFrom = 19;
    
      // List of environment variables to set in the container.
      // Cannot be updated.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
Back to top