Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 498 for 50$ (0.07 sec)

  1. pilot/pkg/model/config_test.go

    		time             int
    		matches          bool
    	}{
    		{"10ExactNoMatch", host.Name("foo.bar.com.10"), "bar.com", []host.Name{}, nil, nil, 10, false},
    		{"50ExactNoMatch", host.Name("foo.bar.com.50"), "bar.com", []host.Name{}, nil, nil, 50, false},
    		{"100ExactNoMatch", host.Name("foo.bar.com.100"), "bar.com", []host.Name{}, nil, nil, 100, false},
    		{"1000ExactNoMatch", host.Name("foo.bar.com.1000"), "bar.com", []host.Name{}, nil, nil, 1000, false},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 20 12:54:10 UTC 2023
    - 19K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/noderesources/requested_to_capacity_ratio_test.go

    			// Node1 Score: 2
    			// Node2 scores (used resources) on 0-MaxNodeScore scale
    			// rawScoringFunction(used + requested / available)
    			// resourceScoringFunction((0+2),4)
    			//  = 2/4 * maxUtilization = 50 = rawScoringFunction(50)
    			// Node2 Score: 5
    			pod:            st.MakePod().Req(extendedResource3).Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  3. src/syscall/security_windows.go

    	if e != nil {
    		return nil, "", 0, e
    	}
    	var sys *uint16
    	if len(system) > 0 {
    		sys, e = UTF16PtrFromString(system)
    		if e != nil {
    			return nil, "", 0, e
    		}
    	}
    	n := uint32(50)
    	dn := uint32(50)
    	for {
    		b := make([]byte, n)
    		db := make([]uint16, dn)
    		sid = (*SID)(unsafe.Pointer(&b[0]))
    		e = LookupAccountName(sys, acc, sid, &n, &db[0], &dn, &accType)
    		if e == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  4. pkg/kubelet/metrics/testdata/image_pull_duration_metric

    # TYPE kubelet_image_pull_duration_seconds histogram
    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="0-10MB",le="1"} 0
    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="0-10MB",le="5"} 0
    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="0-10MB",le="10"} 1
    kubelet_image_pull_duration_seconds_bucket{image_size_in_bytes="0-10MB",le="20"} 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/LocalExcludeResolveIntegrationTest.groovy

            'excluding other module in same group as declared' | [group: 'org.gradle', module: 'foo']      | ['test-1.45.jar', 'bar-3.0.jar', 'company-4.0.jar', 'other-company-4.0.jar', 'enterprise-5.0.jar', 'baz-6.0.jar']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 03 18:15:26 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/flowcontrol/bootstrap/default.go

    				NominalConcurrencyShares: ptr.To(int32(40)),
    				LendablePercent:          ptr.To(int32(50)),
    				LimitResponse: flowcontrol.LimitResponse{
    					Type: flowcontrol.LimitResponseTypeQueue,
    					Queuing: &flowcontrol.QueuingConfiguration{
    						Queues:           128,
    						HandSize:         6,
    						QueueLengthLimit: 50,
    					},
    				},
    			},
    		})
    	// workload-low priority-level
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/AbstractConsoleBuildPhaseFunctionalTest.groovy

            resolveTask.waitForAllPendingCalls()
            assertHasBuildPhase("50% EXECUTING")
            resolveTask.releaseAll()
    
            and:
            doubleTransform.waitForAllPendingCalls()
            assertHasBuildPhase("50% EXECUTING")
            doubleTransform.releaseAll()
    
            and:
            sizeTransform.waitForAllPendingCalls()
            assertHasBuildPhase("50% EXECUTING")
            sizeTransform.releaseAll()
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 07:25:15 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenBomResolveIntegrationTest.groovy

            mavenHttpRepo.module('group', 'main', '5.0').allowAll().parent(bom.group, bom.artifactId, bom.version).publish()
            bomDependency('moduleA')
            bomDependency('moduleB')
            bom.publish()
    
            buildFile << """
                dependencies {
                    compile "group:moduleA"
                    compile "group:main:5.0"
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  9. src/runtime/mgcpacer_test.go

    			nCores:        8,
    			allocRate:     constant(33.0).sum(ramp(66.0, 1).delay(50)),
    			scanRate:      constant(1024.0),
    			growthRate:    constant(2.0).sum(ramp(-1.0, 12)),
    			scannableFrac: constant(1.0),
    			stackBytes:    constant(8192),
    			length:        100,
    			checker: func(t *testing.T, c []gcCycleResult) {
    				n := len(c)
    				if (n >= 25 && n < 50) || n >= 75 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 13:53:21 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/concurrent/TaskRunnerTest.kt

          "FINE: Q10000 finished run in   0 µs: task",
        )
      }
    
      /** Repeat with a delay of 200 but schedule with a delay of 50. The schedule wins. */
      @Test fun executeScheduledEarlierReplacesRepeatedLater() {
        val task =
          object : Task("task") {
            val schedules = mutableListOf(50.µs)
            val delays = mutableListOf(200.µs, -1)
    
            override fun runOnce(): Long {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top