Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 219 for SELECTION (0.25 sec)

  1. releasenotes/notes/alpn-gateway-auto.yaml

    area: traffic-management
    issue:
    - 37196
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 10 18:00:16 UTC 2022
    - 336 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-selectionRule/kotlin/build.gradle.kts

    tasks.register("printRejectConfig") {
        val rejectConfig: FileCollection = configurations["rejectConfig"]
        doLast {
            rejectConfig.forEach { println("Resolved: ${it.name}") }
        }
    }
    
    // tag::component-selection-with-metadata[]
    configurations {
        create("metadataRulesConfig") {
            resolutionStrategy {
                componentSelection {
                    // Reject any versions with a status of 'experimental'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/exception/package-info.java

     * a configuration by name.
     *
     * Artifact variant selection failures are not represented by a specific exception type, as they are
     * similar to graph selection failures, and the type of failure is more important that the type of
     * resolution being performed in this hierarchy.
     */
    @org.gradle.api.NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentSelectionDescriptorInternal.java

         */
        boolean hasCustomDescription();
    
        /**
         * Updates this component selection descriptor to indicate it is equivalent to a force
         *
         * @return a new descriptor, equivalent to force
         */
        ComponentSelectionDescriptorInternal markAsEquivalentToForce();
    
        /**
         * Indicates whether the component selection descriptor is equivalent to a forced dependency
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. releasenotes/notes/protocol-detection-timeout.yaml

    upgradeNotes:
    - title: Protocol Detection Timeout Changes
      content: |
        In order to support permissive mTLS traffic as well as [automatic protocol detection](istio.io/latest/docs/ops/configuration/traffic-management/protocol-selection/#automatic-protocol-selection),
        the proxy will sniff the first few bytes of traffic to determine the protocol used. For certain "server first" protocols, such
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 21 00:53:45 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/execution/commandline/CommandLineTaskParserSpec.groovy

            def request = new DefaultTaskExecutionRequest(['foo'], 'project', null)
            def selection = new TaskSelection(':project', ':foo', asTaskSelectionResults(task))
    
            selector.resolveTaskName(null, 'project', defaultBuild, 'foo') >> selection
    
            when:
            def out = parser.parseTasks(request)
    
            then:
            out == [selection]
        }
    
        def "parses multiple tasks selectors"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 22:49:56 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  7. src/go/types/methodset.go

    	"sort"
    	"strings"
    )
    
    // A MethodSet is an ordered set of concrete or abstract (interface) methods;
    // a method is a [MethodVal] selection, and they are ordered by ascending m.Obj().Id().
    // The zero value for a MethodSet is a ready-to-use empty method set.
    type MethodSet struct {
    	list []*Selection
    }
    
    func (s *MethodSet) String() string {
    	if s.Len() == 0 {
    		return "MethodSet {}"
    	}
    
    	var buf strings.Builder
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  8. pkg/kube/namespace/filter.go

    	for k, v := range ps.MatchLabels {
    		r, err := labels.NewRequirement(k, selection.Equals, []string{v})
    		if err != nil {
    			return nil, err
    		}
    		requirements = append(requirements, *r)
    	}
    	for _, expr := range ps.MatchExpressions {
    		var op selection.Operator
    		switch metav1.LabelSelectorOperator(expr.Operator) {
    		case metav1.LabelSelectorOpIn:
    			op = selection.In
    		case metav1.LabelSelectorOpNotIn:
    			op = selection.NotIn
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ComponentSelectionReason.java

         *
         * @return true if a dependency constraint influenced the selection of this component
         *
         * @since 4.6
         */
        boolean isConstrained();
    
        /**
         * Returns a list of descriptions of the causes that led to the selection of this component.
         *
         * @return the list of descriptions.
         *
         * @since 4.6
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Aug 28 21:50:20 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/VisitedArtifactSet.java

        /**
         * Creates a set that selects the artifacts from this set that match the given criteria.
         * Implementations are lazy, so that the selection happens only when the contents are queried.
         *
         * @param spec Parameters controlling the artifact selection process
         */
        SelectedArtifactSet select(ArtifactSelectionSpec spec);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 03:03:36 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top