Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 554 for SELECTION (0.15 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    [[sec:resolving-variant-aware-errors]]
    === Variant Selection Errors
    
    Sometimes a selection error happens at the <<variant_model.adoc#understanding-variant-selection,variant selection level>>.
    Have a look at the <<variant_model.adoc#sec:variant-select-errors,dedicated section>> to understand these errors and how to resolve them.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. 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)
  3. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultPlanExecutor.java

            }
        }
    
        private static class WorkItem {
            final WorkSource.Selection<Object> selection;
            final WorkSource<Object> plan;
            final Action<Object> executor;
    
            public WorkItem(WorkSource.Selection<Object> selection, WorkSource<Object> plan, Action<Object> executor) {
                this.selection = selection;
                this.plan = plan;
                this.executor = executor;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 29.1K 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. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentSelectorSerializerTest.groovy

        }
    
        def "serializes BuildComponentSelector"() {
            given:
            ProjectComponentSelector selection = TestComponentIdentifiers.newSelector(':myPath')
    
            when:
            ProjectComponentSelector result = serialize(selection, serializer)
    
            then:
            result.projectPath == ':myPath'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ModuleResolveState.java

            // Remove any outgoing edges for the current selection
            selected.removeOutgoingEdges();
    
            this.selected = newSelection;
            this.replaced = false;
    
            doRestart(newSelection);
            changingSelection = false;
        }
    
        /**
         * Clears the current selection for the module, to prepare for conflict resolution.
         * - For the current selection, disconnect and remove any outgoing dependencies.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top