Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for picard (0.32 sec)

  1. pkg/config/validation/validation_test.go

    				ServerCertificate: "Captain Jean-Luc Picard",
    				PrivateKey:        "Khan Noonien Singh",
    			},
    			"", "",
    		},
    		{
    			"simple with client bundle",
    			&networking.ServerTLSSettings{
    				Mode:              networking.ServerTLSSettings_SIMPLE,
    				ServerCertificate: "Captain Jean-Luc Picard",
    				PrivateKey:        "Khan Noonien Singh",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    	f    func(io.ReadCloser)
    }
    
    var testHandlerBodyConsumers = []testHandlerBodyConsumer{
    	{"nil", func(io.ReadCloser) {}},
    	{"close", func(r io.ReadCloser) { r.Close() }},
    	{"discard", func(r io.ReadCloser) { io.Copy(io.Discard, r) }},
    }
    
    func TestRequestBodyReadErrorClosesConnection(t *testing.T) {
    	setParallel(t)
    	defer afterTest(t)
    	for _, handler := range testHandlerBodyConsumers {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. src/net/http/transport_test.go

    		if n, _ := io.Copy(io.Discard, r.Body); n == 0 {
    			t.Error("body length is zero")
    		}
    	})).ts
    	c := ts.Client()
    	c.Transport.(*Transport).RegisterProtocol("http", roundTripFunc(func(r *Request) (*Response, error) {
    		// Draining body to trigger failure condition on actual request to server.
    		if n, _ := io.Copy(io.Discard, r.Body); n == 0 {
    			t.Error("body length is zero during round trip")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/scheduling_queue_test.go

    			isSchedulingQueueHintEnabled: true,
    			initialPods:                  []*v1.Pod{pod},
    			actions: []action{
    				// This won't be added to inFlightEvents because no inFlightPods at this point.
    				{eventHappens: &PvcAdd},
    				{podPopped: pod},
    				// This gets added for the pod.
    				{eventHappens: &PvAdd},
    				// This doesn't get added because no plugin is interested in PvUpdate.
    				{eventHappens: &PvUpdate},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. src/net/http/server.go

    					w.closeAfterReply = true
    				}
    			case bdy.unreadDataSizeLocked() >= maxPostHandlerReadBytes:
    				tooBig = true
    			default:
    				discard = true
    			}
    			bdy.mu.Unlock()
    		default:
    			discard = true
    		}
    
    		if discard {
    			_, err := io.CopyN(io.Discard, w.reqBody, maxPostHandlerReadBytes+1)
    			switch err {
    			case nil:
    				// There must be even more data left over.
    				tooBig = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. src/database/sql/sql.go

    	// back, or for the associated context to be closed.
    	<-tx.ctx.Done()
    
    	// Discard and close the connection used to ensure the
    	// transaction is closed and the resources are released.  This
    	// rollback does nothing if the transaction has already been
    	// committed or rolled back.
    	// Do not discard the connection if the connection knows
    	// how to reset the session.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  7. cmd/admin-handlers.go

    	enc := json.NewEncoder(w)
    	if err := enc.Encode(madmin.ClientPerfExtraTime{TimeSpent: atomic.LoadInt64(&globalLastClientPerfExtraTime)}); err != nil {
    		return
    	}
    }
    
    // ClientDevNull - everything goes to io.Discard
    // [POST] /minio/admin/v3/speedtest/client/devnull
    func (a adminAPIHandlers) ClientDevNull(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    	timeStart := time.Now()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

      if ! tune2fs -l "${device}" ; then
        echo "Formatting '${device}'"
        mkfs.ext4 -F "${device}"
      fi
    
      mkdir -p "${mountpoint}"
      echo "Mounting '${device}' at '${mountpoint}'"
      mount -o discard,defaults "${device}" "${mountpoint}"
      chmod a+w "${mountpoint}"
    }
    
    # Gets a devices UUID and bind mounts the device to mount location in
    # /mnt/disks/by-id/
    function unique-uuid-bind-mount(){
    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. doc/go1.17_spec.html

    computed modulo 2<sup><i>n</i></sup>, where <i>n</i> is the bit width of
    the <a href="#Numeric_types">unsigned integer</a>'s type.
    Loosely speaking, these unsigned integer operations
    discard high bits upon overflow, and programs may rely on "wrap around".
    </p>
    <p>
    For signed integers, the operations <code>+</code>,
    <code>-</code>, <code>*</code>, <code>/</code>, and <code>&lt;&lt;</code> may legally
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  10. pkg/controller/garbagecollector/garbagecollector_test.go

    	//
    	// The 1s sleep in the test allows GetDeletableResources and
    	// gc.resyncMonitors to run ~5 times to ensure the changes to the
    	// fakeDiscoveryClient are picked up.
    	go gc.Sync(tCtx, fakeDiscoveryClient, 200*time.Millisecond)
    
    	// Wait until the sync discovers the initial resources
    	time.Sleep(1 * time.Second)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top