Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,558 for RequestId (0.4 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/workingWithDependencies-walkGraph/tests/walkDependencyGraph.out

         - com.jcraft:jsch:0.1.54 (requested)
         - com.googlecode.javaewah:JavaEWAH:1.1.6 (requested)
         - org.apache.httpcomponents:httpclient:4.3.6 (requested)
              - org.apache.httpcomponents:httpcore:4.3.3 (requested)
              - commons-logging:commons-logging:1.1.3 (requested)
              - commons-codec:commons-codec:1.7 (between versions 1.7 and 1.6)
         - org.slf4j:slf4j-api:1.7.2 (requested)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 574 bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildFeatureIntegrationTest.groovy

            outputContains("configurationCache.requested=true")
            outputContains("configurationCache.active=true")
    
            when:
            configurationCacheRun "something"
            then:
            configurationCache.assertStateLoaded()
            outputContains("configurationCache.requested=true")
            outputContains("configurationCache.active=true")
        }
    
        def "not active even if requested due to --export-keys flag"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/noderesources/most_allocated.go

    )
    
    // mostResourceScorer favors nodes with most requested resources.
    // It calculates the percentage of memory and CPU requested by pods scheduled on the node, and prioritizes
    // based on the maximum of the average of the fraction of requested to capacity.
    //
    // Details:
    // (cpu(MaxNodeScore * requested * cpuWeight / capacity) + memory(MaxNodeScore * requested * memoryWeight / capacity) + ...) / weightSum
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 15:23:47 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-resolutionStrategy/groovy/build.gradle

    configurations.all {
        resolutionStrategy.eachDependency { DependencyResolveDetails details ->
            if (details.requested.name == 'groovy-all') {
                details.useTarget group: details.requested.group, name: 'groovy', version: details.requested.version
                details.because "prefer 'groovy' over 'groovy-all'"
            }
            if (details.requested.name == 'log4j') {
                details.useTarget "org.slf4j:log4j-over-slf4j:1.7.10"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/noderesources/requested_to_capacity_ratio_test.go

    			// Node2 scores (used resources) on 0-10 scale
    			// rawScoringFunction(used + requested / available)
    			// intel.com/foo:
    			// rawScoringFunction(used + requested / available)
    			// resourceScoringFunction((0+0),4)
    			//  = 0/4 * 100 = 0 = rawScoringFunction(0)
    			// intel.com/bar:
    			// rawScoringFunction(used + requested / available)
    			// resourceScoringFunction((0+0),8)
    			//  = 0/8 * 100 = 0 = rawScoringFunction(0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/AttributePrecedenceSchemaAttributeMatcherTest.groovy

            def candidate6 = candidate("compatible", "compatible", "compatible")
            def requested = requested("requested", "requested","requested")
            expect:
            schema.matcher().matches([candidate1], requested, explanationBuilder) == [candidate1]
            schema.matcher().matches([candidate1, candidate2, candidate3, candidate4, candidate5, candidate6], requested, explanationBuilder) == [candidate1]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-resolutionStrategy/kotlin/build.gradle.kts

        resolutionStrategy.eachDependency {
            if (requested.group == "org.software" && requested.name == "some-library" && requested.version == "1.2") {
                useVersion("1.2.1")
                because("fixes critical bug in 1.2")
            }
        }
    }
    // end::denying_version[]
    
    // tag::module_substitution[]
    configurations.all {
        resolutionStrategy.eachDependency {
            if (requested.name == "groovy-all") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/graph/nodes/AbstractRenderableDependencyResultSpec.groovy

        }
    
        def "renders name for ProjectComponentSelector"() {
            given:
            def requested = TestComponentIdentifiers.newSelector(':a')
    
            expect:
            dep(requested, newProjectId(':a')).name == 'project :a'
            dep(requested, newProjectId(':b')).name == 'project :a -> project :b'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 19 10:00:00 UTC 2018
    - 3.7K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/dependencies/MatchType.java

    public enum MatchType {
        /**
         * The attribute was not requested by the configuration.
         */
        NOT_REQUESTED,
        /**
         * The attribute was requested by the configuration, but the actual value was <strong>incompatible</strong> with
         * the configuration's requested value.
         */
        INCOMPATIBLE,
        /**
         * The attribute was requested by the configuration, and the actual value was <strong>compatible</strong> with
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 22 19:19:36 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencyResolveDetails.java

        private boolean dirty;
    
        @Inject
        public DefaultDependencyResolveDetails(DependencySubstitutionInternal delegate, ModuleVersionSelector requested) {
            this.delegate = delegate;
            this.requested = requested;
        }
    
        private ComponentSelectionDescriptorInternal selectionReason() {
            return customDescription == null
                ? ComponentSelectionReasons.SELECTED_BY_RULE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top