Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 129 for 7500 (0.05 sec)

  1. src/cmd/go/internal/fsys/fsys_test.go

    				{"dir", "dir", 0, fs.ModeDir | 0500, true},
    				{"dir/file.txt", "file.txt", 23, 0600, false},
    				{"dir/other.txt", "other.txt", 23, 0600, false},
    			},
    		},
    		{"overlay with new file", `
    {
    	"Replace": {
    		"dir/file.txt": "dir/other.txt"
    	}
    }
    -- dir/other.txt --
    contents of other file
    `,
    			"dir",
    			[]file{
    				{"dir", "dir", 0, fs.ModeDir | 0500, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:52:11 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  2. src/math/big/arith_test.go

    	// additional test cases with shift values of 0, 1 and (_W-1)
    	{argshlVUIn, 7, 0, 0, 0, argshlVUr0, 0, "complete overlap of shlVU and shift of 0"},
    	{argshlVUIn, 7, 0, 0, 1, argshlVUr1, 0, "complete overlap of shlVU and shift of 1"},
    	{argshlVUIn, 7, 0, 0, _W - 1, argshlVUrWm1, 32, "complete overlap of shlVU and shift of _W - 1"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 19.9K bytes
    - Viewed (0)
  3. pkg/volume/util/util_test.go

    		t.Errorf("Expected 60 for timeout but got %v", timeout)
    	}
    
    	pv.Spec.Capacity[v1.ResourceStorage] = resource.MustParse("150Gi")
    	timeout = CalculateTimeoutForVolume(50, 30, pv)
    	if timeout != 4500 {
    		t.Errorf("Expected 4500 for timeout but got %v", timeout)
    	}
    }
    
    func TestFsUserFrom(t *testing.T) {
    	tests := []struct {
    		desc       string
    		pod        *v1.Pod
    		wantFsUser *int64
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  4. mockwebserver-deprecated/src/test/java/okhttp3/mockwebserver/MockWebServerTest.kt

       * should yield one sleep for a total delay of 500ms.
       */
      @Test
      fun throttleRequest() {
        assumeNotWindows()
        server.enqueue(
          MockResponse()
            .throttleBody(3, 500, TimeUnit.MILLISECONDS),
        )
        val startNanos = System.nanoTime()
        val connection = server.url("/").toUrl().openConnection()
        connection.setDoOutput(true)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. mockwebserver/src/test/java/mockwebserver3/MockWebServerTest.kt

       * should yield one sleep for a total delay of 500ms.
       */
      @Test
      fun throttleRequest() {
        assumeNotWindows()
        server.enqueue(
          MockResponse.Builder()
            .throttleBody(3, 500, TimeUnit.MILLISECONDS)
            .build(),
        )
        val startNanos = System.nanoTime()
        val connection = server.url("/").toUrl().openConnection()
        connection.doOutput = true
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  6. samples/bookinfo/src/ratings/ratings.js

            if (err) {
              res.writeHead(500, {'Content-type': 'application/json'})
              res.end(JSON.stringify({error: 'could not connect to ratings database'}))
              console.log(err)
            } else {
              const db = client.db("test")
              db.collection('ratings').find({}).toArray(function (err, data) {
                if (err) {
                  res.writeHead(500, {'Content-type': 'application/json'})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 02 00:29:57 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  7. docs/en/docs/js/termynal.js

                || parseFloat(this.container.getAttribute(`${this.pfx}-typeDelay`)) || 90;
            this.originalLineDelay = this.lineDelay = options.lineDelay
                || parseFloat(this.container.getAttribute(`${this.pfx}-lineDelay`)) || 1500;
            this.progressLength = options.progressLength
                || parseFloat(this.container.getAttribute(`${this.pfx}-progressLength`)) || 40;
            this.progressChar = options.progressChar
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_container_test.go

    				Resources: func() *runtimeapi.ContainerResources {
    					if goruntime.GOOS == "windows" {
    						return &runtimeapi.ContainerResources{
    							Windows: &runtimeapi.WindowsContainerResources{
    								CpuMaximum:         2500,
    								CpuCount:           1,
    								MemoryLimitInBytes: 524288000,
    							},
    						}
    					}
    					return &runtimeapi.ContainerResources{
    						Linux: &runtimeapi.LinuxContainerResources{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 28K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionIntegrationTest.groovy

            poll(120) { assert requestReceived }
    
            // simulate additional requests
            def socket = new DatagramSocket(0, addressFactory.wildcardBindingAddress)
            (1..500).each {
                addressFactory.communicationAddresses.each { address ->
                    byte[] bytes = [1, 0, 0, 0, 0, 0, 0, 0, 0]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. plugin/pkg/admission/security/podsecurity/testdata/pod_baseline.yaml

      - args:
        - -v=2
        - -logtostderr
        - -configDir=/etc/k8s/dns/dnsmasq-nanny
        - -restartDnsmasq=true
        - --
        - -k
        - --cache-size=1000
        - --no-negcache
        - --dns-forward-max=1500
        - --log-facility=-
        - --server=/cluster.local/127.0.0.1#10053
        - --server=/in-addr.arpa/127.0.0.1#10053
        - --server=/ip6.arpa/127.0.0.1#10053
        image: image-name:tag-name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 04 16:26:30 UTC 2021
    - 18.1K bytes
    - Viewed (0)
Back to top