Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for discarded (0.2 sec)

  1. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

                "type": "string"
              },
              "valueExpression": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K 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. 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)
  5. 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)
  6. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    			ExpectedThreeWay:       `{"complex_nullable":{"key":null}}`,
    			ExpectedThreeWayResult: `{"array":[1,2,3],"complex":{"nested":true},"complex_nullable":{},"name":"foo","scalar":true}`,
    		},
    		"discard nulls in nested and adds not nulls": {
    			Original: `{"array":[1,2,3],"complex":{"nested":true},"name":"foo","scalar":true}`,
    			Current:  `{"array":[1,2,3],"complex":{"nested":true},"name":"foo","scalar":true}`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  7. 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)
  8. guava/src/com/google/common/cache/LocalCache.java

              return 0;
            }
    
            @Override
            public Iterator<Object> iterator() {
              return ImmutableSet.of().iterator();
            }
          };
    
      /** Queue that discards all elements. */
      @SuppressWarnings("unchecked") // impl never uses a parameter or returns any non-null value
      static <E> Queue<E> discardingQueue() {
        return (Queue) DISCARDING_QUEUE;
      }
    
      /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/LocalCache.java

              return 0;
            }
    
            @Override
            public Iterator<Object> iterator() {
              return ImmutableSet.of().iterator();
            }
          };
    
      /** Queue that discards all elements. */
      @SuppressWarnings("unchecked") // impl never uses a parameter or returns any non-null value
      static <E> Queue<E> discardingQueue() {
        return (Queue) DISCARDING_QUEUE;
      }
    
      /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  10. src/crypto/x509/x509_test.go

    	}
    }
    
    func TestGob(t *testing.T) {
    	// Test that gob does not reject Certificate.
    	// See go.dev/issue/65633.
    	cert := new(Certificate)
    	err := gob.NewEncoder(io.Discard).Encode(cert)
    	if err != nil {
    		t.Fatal(err)
    	}
    }
    
    func TestRejectCriticalAKI(t *testing.T) {
    	template := Certificate{
    		SerialNumber: big.NewInt(1),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
Back to top