Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 291 for discarded (0.53 sec)

  1. internal/logger/target/http/http.go

    	// Wait for messages to be sent...
    	h.wg.Wait()
    
    	// Set logch to nil and close it.
    	// This will block all Send operations,
    	// and finish the existing ones.
    	// All future ones will be discarded.
    	h.logChMu.Lock()
    	xioutil.SafeClose(h.logCh)
    	h.logCh = nil
    	h.logChMu.Unlock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 02 03:03:39 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. src/encoding/gob/decode.go

    	ovfl  error // error message for overflow/underflow (for arrays, of the elements)
    }
    
    // ignoreUint discards a uint value with no destination.
    func ignoreUint(i *decInstr, state *decoderState, v reflect.Value) {
    	state.decodeUint()
    }
    
    // ignoreTwoUints discards a uint value with no destination. It's used to skip
    // complex values.
    func ignoreTwoUints(i *decInstr, state *decoderState, v reflect.Value) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  3. src/encoding/json/decode.go

    //
    // To unmarshal a JSON array into a Go array, Unmarshal decodes
    // JSON array elements into corresponding Go array elements.
    // If the Go array is smaller than the JSON array,
    // the additional JSON array elements are discarded.
    // If the JSON array is smaller than the Go array,
    // the additional Go array elements are set to zero values.
    //
    // To unmarshal a JSON object into a map, Unmarshal first establishes a map to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/dilated_conv.h

    // WaveNet) to the 4D arrays that Conv2D requires. Padding and BiasAdd are
    // thrown in just for the extra headache. Padding adapts non-conforming input
    // sizes, and can be discarded. The bias is necessary, so is kept.
    template <typename Conv2dOpTy>
    class ConvertTFDilatedConvOp : public OpRewritePattern<Conv2dOpTy> {
     private:
      using OpRewritePattern<Conv2dOpTy>::OpRewritePattern;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/primitives/ImmutableLongArray.java

       * long} values are boxed into {@link Long} instances on demand, which can be very expensive. The
       * returned list should be used once and discarded. For any usages beyond that, pass the returned
       * list to {@link com.google.common.collect.ImmutableList#copyOf(Collection) ImmutableList.copyOf}
       * and use that list instead.
       */
      public List<Long> asList() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/audit.go

    			"If the size of an event is greater than this number, first request and response are removed, and "+
    			"if this doesn't reduce the size enough, event is discarded.")
    }
    
    func (o *AuditTruncateOptions) wrapBackend(delegate audit.Backend, gv schema.GroupVersion) audit.Backend {
    	if !o.Enabled {
    		return delegate
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 24 06:30:04 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  7. src/runtime/sys_openbsd_amd64.s

    	RET
    
    TEXT runtime·pthread_create_trampoline(SB),NOSPLIT,$16
    	MOVQ	0(DI), SI		// arg 2 - attr
    	MOVQ	8(DI), DX		// arg 3 - start
    	MOVQ	16(DI), CX		// arg 4 - arg
    	MOVQ	SP, DI			// arg 1 - &thread (discarded)
    	CALL	libc_pthread_create(SB)
    	RET
    
    TEXT runtime·thrkill_trampoline(SB),NOSPLIT,$0
    	MOVL	8(DI), SI		// arg 2 - signal
    	MOVQ	$0, DX			// arg 3 - tcb
    	MOVL	0(DI), DI		// arg 1 - tid
    	CALL	libc_thrkill(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/primitives/ImmutableDoubleArray.java

       * double} values are boxed into {@link Double} instances on demand, which can be very expensive.
       * The returned list should be used once and discarded. For any usages beyond that, pass the
       * returned list to {@link com.google.common.collect.ImmutableList#copyOf(Collection)
       * ImmutableList.copyOf} and use that list instead.
       */
      public List<Double> asList() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/primitives/ImmutableLongArray.java

       * long} values are boxed into {@link Long} instances on demand, which can be very expensive. The
       * returned list should be used once and discarded. For any usages beyond that, pass the returned
       * list to {@link com.google.common.collect.ImmutableList#copyOf(Collection) ImmutableList.copyOf}
       * and use that list instead.
       */
      public List<Long> asList() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 21K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/rest/rest.go

    	// code and body, so the ServeHTTP method should exit after invoking the responder. The Handler will
    	// be used for a single API request and then discarded. The Responder is guaranteed to write to the
    	// same http.ResponseWriter passed to ServeHTTP.
    	Connect(ctx context.Context, id string, options runtime.Object, r Responder) (http.Handler, error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 18.6K bytes
    - Viewed (0)
Back to top