Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 116 for pirates (0.19 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/GroovyInteroperability.kt

     *
     * @see [KotlinClosure1]
     */
    fun <T> Any.closureOf(action: T.() -> Unit): Closure<Any?> =
        KotlinClosure1(action, this, this)
    
    
    /**
     * Adapts a Kotlin function to a Groovy [Closure] that operates on the
     * configured Closure delegate.
     *
     * @param T the expected type of the delegate argument to the closure.
     * @param action the function to be adapted.
     *
     * @see [KotlinClosure1]
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  2. src/internal/trace/reader.go

    		}
    		return &Reader{
    			go121Events: convertOldFormat(tr),
    		}, nil
    	case version.Go122, version.Go123:
    		return &Reader{
    			r: br,
    			order: ordering{
    				mStates:     make(map[ThreadID]*mState),
    				pStates:     make(map[ProcID]*pState),
    				gStates:     make(map[GoID]*gState),
    				activeTasks: make(map[TaskID]taskState),
    			},
    			// Don't emit a sync event when we first go to emit events.
    			emittedSync: true,
    		}, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. src/time/time.go

    	_, _, day, _ := t.date(true)
    	return day
    }
    
    // Weekday returns the day of the week specified by t.
    func (t Time) Weekday() Weekday {
    	return absWeekday(t.abs())
    }
    
    // absWeekday is like Weekday but operates on an absolute time.
    func absWeekday(abs uint64) Weekday {
    	// January 1 of the absolute year, like January 1 of 2001, was a Monday.
    	sec := (abs + uint64(Monday)*secondsPerDay) % secondsPerWeek
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storageversion/manager.go

    	// apiserver may dedup and update StorageVersion for extensions.ingresses,
    	// while another apiserver may dedup and update StorageVersion for
    	// networking.k8s.io.ingresses. The storage migrator (which migrates objects
    	// per GroupResource) will migrate these resources twice, since both
    	// StorageVersion objects have CommonEncodingVersion (each with one server registered).
    	sortResourceInfosByGroupResource(resources)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 17:47:19 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/ztunnel-dashboard.gen.json

             "targets": [
                {
                   "datasource": {
                      "type": "prometheus",
                      "uid": "$datasource"
                   },
                   "expr": "sum by (pod) (\n  irate(\n    container_cpu_usage_seconds_total{container=\"istio-proxy\", pod=~\"ztunnel-.*\"}\n  [$__rate_interval])\n)",
                   "legendFormat": "Container ({{pod}})"
                }
             ],
             "title": "CPU Usage",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top