Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 92 for Reflection (3.06 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooserTest.groovy

            then:
            _ * componentSelectionRules.rules >> rules({ ComponentSelection selection ->
                if (selection.candidate.version != '1.3') {
                    selection.reject("rejected")
                }
            })
            1 * selectedComponentResult.getContentFilter() >> null
            1 * selectedComponentResult.notMatched(c.id, _)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/helper/helpers.go

    	selector := labels.NewSelector()
    	var op selection.Operator
    	switch ssr.Operator {
    	case v1.ScopeSelectorOpIn:
    		op = selection.In
    	case v1.ScopeSelectorOpNotIn:
    		op = selection.NotIn
    	case v1.ScopeSelectorOpExists:
    		op = selection.Exists
    	case v1.ScopeSelectorOpDoesNotExist:
    		op = selection.DoesNotExist
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.util.GradleVersion
    import spock.lang.Ignore
    /**
     * These tests demonstrate the behavior of the [ResolutionFailureHandler] when a project has various
     * variant selection failures.
     *
     * It can also build a text report demonstrating all these errors in a single place by running
     * the [generateFailureShowcase] method, which is marked with [spock.lang.Ignore] so it doesn't
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphVariantSelector.java

            this.failureHandler = failureHandler;
        }
    
        /**
         * Returns the failure processor which must be used to report failures during variant selection.
         *
         * @return the failure processor
         */
        public ResolutionFailureHandler getFailureHandler() {
            return failureHandler;
        }
    
        public VariantGraphResolveState selectByAttributeMatching(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    [[sec:custom_status_scheme]]
    == Modifying metadata on the component level for version selection based on status
    
    Gradle and Gradle Module Metadata also allow attributes to be set on the whole component instead of a single variant.
    Each of these attributes carries special semantics as they influence version selection which is done _before_ variant selection.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  6. cmd/bucket-listobjects-handlers.go

    // --------------------------
    // This implementation of the GET operation returns some or all (up to 1000)
    // of the objects in a bucket. You can use the request parameters as selection
    // criteria to return a subset of the objects in a bucket.
    //
    // NOTE: It is recommended that this API to be used for application development.
    // MinIO continues to support ListObjectsV1 and V2 for supporting legacy tools.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

            // There must be at least one non dynamic selector agreeing with the selection
            // for the resolution result to be stable
            // and for dynamic selectors, only the "stable" ones work, which is currently
            // only ranges because those are the only ones which accept a selection without
            // upgrading
            boolean accept = false;
            for (SelectorState selector : selectors) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/userinput/UserInputHandlingIntegrationTest.groovy

            outputContains("1: a")
            outputContains("2: b")
            outputContains("3: c")
            outputContains("Enter selection (default: b) [1..3] ")
            outputContains("result = a")
    
            where:
            richConsole << VALID_BOOLEAN_CHOICES
        }
    
        def "use of ctrl-d when selection option returns default option [rich console: #richConsole]"() {
            given:
            withRichConsole(richConsole)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/DefaultExternalComponentGraphResolveState.java

        private final ConcurrentMap<ModuleConfigurationMetadata, DefaultConfigurationGraphResolveState> variants = new ConcurrentHashMap<>();
    
        // The variants to use for variant selection during graph resolution
        private final Lazy<List<? extends VariantGraphResolveState>> allVariantsForGraphResolution;
    
        // The public view of all selectable variants of this component
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. cmd/kube-scheduler/app/server.go

    		}
    
    		close(handlerSyncReadyCh)
    		logger.V(3).Info("Handlers synced")
    	}
    	if !cc.ComponentConfig.DelayCacheUntilActive || cc.LeaderElection == nil {
    		startInformersAndWaitForSync(ctx)
    	}
    	// If leader election is enabled, runCommand via LeaderElector until done and exit.
    	if cc.LeaderElection != nil {
    		cc.LeaderElection.Callbacks = leaderelection.LeaderCallbacks{
    			OnStartedLeading: func(ctx context.Context) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top