Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for 7500 (0.1 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_test.go

    		},
    		{
    			name:        "capacity=7500, indexExists, triggerUsed",
    			capacity:    7500,
    			indexExists: true,
    			triggerUsed: true,
    			expected:    10,
    		},
    		{
    			name:        "capacity=7500, indexExists, !triggerUsed",
    			capacity:    7500,
    			indexExists: true,
    			triggerUsed: false,
    			expected:    100,
    		},
    		{
    			name:        "capacity=7500, !indexExists",
    			capacity:    7500,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/helpers_linux_test.go

    		},
    		{
    			msg:      "500 input 20k period and 20k expected quota",
    			input:    int64(500),
    			period:   uint64(20000),
    			expected: int64(10000),
    		},
    		{
    			msg:      "1000 input 10k period and 10k expected quota",
    			input:    int64(1000),
    			period:   uint64(10000),
    			expected: int64(10000),
    		},
    		{
    			msg:      "1500 input 5000 period and 7500 expected quota",
    			input:    int64(1500),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. test/inline_big.go

    	a[728] = 0
    	a[729] = 0
    	a[730] = 0
    	a[731] = 0
    	a[732] = 0
    	a[733] = 0
    	a[734] = 0
    	a[735] = 0
    	a[736] = 0
    	a[737] = 0
    	a[738] = 0
    	a[739] = 0
    	a[740] = 0
    	a[741] = 0
    	a[742] = 0
    	a[743] = 0
    	a[744] = 0
    	a[745] = 0
    	a[746] = 0
    	a[747] = 0
    	a[748] = 0
    	a[749] = 0
    	a[750] = 0
    	a[751] = 0
    	a[752] = 0
    	a[753] = 0
    	a[754] = 0
    	a[755] = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 18 11:58:37 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  4. helm-releases/minio-5.0.0.tgz

    minio-5.0.0.tar minio/Chart.yaml apiVersion: v1 appVersion: RELEASE.2022-10-24T18-35-07Z description: Multi-Cloud Object Storage home: https://min.io icon: https://min.io/resources/img/logo/MINIO_wordmark.png keywords: - minio - storage - object-storage - s3 - cluster maintainers: - email: ******@****.*** name: MinIO, Inc name: minio sources: - https://github.com/minio/minio version: 5.0.0 minio/values.yaml ## Provide a name in place of minio for `app:` labels ## nameOverride: "" ## Provide a name...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Oct 25 10:20:22 UTC 2022
    - 19.8K bytes
    - Viewed (0)
  5. src/net/http/response_test.go

    			resp.Body = &readerAndCloser{gzReader, resp.Body}
    		}
    
    		rbuf := make([]byte, 2500)
    		n, err := io.ReadFull(resp.Body, rbuf)
    		checkErr(err, "2500 byte ReadFull")
    		if n != 2500 {
    			fatalf("ReadFull only read %d bytes", n)
    		}
    		if test.compressed == false && !bytes.Equal(bytes.Repeat([]byte{'x'}, 2500), rbuf) {
    			fatalf("ReadFull didn't read 2500 'x'; got %q", string(rbuf))
    		}
    		resp.Body.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 19:01:29 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/DuplexTest.kt

      }
    
      /**
       * We delay sending the last byte of the request body 1500 ms. The 1000 ms read timeout should
       * only elapse 1000 ms after the request body is sent.
       */
      @Test
      fun headersReadTimeoutDoesNotStartUntilLastRequestBodyByteFire() {
        enableProtocol(Protocol.HTTP_2)
        server.enqueue(
          MockResponse.Builder()
            .headersDelay(1500, TimeUnit.MILLISECONDS)
            .build(),
        )
        val request =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java

        boolean signaledBeforeTimeout = awaitUninterruptibly(condition, 500, MILLISECONDS);
    
        assertFalse(signaledBeforeTimeout);
        assertAtLeastTimePassed(stopwatch, 500);
        assertNotInterrupted();
      }
    
      public void testConditionAwaitTimeoutNotExceeded() {
        Stopwatch stopwatch = Stopwatch.createStarted();
        Condition condition = TestCondition.createAndSignalAfter(500, MILLISECONDS);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 16:06:39 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass_test.cc

      Output input = ops::Placeholder(root.WithOpName("input"), DT_FLOAT);
      Output begin = ops::Placeholder(root.WithOpName("begin"), DT_INT32);
      Output size = ops::Const(root.WithOpName("size"), {-1, 500});
      Output slice = ops::Slice(root.WithOpName("slice"), input, begin, size);
    
      std::unique_ptr<Graph> result;
      TF_ASSERT_OK(IncreaseDynamismForAutoJit(root, &result));
    
      const int64_t zero_64 = 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/img/groovyPluginTasks.graphml

              <y:Path sx="70.0" sy="-0.0" tx="-70.0" ty="-0.0"/>
              <y:LineStyle color="#000000" type="line" width="1.0"/>
              <y:Arrows source="delta" target="none"/>
            </y:QuadCurveEdge>
          </data>
        </edge>
        <edge id="e1" source="n5" target="n4">
          <data key="d9">
            <y:QuadCurveEdge straightness="0.1">
              <y:Path sx="70.0" sy="-0.0" tx="-70.0" ty="-10.0"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperGenerationIntegrationTest.groovy

        }
    
        def "generated wrapper scripts for given network timeout from command-line"() {
            when:
            run "wrapper", "--network-timeout", "7000"
    
            then:
            file("gradle/wrapper/gradle-wrapper.properties").text.contains("networkTimeout=7000")
        }
    
        def "wrapper JAR does not contain version in manifest"() {
            when:
            run "wrapper"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top