Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 89 for nack (0.14 sec)

  1. src/net/http/server.go

    	// that we have received the client's ACK, and at any rate we don't want to
    	// allow a misbehaving client to soak up server connections indefinitely by
    	// withholding an ACK, nor do we want to go through the complexity or overhead
    	// of using low-level APIs to figure out when a TCP round-trip has completed.
    	//
    	// Instead, we declare that we are “reasonably certain” that we received the
    	// ACK if maxRSTAvoidanceDelay has elapsed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. cmd/object-handlers_test.go

    	objectName := "test-object"
    	// set of byte data for PutObject.
    	// object has to be created before running tests for HeadObject.
    	// this is required even to assert the HeadObject data,
    	// since dataInserted === dataFetched back is a primary criteria for any object storage this assertion is critical.
    	bytesData := []struct {
    		byteData []byte
    	}{
    		{generateBytesData(6 * humanize.MiByte)},
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

                                                        hlo_filter_shape.end());
          tf_filter_shape[2] = input_channels;
          tf_filter_shape[3] = hlo_filter_shape.back() / input_channels;
          auto reshaped_filter = rewriter.create<mhlo::ReshapeOp>(
              rhs.getLoc(),
              RankedTensorType::get(tf_filter_shape, filter_type.getElementType()),
              rhs);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  4. cmd/admin-handlers.go

    // - stop (stops all the MinIO instances in a setup)
    // - freeze (freezes all incoming S3 API calls)
    // - unfreeze (unfreezes previously frozen S3 API calls)
    //
    // This newer API now returns back status per remote peer and local regarding
    // if a "restart/stop" was successful or not. Service signal now supports
    // a dry-run that helps skip the nodes that may have hung drives. By default
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  5. cmd/server_test.go

    }
    
    // TestBucketPolicy - Inserts the bucket policy and verifies it by fetching the policy back.
    // Deletes the policy and verifies the deletion by fetching it back.
    func (s *TestSuiteCommon) TestBucketPolicy(c *check) {
    	// Sample bucket policy.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  6. src/net/http/transport_test.go

    	"time"
    
    	"golang.org/x/net/http/httpguts"
    )
    
    // TODO: test 5 pipelined requests with responses: 1) OK, 2) OK, Connection: Close
    // and then verify that the final 2 responses get errors back.
    
    // hostPortHandler writes back the client's "host:port".
    var hostPortHandler = HandlerFunc(func(w ResponseWriter, r *Request) {
    	if r.FormValue("close") == "true" {
    		w.Header().Set("Connection", "close")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/CallTest.kt

        server.enqueue(MockResponse(body = "abc"))
        client =
          client.newBuilder()
            .hostnameVerifier(RecordingHostnameVerifier())
            .connectionSpecs(
              // Attempt RESTRICTED_TLS then fall back to MODERN_TLS.
              listOf(
                ConnectionSpec.RESTRICTED_TLS,
                ConnectionSpec.MODERN_TLS,
              ),
            )
            .sslSocketFactory(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

            fi
            i=$((i+1))
          fi
        else
          echo "No local NVMe SSD disks found."
        fi
      done
    }
    
    # Local SSDs, if present, are used in a single RAID 0 array and directories that
    # back ephemeral storage are mounted on them (kubelet root, container runtime
    # root and pod logs).
    function ensure-local-ssds-ephemeral-storage() {
      local devices=()
      # Get nvme devices
      for ssd in /dev/nvme*n*; do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/CacheTest.kt

        assertThat(response.body.string()).isEqualTo("")
        server.takeRequest() // seed
        return server.takeRequest()
      }
    
      /**
       * For Last-Modified and Date headers, we should echo the date back in the exact format we were
       * served.
       */
      @Test
      fun retainServedDateFormat() {
        // Serve a response with a non-standard date format that OkHttp supports.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"baby":                                 "\U0001f476",
    	"baby_bottle":                          "\U0001f37c",
    	"baby_chick":                           "\U0001f424",
    	"baby_symbol":                          "\U0001f6bc",
    	"back":                                 "\U0001f519",
    	"bacon":                                "\U0001f953",
    	"badger":                               "\U0001f9a1",
    	"badminton":                            "\U0001f3f8",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
Back to top