Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 133 for 300T (0.04 sec)

  1. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/internal/ScalaCompileOptionsConfigurer.java

            int effectiveTarget = !explicitToolchain ? FALLBACK_JVM_TARGET : javaToolchain.getLanguageVersion().asInt();
            if (scalaVersion.compareTo(VersionNumber.parse("3.0.0")) >= 0) {
                if (explicitToolchain) {
                    return String.format("-release:%s", effectiveTarget);
                } else {
                    return String.format("-Xtarget:%s", effectiveTarget);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/noderesources/requested_to_capacity_ratio_test.go

    			},
    			existingPods: []*v1.Pod{
    				st.MakePod().Node("node1").Req(map[v1.ResourceName]string{"cpu": "3000", "memory": "5000"}).Obj(),
    				st.MakePod().Node("node2").Req(map[v1.ResourceName]string{"cpu": "3000", "memory": "5000"}).Obj(),
    			},
    			expectedScores: []framework.NodeScore{{Name: "node1", Score: 38}, {Name: "node2", Score: 50}},
    			resources:      defaultResources,
    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. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/jvm/JDWPUtil.groovy

            connectionArgs = connection.defaultArguments()
            connectionArgs.get("port").setValue(port as String)
            connectionArgs.get("timeout").setValue('3000')
            connection.startListening(connectionArgs)
    
            if (acceptAsync) {
                Thread.start {
                    accept()
                }
            }
        }
    
        def accept() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_container_windows_test.go

    					},
    				},
    			},
    		},
    	}
    
    	err = fakeRuntimeSvc.applyPlatformSpecificContainerConfig(containerConfig, &pod.Spec.Containers[0], pod, new(int64), "foo", nil)
    	require.NoError(t, err)
    
    	limit := int64(3000)
    	expectedCpuMax := 10 * limit / int64(winstats.ProcessorCount())
    	// Above, we're setting the limit to 3 CPUs. But we can't expect more than 100% of the CPUs
    	// we have. (e.g.: if we only have 2 CPUs, we can't have 150% CPU max).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/work/DefaultConditionalExecutionQueueTest.groovy

        }
    
        def "submitting a large number of executions does not start more than max workers"() {
            def executions = []
            expect:
            async {
                start {
                    3000.times { i ->
                        def execution = testExecution({
                            println("Execution ${i} running!")
                        })
                        executions.add(execution)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. pkg/kubelet/util/pod_startup_latency_tracker_test.go

    kubelet_pod_start_sli_duration_seconds_bucket{le="120"} 1
    kubelet_pod_start_sli_duration_seconds_bucket{le="180"} 1
    kubelet_pod_start_sli_duration_seconds_bucket{le="240"} 1
    kubelet_pod_start_sli_duration_seconds_bucket{le="300"} 1
    kubelet_pod_start_sli_duration_seconds_bucket{le="360"} 1
    kubelet_pod_start_sli_duration_seconds_bucket{le="480"} 1
    kubelet_pod_start_sli_duration_seconds_bucket{le="600"} 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 06:09:49 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  7. pkg/volume/csi/csi_client_test.go

    		}
    
    		if !tc.mustFail {
    			fakeCloser.Check()
    		}
    	}
    }
    
    func TestClientNodePublishVolume(t *testing.T) {
    	var testFSGroup int64 = 3000
    
    	tmpDir, err := utiltesting.MkTmpdir("csi-test")
    	if err != nil {
    		t.Fatalf("can't create temp dir: %v", err)
    	}
    	defer os.RemoveAll(tmpDir)
    	testPath := filepath.Join(tmpDir, "path")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  8. okhttp-testing-support/src/main/kotlin/okhttp3/TestUtilJvm.kt

       * Make assertions about the suppressed exceptions on this. Prefer this over making direct calls
       * so tests pass on GraalVM, where suppressed exceptions are silently discarded.
       *
       * https://github.com/oracle/graal/issues/3008
       */
      @JvmStatic
      fun Throwable.assertSuppressed(block: (List<@JvmSuppressWildcards Throwable>) -> Unit) {
        if (isGraalVmImage) return
        block(suppressed.toList())
      }
    
      @JvmStatic
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

            - MUTUAL_TLS
            {{- else }}
            - --controlPlaneAuthPolicy
            - NONE
            {{- end }}
            - --dnsRefreshRate
            - {{ valueOrDefault .Values.global.proxy.dnsRefreshRate "300s" }}
          {{- if (ne (annotation .ObjectMeta "status.sidecar.istio.io/port" .Values.global.proxy.statusPort) "0") }}
            - --statusPort
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Server-TLSv12-Ed25519

    00000090  31 36 32 31 33 38 30 31  5a 17 0d 32 30 30 35 31  |16213801Z..20051|
    000000a0  35 32 31 33 38 30 31 5a  30 12 31 10 30 0e 06 03  |5213801Z0.1.0...|
    000000b0  55 04 0a 13 07 41 63 6d  65 20 43 6f 30 2a 30 05  |U....Acme Co0*0.|
    000000c0  06 03 2b 65 70 03 21 00  3f e2 15 2e e6 e3 ef 3f  |..+ep.!.?......?|
    000000d0  4e 85 4a 75 77 a3 64 9e  ed e0 bf 84 2c cc 92 26  |N.Juw.d.....,..&|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top