Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 205 for Accounting (0.17 sec)

  1. docs/changelogs/changelog_3x.md

        harmed connection reuse.
     *  Fix: Ensure canceled and discarded HTTP/2 data is not permanently counted against the limited
        flow control window. We had a few bugs where window size accounting was broken when streams
        were canceled or reset.
     *  Fix: Recover gracefully if the TLS session returns an unexpected version (`NONE`) or cipher
        suite (`SSL_NULL_WITH_NULL_NULL`).
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    			return false
    		}
    		lastgc := int64(atomic.Load64(&memstats.last_gc_nanotime))
    		return lastgc != 0 && t.now-lastgc > forcegcperiod
    	case gcTriggerCycle:
    		// t.n > work.cycles, but accounting for wraparound.
    		return int32(t.n-work.cycles.Load()) > 0
    	}
    	return true
    }
    
    // gcStart starts the GC. It transitions from _GCoff to _GCmark (if
    // debug.gcstoptheworld == 0) or performs all of GC (if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. src/runtime/malloc.go

    		asanunpoison(x, userSize)
    	}
    
    	// TODO(mknyszek): We should really count the header as part
    	// of gc_sys or something. The code below just pretends it is
    	// internal fragmentation and matches the GC's accounting by
    	// using the whole allocation slot.
    	fullSize := span.elemsize
    	if rate := MemProfileRate; rate > 0 {
    		// Note cache c only valid while m acquired; see #47302
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/promise/counting.go

    Mike Spreitzer <******@****.***> 1627533325 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 10 14:37:53 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        if (axis != rank - 1 && axis != -1) {
          return false;
        }
        return true;
      }
    };
    
    // This is the UndoBroadcastFullyConnectedBiasAdd pattern in
    // optimize_patterns.td but accounting for QDQ preceding Add's RHS.
    // The following doesn't work in TableGen due to some issues reconstructing
    // TFL_DequantizeOp.
    // def UndoBroadcastFullyConnectedBiasAddWithQDQs : Pat<
    //   (TFL_AddOp $lhs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  6. cmd/xl-storage.go

    				continue
    			}
    
    			if oi.DeleteMarker {
    				sizeS.deleteMarkers++
    			}
    			if oi.VersionID != "" && sz == actualSz {
    				sizeS.versions++
    			}
    			sizeS.totalSize += sz
    
    			// Skip tier accounting if object version is a delete-marker or a free-version
    			// tracking deleted transitioned objects
    			switch {
    			case oi.DeleteMarker, oi.TransitionedObject.FreeVersion:
    				continue
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/cache/LocalCache.java

        /**
         * Drains the recency queue, updating eviction metadata that the entries therein were read in
         * the specified relative order. This currently amounts to adding them to relevant eviction
         * lists (accounting for the fact that they could have been removed from the map since being
         * added to the recency queue).
         */
        @GuardedBy("this")
        void drainRecencyQueue() {
          ReferenceEntry<K, V> e;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/LocalCache.java

        /**
         * Drains the recency queue, updating eviction metadata that the entries therein were read in
         * the specified relative order. This currently amounts to adding them to relevant eviction
         * lists (accounting for the fact that they could have been removed from the map since being
         * added to the recency queue).
         */
        @GuardedBy("this")
        void drainRecencyQueue() {
          ReferenceEntry<K, V> e;
    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. src/go/doc/testdata/blank.1.golden

    		I1
    		I2
    	)
    
    	// Unexported constants counting from blank iota. See issue 9615. 
    	const (
    		_	= iota
    		one	= iota + 1
    	)
    
    
    VARIABLES
    	// 
    	var _ = T(55)
    
    
    FUNCTIONS
    	// 
    	func _()
    
    
    TYPES
    	// S has a padding field. 
    	type S struct {
    		H	uint32
    		_	uint8
    		A	uint8
    	}
    
    	// 
    	type T int
    
    	// T constants counting from a blank constant. 
    	const (
    		_	T	= iota
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 18:01:14 UTC 2017
    - 1001 bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    	var argLen int
    	for _, arg := range cmd.Args {
    		argLen += len(arg)
    	}
    
    	// If we're not approaching 32KB of args, just pass args normally.
    	// (use 30KB instead to be conservative; not sure how accounting is done)
    	if !useResponseFile(cmd.Path, argLen) {
    		return
    	}
    
    	tf, err := os.CreateTemp("", "args")
    	if err != nil {
    		log.Fatalf("error writing long arguments to response file: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top