Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,523 for REQUESTED (0.2 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsBuildFeatureIntegrationTest.groovy

                    doLast {
                        println "configurationCache.requested=" + buildFeatures.configurationCache.requested.getOrNull()
                        println "configurationCache.active=" + buildFeatures.configurationCache.active.get()
                        println "isolatedProjects.requested=" + buildFeatures.isolatedProjects.requested.getOrNull()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/DefaultAttributeMatcherTest.groovy

            def candidate2 = attributes(usage: "no match")
            def requested = attributes(usage: "match")
    
            expect:
            matcher.matches([candidate1, candidate2], requested, explanationBuilder) == [candidate1]
            matcher.matches([candidate2], requested, explanationBuilder) == []
    
            matcher.isMatching(candidate1, requested)
            !matcher.isMatching(candidate2, requested)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/volumebinding/scorer_test.go

    							Capacity:  100,
    						},
    					},
    					0,
    				},
    				{
    					classResourceMap{
    						classHDD: &StorageResource{
    							Requested: 0,
    							Capacity:  100,
    						},
    						classSSD: &StorageResource{
    							Requested: 30,
    							Capacity:  100,
    						},
    					},
    					15,
    				},
    				{
    					classResourceMap{
    						classHDD: &StorageResource{
    							Requested: 30,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 13 11:08:45 UTC 2021
    - 5.8K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/noderesources/least_allocated.go

    )
    
    // leastResourceScorer favors nodes with fewer requested resources.
    // It calculates the percentage of memory, CPU and other resources requested by pods scheduled on the node, and
    // prioritizes based on the minimum of the average of the fraction of requested to capacity.
    //
    // Details:
    // (cpu((capacity-requested)*MaxNodeScore*cpuWeight/capacity) + memory((capacity-requested)*MaxNodeScore*memoryWeight/capacity) + ...)/weightSum
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 12 01:50:09 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ComponentAttributesDynamicVersionIntegrationTest.groovy

            }
    
            where:
            requested | outcome
            'qa'      | 'succeeds'
            'canary'  | 'fails'
        }
    
        @Unroll("selects the first version which matches the component-level attributes (requested=#requested)")
        def "selects the first version which matches the component-level attributes"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/ConsumerProvidedVariantFinder.java

                private final ImmutableAttributes requested;
                private final int hashCode;
    
                public CacheKey(List<ImmutableAttributes> variantAttributes, ImmutableAttributes requested) {
                    this.variantAttributes = variantAttributes;
                    this.requested = requested;
                    this.hashCode = variantAttributes.hashCode() ^ requested.hashCode();
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/CachingDependencyResultFactoryTest.groovy

            when:
            def dep = factory.createUnresolvedDependency(selector('requested'), fromModule, false, selectedModule, new ModuleVersionResolveException(moduleVersionSelector('requested'), broken))
            def same = factory.createUnresolvedDependency(selector('requested'), fromModule, false, selectedModule, new ModuleVersionResolveException(moduleVersionSelector('requested'), broken))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/ConsumerProvidedVariantFinderTest.groovy

            // incompatible attributes are not compatible with requested
            1 * attributeMatcher.isMatching(incompatible, requested) >> false
            // compatible attributes are compatible with requested
            1 * attributeMatcher.isMatching(compatible, requested) >> true
    
            0 * attributeMatcher._
        }
    
        def "selects all transforms that can produce variant that is compatible with requested"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/noderesources/resource_allocation.go

    		if alloc == 0 {
    			continue
    		}
    		allocatable[i] = alloc
    		requested[i] = req
    	}
    
    	score := r.scorer(requested, allocatable)
    
    	if loggerV := logger.V(10); loggerV.Enabled() { // Serializing these maps is costly.
    		loggerV.Info("Listed internal info for allocatable resources, requested resources and score", "pod",
    			klog.KObj(pod), "node", klog.KObj(node), "resourceAllocationScorer", r.Name,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 20 14:53:43 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  10. 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)
Back to top