Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 44 for processPod (0.16 sec)

  1. src/cmd/go/internal/help/helpdoc.go

    		May be "off", "on", or "auto".
    		See https://golang.org/ref/mod#mod-commands.
    	GCCGO
    		The gccgo command to run for 'go build -compiler=gccgo'.
    	GOARCH
    		The architecture, or processor, for which to compile code.
    		Examples are amd64, 386, arm, ppc64.
    	GOBIN
    		The directory where 'go install' will install a command.
    	GOCACHE
    		The directory where the go command will store cached
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	if err != nil {
    		return newErrWatcher(err), nil
    	}
    
    	// We explicitly use thread unsafe version and do locking ourself to ensure that
    	// no new events will be processed in the meantime. The watchCache will be unlocked
    	// on return from this function.
    	// Note that we cannot do it under Cacher lock, to avoid a deadlock, since the
    	// underlying watchCache is calling processEvent under its lock.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. cmd/kubelet/app/server.go

    	})
    
    	return cmd
    }
    
    // mergeKubeletConfigurations merges the provided drop-in configurations with the base kubelet configuration.
    // The drop-in configurations are processed in lexical order based on the file names. This means that the
    // configurations in files with lower numeric prefixes are applied first, followed by higher numeric prefixes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      ValuePortResultMap results_;
    
      // Map from a function to the callers of that function.
      SymbolTableCollection symbol_table_;
      SymbolUserMap symbol_users_;
    
      // Queue of functions being processed.
      llvm::DenseSet<func::FuncOp> queue_set_;
      std::queue<func::FuncOp> queue_;
    
      int64_t graph_version_;
    
      // Op types for which shape inference should be skipped.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. tests/integration/ambient/baseline_test.go

    								from.CallOrFail(t, echo.CallOptions{
    									Address: "111.111.222.222",
    									Port:    to.PortForName("http"),
    									// If request is sent before service is processed it will hit 10s timeout, so fail faster
    									Timeout: time.Millisecond * 500,
    								})
    							})
    					})
    				}
    			}
    		})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller.go

    	reachedMaxUncountedPods := false
    	for _, pod := range jobCtx.pods {
    		if !hasJobTrackingFinalizer(pod) || jobCtx.expectedRmFinalizers.Has(string(pod.UID)) {
    			// This pod was processed in a previous sync.
    			continue
    		}
    		considerPodFailed := isPodFailed(pod, jobCtx.job)
    		if !canRemoveFinalizer(logger, jobCtx, pod, considerPodFailed) {
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    //		the -skip arguments, it is skipped.
    //
    // It also accepts the standard build flags including -v, -n, and -x.
    // The -v flag prints the names of packages and files as they are
    // processed.
    // The -n flag prints commands that would be executed.
    // The -x flag prints commands as they are executed.
    //
    // For more about build flags, see 'go help build'.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      }];
    }
    
    def TPUBridgeExecutorIslandOutliningPass : Pass<"tf-executor-tpu-v1-island-outlining", "ModuleOp"> {
      let summary = "Outline TPU clusters from island into a nested module, so it can "
               "be processed like a V2 module, intended for V1 compatibility mode";
      let constructor = "tf_executor::CreateTFExecutorTPUV1IslandOutliningPass()";
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    	// known running pods from config. If we do terminate running runtime pods that will happen
    	// asynchronously in the background and those will be processed in the next invocation of
    	// HandlePodCleanups.
    	var orphanCount int
    	for _, runningPod := range runningRuntimePods {
    		// If there are orphaned pod resources in CRI that are unknown to the pod worker, terminate them
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.27.md

    - Added `kubelet` Topology Manager metrics to track admission requests processed and occured admission errors. ([#115137](https://github.com/kubernetes/kubernetes/pull/115137), [@swatisehgal](https://github.com/swatisehgal))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
Back to top