Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 166 for pirates (0.59 sec)

  1. src/go/doc/comment/text.go

    	// punctuation character, even if the next word would fit in
    	// those spaces.
    	//
    	// We care about ending in punctuation characters because
    	// it makes the text easier to skim if not too many sentences
    	// or phrases begin with a single word on the previous line.
    
    	// A score is the score (also called weight) for a given line.
    	// add and cmp add and compare scores.
    	type score struct {
    		hi int64
    		lo int64
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/rest/update.go

    	WarningsOnUpdate(ctx context.Context, obj, old runtime.Object) []string
    	// Canonicalize allows an object to be mutated into a canonical form. This
    	// ensures that code that operates on these objects can rely on the common
    	// form for things like comparison.  Canonicalize is invoked after
    	// validation has succeeded but before the object has been persisted.
    	// This method may mutate the object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 27 11:48:28 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  3. src/cmd/gofmt/rewrite.go

    	callExprType  = reflect.TypeOf((*ast.CallExpr)(nil))
    	scopePtrType  = reflect.TypeOf((*ast.Scope)(nil))
    )
    
    // apply replaces each AST field x in val with f(x), returning val.
    // To avoid extra conversions, f operates on the reflect.Value form.
    func apply(f func(reflect.Value) reflect.Value, val reflect.Value) reflect.Value {
    	if !val.IsValid() {
    		return reflect.Value{}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 27 22:07:13 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/reference/third_party_integration.adoc

    
    [[sec:embedding_features]]
    === Tooling API Features
    
    A fundamental characteristic of the Tooling API is that it operates in a version independent way.
    This means that you can use the same API to work with builds that use different versions of Gradle, including versions that are newer or older than the version of the Tooling API that you are using.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. plugin/pkg/admission/limitranger/admission.go

    	InPlacePodVerticalScalingEnabled bool
    }
    
    // podRequests is a simplified version of pkg/api/v1/resource/PodRequests that operates against the core version of
    // pod. Any changes to that calculation should be reflected here.
    // TODO: Maybe we can consider doing a partial conversion of the pod to a v1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 13:04:39 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  6. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    within, and the interior blue without and red within. These are the Phænomena of thick convexo-concave Plates of Glass, which are every where of the same thickness. There are yet other Phænomena when these Plates are a little thicker on one side than on the other, and others when the Plates are more or less concave than convex, or plano-convex, or double-convex. For in all these cases the Plates make Rings of Colours, but after various manners; all which, so far as I have yet observed, follow from...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.td

      let description = [{
        This is a variation of DecomposeResourceOps pass. It operates on a module and
        only decomposes ops within a device cluster (tf_device.cluster op) and any
        functions reachable from the cluster.
      }];
    
      let constructor = "TFDevice::CreateDecomposeResourceOpsInClusterPass()";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

       * we change the rate.
       */
      public void testWeNeverGetABurstMoreThanOneSec() {
        RateLimiter limiter = RateLimiter.create(1.0, stopwatch);
        int[] rates = {1000, 1, 10, 1000000, 10, 1};
        for (int rate : rates) {
          int oneSecWorthOfWork = rate;
          stopwatch.sleepMillis(rate * 1000);
          limiter.setRate(rate);
          long burst = measureTotalTimeMillis(limiter, oneSecWorthOfWork, new Random());
    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. guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

       * we change the rate.
       */
      public void testWeNeverGetABurstMoreThanOneSec() {
        RateLimiter limiter = RateLimiter.create(1.0, stopwatch);
        int[] rates = {1000, 1, 10, 1000000, 10, 1};
        for (int rate : rates) {
          int oneSecWorthOfWork = rate;
          stopwatch.sleepMillis(rate * 1000);
          limiter.setRate(rate);
          long burst = measureTotalTimeMillis(limiter, oneSecWorthOfWork, new Random());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  10. src/crypto/internal/edwards25519/scalar.go

    	}
    
    	// We have a value x of 512 bits, but our fiatScalarFromBytes function
    	// expects an input lower than l, which is a little over 252 bits.
    	//
    	// Instead of writing a reduction function that operates on wider inputs, we
    	// can interpret x as the sum of three shorter values a, b, and c.
    	//
    	//    x = a + b * 2^168 + c * 2^336  mod l
    	//
    	// We then precompute 2^168 and 2^336 modulo l, and perform the reduction
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top