Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,134 for 50$ (0.02 sec)

  1. guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

        }
        assertEvents(
            "R0.00, R1.38, R1.13, R0.88, R0.63, R0.50, R0.50, R0.50", // #1
            "U0.50", // #2
            "U4.00", // #3
            "R0.00, R1.38, R1.13, R0.88, R0.63, R0.50, R0.50, R0.50", // #4
            "U0.50", // #5
            "U2.00", // #6
            "R0.00, R0.50, R0.50, R0.50, R0.50, R0.50, R0.50, R0.50"); // #7
      }
    
      public void testWarmUpWithColdFactor() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm64.go

    	SYS_ADJTIME              = 421 // { int|sys|50|adjtime(const struct timeval *delta, struct timeval *olddelta); }
    	SYS_FUTIMES              = 423 // { int|sys|50|futimes(int fd, const struct timeval *tptr); }
    	SYS_LUTIMES              = 424 // { int|sys|50|lutimes(const char *path, const struct timeval *tptr); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  3. tests/test_query.py

        assert response.status_code == 200
        assert response.json() == "foo bar"
    
    
    def test_query_int_optional_query_50():
        response = client.get("/query/int/optional?query=50")
        assert response.status_code == 200
        assert response.json() == "foo bar 50"
    
    
    def test_query_int_optional_query_foo():
        response = client.get("/query/int/optional?query=foo")
        assert response.status_code == 422
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/results/TestDataGeneratorTest.groovy

                    [
                        label: 'master vs 5.0-mockbaseline-1',
                        data: [[0, 100]]
                    ],
                    [
                        label: 'master vs 5.0-mockbaseline-2',
                        data: [[1, -50]]
                    ],
                ],
                confidence: [
                    [
                        label: 'master vs 5.0-mockbaseline-1',
                        data: [[0, 68.27]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. test/codegen/strings.go

    func ConstantLoad() {
    	// 12592 = 0x3130
    	//    50 = 0x32
    	// amd64:`MOVW\t\$12592, \(`,`MOVB\t\$50, 2\(`
    	//   386:`MOVW\t\$12592, \(`,`MOVB\t\$50, 2\(`
    	//   arm:`MOVW\t\$48`,`MOVW\t\$49`,`MOVW\t\$50`
    	// arm64:`MOVD\t\$12592`,`MOVD\t\$50`
    	//  wasm:`I64Const\t\$12592`,`I64Store16\t\$0`,`I64Const\t\$50`,`I64Store8\t\$2`
    	// mips64:`MOVV\t\$48`,`MOVV\t\$49`,`MOVV\t\$50`
    	bsink = []byte("012")
    
    	// 858927408 = 0x33323130
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 26 17:17:28 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. src/crypto/internal/alias/alias_test.go

    	anyOverlap, inexactOverlap bool
    }{
    	{a[:], b[:], false, false},
    	{a[:], b[:0], false, false},
    	{a[:], b[:50], false, false},
    	{a[40:50], a[50:60], false, false},
    	{a[40:50], a[60:70], false, false},
    	{a[:51], a[50:], true, true},
    	{a[:], a[:], true, false},
    	{a[:50], a[:60], true, false},
    	{a[:], nil, false, false},
    	{nil, nil, false, false},
    	{a[:], a[:0], false, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 17 18:46:05 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/work_why_download_graph.txt

    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.2.mod
    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.2.zip
    ! exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.0.info
    ! exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.0.mod
    grep '^rsc\.io/quote v1\.5\.2/go\.mod h1:' go.work.sum
    grep '^rsc\.io/quote v1\.5\.2 h1:' go.work.sum
    
    go clean -modcache
    rm go.work.sum
    go mod download
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 23:07:08 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/ConfigurableLauncher.java

         * @since 2.6
         */
        @Override
        T withArguments(Iterable<String> arguments);
    
        /**
         * {@inheritDoc}
         * @since 5.0
         */
        @Override
        T addArguments(String... arguments);
    
        /**
         * {@inheritDoc}
         * @since 5.0
         */
        @Override
        T addArguments(Iterable<String> arguments);
    
        /**
         * {@inheritDoc}
         * @since 1.0-milestone-3
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/crossVersionTest/groovy/org/gradle/plugin/devel/PrecompiledGroovyPluginCrossVersionSpec.groovy

                    id '$PLUGIN_ID' version '1.0'
                }
            """
        }
    
        def "precompiled Groovy plugin built with current version can be used with Gradle 5.0+"() {
            Assume.assumeTrue(previous.version >= GradleVersion.version('5.0'))
    
            given:
            precompiledGroovyPluginBuiltWith(version(getCurrent()))
    
            when:
            def result = pluginTaskExecutedWith(version(getPrevious())).run()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. pkg/scheduler/apis/config/v1/defaults_test.go

    					ResourceName:      "kube-scheduler",
    				},
    				ClientConnection: componentbaseconfig.ClientConnectionConfiguration{
    					QPS:         50,
    					Burst:       100,
    					ContentType: "application/vnd.kubernetes.protobuf",
    				},
    				PercentageOfNodesToScore: ptr.To[int32](50),
    				PodInitialBackoffSeconds: ptr.To[int64](1),
    				PodMaxBackoffSeconds:     ptr.To[int64](10),
    				Profiles: []configv1.KubeSchedulerProfile{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:03:04 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top