Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 76 of 76 for excluding (0.13 sec)

  1. CHANGELOG/CHANGELOG-1.28.md

    - Fixed computing backoff delay when using Job pod failure policy, by including in the backoff delay calculation pod failures ignored from the backoffLimit counter. ([#119434](https://github.com/kubernetes/kubernetes/pull/119434), [@mimowo](https://github.com/mimowo))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.30.md

    - A new kubelet metric `image_pull_duration_seconds` was added. The metric tracks the duration (in seconds) it takes for an image to be pulled, including the time spent in the waiting queue of image puller. The metric is broken down by bucketed image size. ([#121719](https://github.com/kubernetes/kubernetes/pull/121719), [@ruiwen-zhao](https://github.com/ruiwen-zhao))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    	}
    	if cfg.BuildASan {
    		cgoCFLAGS = append([]string{"-fsanitize=address"}, cgoCFLAGS...)
    		cgoLDFLAGS = append([]string{"-fsanitize=address"}, cgoLDFLAGS...)
    	}
    
    	// Allows including _cgo_export.h, as well as the user's .h files,
    	// from .[ch] files in the package.
    	cgoCPPFLAGS = append(cgoCPPFLAGS, "-I", objdir)
    
    	// cgo
    	// TODO: CGO_FLAGS?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    		}
    	}
    
    	// Compute and update the status in cache once the pods are no longer running.
    	// The computation is done here to ensure the pod status used for it contains
    	// information about the container end states (including exit codes) - when
    	// SyncTerminatedPod is called the containers may already be removed.
    	apiPodStatus = kl.generateAPIPodStatus(pod, podStatus, true)
    	kl.statusManager.SetPodStatus(pod, apiPodStatus)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

    #
    # Assumed vars:
    #   MASTER_NAME
    #   NODE_INSTANCE_PREFIX
    #   WINDOWS_NODE_INSTANCE_PREFIX
    #   ZONE
    # This function tears down cluster resources 10 at a time to avoid issuing too many
    # API calls and exceeding API quota. It is important to bring down the instances before bringing
    # down the firewall rules and routes.
    function kube-down() {
      local -r batch=200
    
      detect-project
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      iterator will always produce an `OutOfRange` error.
    
    For greater flexibility, use "Iterator" and "MakeIterator" to define
    an iterator using an arbitrary subgraph, which may capture tensors
    (including fed values) as parameters, and which may be reset multiple
    times by rerunning "MakeIterator".
      }];
    
      let arguments = (ins
        SymbolRefAttr:$dataset_factory,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top