Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,558 for RequestId (0.14 sec)

  1. cmd/admin-handlers.go

    	case madmin.ServiceActionFreeze:
    		serviceSig = serviceFreeze
    	case madmin.ServiceActionUnfreeze:
    		serviceSig = serviceUnFreeze
    	default:
    		adminLogIf(ctx, fmt.Errorf("Unrecognized service action %s requested", action), logger.ErrorKind)
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrMalformedPOSTRequest), r.URL)
    		return
    	}
    
    	var objectAPI ObjectLayer
    	switch serviceSig {
    	case serviceRestart:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top