Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 214 for Selections (0.29 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesConflictResolutionIssuesIntegrationTest.groovy

                    resolutionStrategy.capabilitiesResolution.all { details ->
                        def selection =
                            details.candidates.find { it.variantName.endsWith('PrefApiElements') }
                        println("Selecting \$selection from \${details.candidates}")
                        details.select(selection)
                    }
                }
    
                configurations.runtimeClasspath {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/commandline/CommandLineTaskParser.java

                String path = remainingPaths.remove(0);
                TaskSelection selection = taskSelector.resolveTaskName(taskExecutionRequest.getRootDir(), taskExecutionRequest.getProjectPath(), targetBuild, path);
                Set<Task> tasks = selection.getTasks();
                remainingPaths = taskConfigurer.configureTasks(tasks, remainingPaths);
                out.add(selection);
            }
            return out;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. tools/bug-report/pkg/util/match/match.go

    package match
    
    import (
    	"path/filepath"
    	"strings"
    
    	"istio.io/istio/pkg/log"
    )
    
    func MatchesMap(selection, cluster map[string]string) bool {
    	if len(selection) == 0 {
    		return true
    	}
    	if len(cluster) == 0 {
    		return false
    	}
    
    	for ks, vs := range selection {
    		vc, ok := cluster[ks]
    		if !ok {
    			return false
    		}
    		if !MatchesGlob(vc, vs) {
    			return false
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/fields/requirements.go

    */
    
    package fields
    
    import "k8s.io/apimachinery/pkg/selection"
    
    // Requirements is AND of all requirements.
    type Requirements []Requirement
    
    // Requirement contains a field, a value, and an operator that relates the field and value.
    // This is currently for reading internal selection information of field selector.
    type Requirement struct {
    	Operator selection.Operator
    	Field    string
    	Value    string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 19 14:50:16 UTC 2017
    - 974 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/VisitedArtifactResults.java

         * The implementation should attempt to select artifacts eagerly, but may be lazy where
         * the selection cannot happen until the results are queried.
         *
         * @param variantSelector Performs variant selection
         * @param spec Governs how artifacts are selected
         * @param lenient If true, ignore artifacts that are resolved, but unavailable
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:08:51 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top