Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,703 for 3000 (0.03 sec)

  1. src/cmd/go/testdata/script/gotoolchain_issue66175.txt

    # When a toolchain download takes place, download 1.X.0
    env GOTOOLCHAIN=auto
    rm go.mod
    go mod init m
    go mod edit -go=1.300 -toolchain=none
    ! go version
    stderr 'go: downloading go1.300.0 '
    
    rm go.mod
    go mod init m
    go mod edit -go=1.21 -toolchain=none
    ! go version
    stderr 'go: downloading go1.21.0 '
    
    rm go.mod
    go mod init m
    go mod edit -go=1.22 -toolchain=none
    ! go version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 21:32:07 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. pkg/config/validation/agent/extensionprovider_test.go

    				Service: "name/space/opencensus-agent.com",
    				Port:    4000,
    			},
    			valid: false,
    		},
    		{
    			name: "opencensus service with port",
    			config: &meshconfig.MeshConfig_ExtensionProvider_OpenCensusAgentTracingProvider{
    				Service: "opencensus-agent.com:4000",
    				Port:    4000,
    			},
    			valid: false,
    		},
    		{
    			name: "opencensus missing port",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. 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)
  4. src/main/webapp/js/search.js

                $favoritedCount = $(".favorited-count", $favorited);
                $favoritedCount.css("display", "none");
                $favorite.fadeOut(1000, function() {
                  $favorited.fadeIn(1000);
                });
              }
            })
            .fail(function(data) {
              $favorite.attr("href", "#" + docId);
              // alert(JSON.stringify(data));
            });
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/emptyfilter_output.json

                    ],
                    "loadBalancingWeight": 1
                }
            ],
            "policy": {
                "overprovisioningFactor": 140
            }
        },
        {
            "clusterName": "outbound|3000||grafana.istio-system.svc.cluster.local",
            "endpoints": [
                {
                    "locality": {},
                    "lbEndpoints": [
                        {
                            "endpoint": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 40.4K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/emptyfilter_output.yaml

        loadBalancingWeight: 1
        locality: {}
      policy:
        overprovisioningFactor: 140
    - clusterName: outbound|3000||grafana.istio-system.svc.cluster.local
      endpoints:
      - lbEndpoints:
        - endpoint:
            address:
              socketAddress:
                address: 10.244.0.109
                portValue: 3000
            healthCheckConfig: {}
          healthStatus: HEALTHY
          loadBalancingWeight: 1
          metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top