Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Accounting (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/runtime/proc.go

    		for _, pp := range allp {
    			if pp.status != _Pgcstop {
    				bad = "stopTheWorld: not stopped (status != _Pgcstop)"
    			}
    			if pp.gcStopTime == 0 && bad == "" {
    				bad = "stopTheWorld: broken CPU time accounting"
    			}
    			stoppingCPUTime += finish - pp.gcStopTime
    			pp.gcStopTime = 0
    		}
    	}
    	if freezing.Load() {
    		// Some other thread is panicking. This can cause the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. src/net/http/serve_test.go

    	if g, e := response1, "RA:21.21.21.21:21"; g != e {
    		t.Fatalf("response 1 addr = %q; want %q", g, e)
    	}
    }
    
    // TestHeadResponses verifies that all MIME type sniffing and Content-Length
    // counting of GET requests also happens on HEAD requests.
    func TestHeadResponses(t *testing.T) { run(t, testHeadResponses) }
    func testHeadResponses(t *testing.T, mode testMode) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  7. src/database/sql/sql.go

    }
    
    // depSet is a finalCloser's outstanding dependencies
    type depSet map[any]bool // set of true bools
    
    // The finalCloser interface is used by (*DB).addDep and related
    // dependency reference counting.
    type finalCloser interface {
    	// finalClose is called when the reference count of an object
    	// goes to zero. (*DB).mu is not held while calling it.
    	finalClose() error
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/generic.rules

    // To rewrite x%c == 0 requires pattern matching the rewritten expression
    // and checking that the division by the same constant wasn't already calculated.
    // This check is made by counting uses of the magic constant multiplication.
    // Note that if there were an intermediate opt pass, this rule could be applied
    // directly on the Div op and magic division rewrites could be delayed to late opt.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller_test.go

    func (fe FakeJobExpectations) SatisfiedExpectations(logger klog.Logger, controllerKey string) bool {
    	fe.expSatisfied()
    	return fe.satisfied
    }
    
    // TestSyncJobExpectations tests that a pod cannot sneak in between counting active pods
    // and checking expectations.
    func TestSyncJobExpectations(t *testing.T) {
    	_, ctx := ktesting.NewTestContext(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
Back to top