Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 1,578 for lasta (0.16 sec)

  1. src/cmd/compile/internal/ssa/numberlines.go

    			if f.pass.stats > 1 {
    				f.LogStat("file", v.f, "low", v.lp.first, "high", v.lp.last)
    			}
    			total += uint64(v.lp.last - v.lp.first)
    			if maxfile < v.f {
    				maxfile = v.f
    			}
    			if minline > v.lp.first {
    				minline = v.lp.first
    			}
    			if maxline < v.lp.last {
    				maxline = v.lp.last
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 21:26:13 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. src/regexp/syntax/regexp.go

    )
    
    // addSpan enables the flags f around start..last,
    // by setting flags[start] = f and flags[last] = flagOff.
    func addSpan(start, last *Regexp, f printFlags, flags *map[*Regexp]printFlags) {
    	if *flags == nil {
    		*flags = make(map[*Regexp]printFlags)
    	}
    	(*flags)[start] = f
    	(*flags)[last] |= flagOff // maybe start==last
    }
    
    // calcFlags calculates the flags to print around each subexpression in re,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:51 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/lastappliedupdater.go

    		lastAppliedValue, err := buildLastApplied(newObj)
    		if err != nil {
    			return nil, nil, fmt.Errorf("failed to build last-applied annotation: %v", err)
    		}
    		err = SetLastApplied(liveObj, lastAppliedValue)
    		if err != nil {
    			return nil, nil, fmt.Errorf("failed to set last-applied annotation: %v", err)
    		}
    	}
    	return liveObj, managed, err
    }
    
    func hasLastApplied(obj runtime.Object) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/deadstore.go

    		}
    		if len(stores) == 0 {
    			continue
    		}
    
    		// find last store in the block
    		var last *Value
    		for _, v := range stores {
    			if storeUse.contains(v.ID) {
    				continue
    			}
    			if last != nil {
    				b.Fatalf("two final stores - simultaneous live stores %s %s", last.LongString(), v.LongString())
    			}
    			last = v
    		}
    		if last == nil {
    			b.Fatalf("no last store found - cycle?")
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.cc

        return i + (remat.insert - remat.begin);
      };
    
      // Helper struct: bundles first and last use of a tensor within
      // a contiguous range of operations.
      struct TensorUse {
        int first_use;
        int last_use;
      };
    
      // For all tensors in the operation range to be cloned, store their first and
      // last use within that range. This will be needed below to decide whether a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  6. internal/cachevalue/cache.go

    	"sync/atomic"
    	"time"
    )
    
    // Opts contains options for the cache.
    type Opts struct {
    	// When set to true, return the last cached value
    	// even if updating the value errors out.
    	// Returns the last good value AND the error.
    	ReturnLastGood bool
    
    	// If NoWait is set, Get() will return the last good value,
    	// if TTL has expired but 2x TTL has not yet passed,
    	// but will fetch a new value in the background.
    	NoWait bool
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 12:50:46 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

          limiter.acquire(); // #1
        }
        stopwatch.sleepMillis(500); // #2: to repay for the last acquire
        stopwatch.sleepMillis(4000); // #3: becomes cold again
        for (int i = 0; i < 8; i++) {
          limiter.acquire(); // // #4
        }
        stopwatch.sleepMillis(500); // #5: to repay for the last acquire
        stopwatch.sleepMillis(2000); // #6: didn't get cold! It would take another 2 seconds to go cold
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

          limiter.acquire(); // #1
        }
        stopwatch.sleepMillis(500); // #2: to repay for the last acquire
        stopwatch.sleepMillis(4000); // #3: becomes cold again
        for (int i = 0; i < 8; i++) {
          limiter.acquire(); // // #4
        }
        stopwatch.sleepMillis(500); // #5: to repay for the last acquire
        stopwatch.sleepMillis(2000); // #6: didn't get cold! It would take another 2 seconds to go cold
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  9. manifests/addons/dashboards/pilot-dashboard.gen.json

                "w": 6,
                "x": 0,
                "y": 2
             },
             "id": 4,
             "interval": "5s",
             "options": {
                "legend": {
                   "calcs": [
                      "last",
                      "max"
                   ],
                   "displayMode": "table"
                }
             },
             "pluginVersion": "v11.0.0",
             "targets": [
                {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift3Test.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top