Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 110 for JSpecify (0.32 sec)

  1. pkg/controller/job/job_controller.go

    			terminating = controller.CountTerminatingPods(jobCtx.pods)
    		} else {
    			terminating = *jobCtx.terminating
    		}
    	}
    	wantActive := int32(0)
    	if job.Spec.Completions == nil {
    		// Job does not specify a number of completions.  Therefore, number active
    		// should be equal to parallelism, unless the job has seen at least
    		// once success, in which leave whatever is running, running.
    		if jobCtx.succeeded > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/init.go

    		if mainModulePaths[r.Old.Path] && r.Old.Version == "" {
    			base.Errorf("go: workspace module %v is replaced at all versions in the go.work file. To fix, remove the replacement from the go.work file or specify the version at which to replace the module.", r.Old.Path)
    		}
    		replacedByWorkFile[r.Old.Path] = true
    		v, ok := mainModules.highestReplaced[r.Old.Path]
    		if !ok || gover.ModCompare(r.Old.Path, r.Old.Version, v) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/adminlte.min.js.map

    this._overlay = $(this._settings.overlayTemplate)\n\n      if (element.hasClass(ClassName.CARD)) {\n        this._parent = element\n      }\n\n      if (this._settings.source === '') {\n        throw new Error('Source url was not defined. Please specify a url in your CardRefresh source option.');\n      }\n\n      this._init();\n\n      if (this._settings.loadOnInit) {\n        this.load();\n      }\n    }\n\n    load() {\n      this._addOverlay()\n      this._settings.onLoadStart.call($(this))\n\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 07:55:41 UTC 2020
    - 77K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    These objects have methods that allow you to specify files, directories and values which constitute the task’s inputs and outputs.
    In fact, the runtime API has almost feature parity with the annotations.
    
    It lacks equivalents for
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.3.md

    * AWS volumes: Use /dev/xvdXX names with EC2 ([#27628](https://github.com/kubernetes/kubernetes/pull/27628), [@justinsb](https://github.com/justinsb))
    * Add a test config variable to specify desired Docker version to run on GCI. ([#26813](https://github.com/kubernetes/kubernetes/pull/26813), [@wonderfly](https://github.com/wonderfly))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  6. src/cmd/go/internal/test/test.go

    	    The default is for each test to analyze only the package being tested.
    	    See 'go help packages' for a description of package patterns.
    	    Sets -cover.
    
    	-cpu 1,2,4
    	    Specify a list of GOMAXPROCS values for which the tests, benchmarks or
    	    fuzz tests should be executed. The default is the current value
    	    of GOMAXPROCS. -cpu does not apply to fuzz tests matched by -fuzz.
    
    	-failfast
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. pilot/pkg/model/push_context.go

    	out := make(map[string]sets.Set[int])
    
    	addDestination := func(host string, port *networking.PortSelector) {
    		// Use the value 0 as a sentinel indicating that one of the destinations
    		// in the Virtual Service does not specify a port for this host.
    		pn := 0
    		if port != nil {
    			pn = int(port.Number)
    		}
    		sets.InsertOrNew(out, host, pn)
    	}
    
    	for _, h := range v.Http {
    		for _, r := range h.Route {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/load.go

    		if err != nil {
    			ld.error(err)
    			break
    		}
    		if changed {
    			// Don't resolve missing imports until the module graph has stabilized.
    			// If the roots are still changing, they may turn out to specify a
    			// requirement on the missing package(s), and we would rather use a
    			// version specified by a new root than add a new dependency on an
    			// unrelated version.
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    have been imported from a V1 TensorFlow graph, where feeds/fetches/targets are
    not provided at certain stages of IR transformation (e.g. pre-placement).
    
    Option `ops-to-preserve` allows to specify ops that should not be pruned,
    regardless of their reachability.
    
    For example, the following:
    
    ```mlir
    func @graph(%arg0: tensor<i32>, %arg1: tensor<i32>) -> tensor<i32> {
      %graph = tf_executor.graph {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  10. src/cmd/cgo/gcc.go

    	gp := make([]*ast.Field, len(dtype.ParamType))
    	for i, f := range dtype.ParamType {
    		// gcc's DWARF generator outputs a single DotDotDotType parameter for
    		// function pointers that specify no parameters (e.g. void
    		// (*__cgo_0)()).  Treat this special case as void. This case is
    		// invalid according to ISO C anyway (i.e. void (*__cgo_1)(...) is not
    		// legal).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top