Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 559 for Selections (0.38 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/dependency_management_terminology.adoc

    Examples of variants each Java components typically offers are _api_ and _runtime_ variants.
    Others examples are JDK8 and JDK11 variants.
    For more information, see the section on <<variant_model.adoc#understanding-variant-selection,variant selection>>.
    
    [[sub:terminology_attribute]]
    == Variant Attribute
    
    Attributes are used to identify and select <<#sub:terminology_variant,variants>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ComponentSelection.java

    import org.gradle.internal.HasInternalProtocol;
    
    import javax.annotation.Nullable;
    
    /**
     * Represents a tuple of the component selector of a module and a candidate version
     * to be evaluated in a component selection rule.
     */
    @HasInternalProtocol
    public interface ComponentSelection {
        /**
         * Gets the candidate version of the module.
         *
         * @return the candidate version of the module
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 31 08:53:53 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. pkg/url/url.go

    	// ProtocolSelection should generate
    	// https://istio.io/v1.15/docs/ops/configuration/traffic-management/protocol-selection/
    	ProtocolSelection = fmt.Sprintf("%s%s", OpsURL, "configuration/traffic-management/protocol-selection/")
    
    	// #####################################
    	// Reference related URLs for istio.io
    	// #####################################
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 11:12:37 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/dependencyLocking-lockModeSelection/groovy/settings.gradle

    rootProject.name = 'lockmode-selection'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-selectionRule/groovy/settings.gradle

    rootProject.name = 'component-selection-rules'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 47 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    type EgressSelectorConfiguration struct {
    	metav1.TypeMeta
    
    	// EgressSelections contains a list of egress selection client configurations
    	EgressSelections []EgressSelection
    }
    
    // EgressSelection provides the configuration for a single egress selection client.
    type EgressSelection struct {
    	// Name is the name of the egress selection.
    	// Currently supported values are "controlplane", "etcd" and "cluster"
    	Name string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. pilot/pkg/model/policyattachment.go

    	GetTargetRefs() []*v1beta1.PolicyTargetReference
    	GetSelector() *v1beta1.WorkloadSelector
    }
    
    // WorkloadPolicyMatcher performs policy selection either using targetRef or label selectors.
    // Label selection uses the workload labels.
    // TargetRef selection uses either the workload's namespace + the gateway name based on labels,
    // or the Services the workload is a part of.
    type WorkloadPolicyMatcher struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/LocalFileDependencyBackedArtifactSet.java

     * dependencies are executed. For this reason, we delay artifact selection until after this artifact
     * set is restored from the configuration cache. This differs from normal artifact variant selection
     * where we can perform selection before serialization.</p>
     *
     * <p>The tricky part that due to the artifactType registry, artifact variant selection depends on the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  9. pilot/pkg/xds/deltatest.go

    		}
    		// Still make sure we didn't delete anything extra
    		if len(extraDeletes) > 0 {
    			log.Errorf("%s: TEST for node:%s unexpected deletions: %v %v", v3.GetShortType(w.TypeUrl), con.proxy.ID, details, extraDeletes)
    		}
    	} else {
    		if len(extraDeletes) > 0 {
    			log.Errorf("%s: TEST for node:%s unexpected deletions: %v %v", v3.GetShortType(w.TypeUrl), con.proxy.ID, details, extraDeletes)
    		}
    		if len(missedDeletes) > 0 && !incremental {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/reproducibility/FailOnDynamicVersionsResolveIntegrationTest.groovy

            then:
            failure.assertHasCause("Could not resolve org:transitive:1.+: Resolution strategy disallows usage of dynamic versions")
        }
    
        def "fails if a transitive dynamic selector participates in selection"() {
            buildFile << """
                dependencies {
                    conf 'org:test:1.0'
                    conf 'org:testB:1.0'
                }
            """
    
            repository {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top