Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 165 for 250 (0.03 sec)

  1. src/net/smtp/smtp_test.go

    	}
    }
    
    var basicServer = `250 mx.google.com at your service
    502 Unrecognized command.
    250-mx.google.com at your service
    250-SIZE 35651584
    250-AUTH LOGIN PLAIN
    250 8BITMIME
    530 Authentication required
    252 Send some mail, I'll try my best
    250 User is valid
    235 Accepted
    250 Sender OK
    250 Receiver OK
    354 Go ahead
    250 Data OK
    221 OK
    `
    
    var basicClient = `HELO localhost
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/WholeOperationTimeoutTest.kt

        server.enqueue(
          MockResponse.Builder()
            .headersDelay(250, TimeUnit.MILLISECONDS)
            .body(BIG_ENOUGH_BODY)
            .build(),
        )
        val request =
          Request.Builder()
            .url(server.url("/"))
            .post(sleepingRequestBody(250))
            .build()
        val call = client.newCall(request)
        call.timeout().timeout(2000, TimeUnit.MILLISECONDS)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/connection/FastFallbackExchangeFinderTest.kt

        )
    
        taskFaker.assertNoMoreTasks()
      }
    
      /**
       * This test performs two races:
       *
       *  * The first race is between plan0 and plan1, with a 250 ms head start for plan0.
       *  * The second race is between plan2 and plan3, with a 250 ms head start for plan2.
       *
       * We get plan0 and plan1 from the route planner.
       * We get plan2 as a follow-up to plan1, typically retry the same IP but different TLS.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 24 04:40:49 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/calibration_parameters_test.cc

                                          /*num_bins=*/256);
      EXPECT_FLOAT_EQ(bin_width, 0.125);
      int32_t actual_num_bins =
          CalculateActualNumBins(/*min_value=*/0.0, /*max_value=*/25.0, bin_width);
      EXPECT_EQ(actual_num_bins, 200);
    
      // Calculate the bin width with the actual num bins.
      float raw_bin_width = 25.0 / actual_num_bins;
      EXPECT_FLOAT_EQ(bin_width, raw_bin_width);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 09:09:34 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.25.md

        - [Removed](#removed-16)
    - [v1.25.0-rc.1](#v1250-rc1)
      - [Downloads for v1.25.0-rc.1](#downloads-for-v1250-rc1)
        - [Source Code](#source-code-17)
        - [Client Binaries](#client-binaries-17)
        - [Server Binaries](#server-binaries-17)
        - [Node Binaries](#node-binaries-17)
        - [Container Images](#container-images-17)
      - [Changelog since v1.25.0-rc.0](#changelog-since-v1250-rc0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  6. releasenotes/notes/pilot-autoscale.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
      - |
        **Improved** the variables `PILOT_MAX_REQUESTS_PER_SECOND` (which rate limits the incoming requests, previously defaulted to 25.0)
        and `PILOT_PUSH_THROTTLE` (which limits the number of concurrent responses, previously defaulted to 100) to automatically scale with the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 21 08:42:13 UTC 2023
    - 428 bytes
    - Viewed (0)
  7. src/net/smtp/smtp.go

    // server does not support ehlo.
    func (c *Client) helo() error {
    	c.ext = nil
    	_, _, err := c.cmd(250, "HELO %s", c.localName)
    	return err
    }
    
    // ehlo sends the EHLO (extended hello) greeting to the server. It
    // should be the preferred greeting for servers that support it.
    func (c *Client) ehlo() error {
    	_, msg, err := c.cmd(250, "EHLO %s", c.localName)
    	if err != nil {
    		return err
    	}
    	ext := make(map[string]string)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/imagelocality/image_locality_test.go

    				},
    				SizeBytes: int64(2000 * mb),
    			},
    		},
    	}
    
    	node25010 := v1.NodeStatus{
    		Images: []v1.ContainerImage{
    			{
    				Names: []string{
    					"gcr.io/250:latest",
    				},
    				SizeBytes: int64(250 * mb),
    			},
    			{
    				Names: []string{
    					"gcr.io/10:latest",
    					"gcr.io/10:v1",
    				},
    				SizeBytes: int64(10 * mb),
    			},
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 06:17:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/concurrent/TaskRunnerRealBackendTest.kt

    import org.junit.jupiter.api.Test
    
    /**
     * Integration test to confirm that [TaskRunner] works with a real backend. Business logic is all
     * exercised by [TaskRunnerTest].
     *
     * This test is doing real sleeping with tolerances of 250 ms. Hopefully that's enough for even the
     * busiest of CI servers.
     */
    @Tag("Slowish")
    class TaskRunnerRealBackendTest {
      private val log = LinkedBlockingDeque<String>()
    
      private val loggingUncaughtExceptionHandler =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. src/internal/runtime/syscall/defs_linux_s390x.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package syscall
    
    const (
    	SYS_FCNTL         = 55
    	SYS_MPROTECT      = 125
    	SYS_EPOLL_CTL     = 250
    	SYS_EPOLL_PWAIT   = 312
    	SYS_EPOLL_CREATE1 = 327
    	SYS_EPOLL_PWAIT2  = 441
    	SYS_EVENTFD2      = 323
    
    	EFD_NONBLOCK = 0x800
    )
    
    type EpollEvent struct {
    	Events    uint32
    	pad_cgo_0 [4]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 14:54:29 UTC 2024
    - 489 bytes
    - Viewed (0)
Back to top