Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 245 for terminator (0.2 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

            RegionSuccessor(&getCond(), getCond().front().getArguments()));
      } else if (point.isParent()) {
        // The parent branches to 'cond'. It is also considered to branch to `body`
        // in case the terminator of `cond` doesn't forward the arguments of `cond`.
        regions.push_back(
            RegionSuccessor(&getCond(), getCond().front().getArguments()));
        regions.push_back(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/ops/stablehlo_op_quant_spec.cc

        // Constant ops do not have QuantizableResult attribute but can be
        // quantized.
        return true;
      } else if (op->hasTrait<OpTrait::IsTerminator>() ||
                 isa<quantfork::QuantizeCastOp, quantfork::DequantizeCastOp>(op)) {
        // Terminators, qcast and decast are not quantizable.
        return false;
      }
    
      // `op` is not quantizable when it is an `XlaCallModuleOp` representing lifted
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/batch/v1/types.go

    	// Failed means to wait until a previously created Pod is fully terminated (has phase
    	// Failed or Succeeded) before creating a replacement Pod.
    	Failed PodReplacementPolicy = "Failed"
    )
    
    // PodFailurePolicyOnExitCodesRequirement describes the requirement for handling
    // a failed pod based on its container exit codes. In particular, it lookups the
    // .state.terminated.exitCode for each app container and init container status,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  4. pkg/apis/batch/types.go

    	//Failed means to wait until a previously created Pod is fully terminated (has phase
    	//Failed or Succeeded) before creating a replacement Pod.
    	Failed PodReplacementPolicy = "Failed"
    )
    
    // PodFailurePolicyOnExitCodesRequirement describes the requirement for handling
    // a failed pod based on its container exit codes. In particular, it lookups the
    // .state.terminated.exitCode for each app container and init container status,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_test.go

    	t.Cleanup(terminate)
    	storagetesting.RunTestValidateDeletionWithOnlySuggestionValid(ctx, t, cacher)
    }
    
    func TestDeleteWithConflict(t *testing.T) {
    	ctx, cacher, terminate := testSetup(t)
    	t.Cleanup(terminate)
    	storagetesting.RunTestDeleteWithConflict(ctx, t, cacher)
    }
    
    func TestPreconditionalDeleteWithSuggestion(t *testing.T) {
    	ctx, cacher, terminate := testSetup(t)
    	t.Cleanup(terminate)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 17K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"uncountedTerminatedPods": "uncountedTerminatedPods holds the UIDs of Pods that have terminated but the job controller hasn't yet accounted for in the status counters.\n\nThe job controller creates pods with a finalizer. When a pod terminates (succeeded or failed), the controller does three steps to account for it in the job status:\n\n1. Add the pod UID to the arrays in this field. 2. Remove the pod finalizer....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. pkg/ctrlz/ctrlz.go

    	log.Infof("ControlZ available at %s", s.httpServer.Addr)
    	if listeningTestProbe != nil {
    		go listeningTestProbe()
    	}
    	err := s.httpServer.Serve(s.listener)
    	log.Infof("ControlZ terminated: %v", err)
    	s.shutdown.Done()
    }
    
    // Close terminates ControlZ.
    //
    // Close is not normally used by programs that expose ControlZ, it is primarily intended to be
    // used by tests.
    func (s *Server) Close() {
    	log.Info("Closing ControlZ")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 21:22:53 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.yaml

          allocatedResourcesKey: "0"
        containerID: containerIDValue
        image: imageValue
        imageID: imageIDValue
        lastState:
          running:
            startedAt: "2001-01-01T01:01:01Z"
          terminated:
            containerID: containerIDValue
            exitCode: 1
            finishedAt: "2006-01-01T01:01:01Z"
            message: messageValue
            reason: reasonValue
            signal: 2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. pkg/controller/job/backoff_utils_test.go

    		"Pod with multiple containers and all containers terminated": {
    			pod: v1.Pod{
    				Status: v1.PodStatus{
    					ContainerStatuses: []v1.ContainerStatus{
    						{
    							State: v1.ContainerState{
    								Terminated: &v1.ContainerStateTerminated{FinishedAt: metav1.NewTime(defaultTestTime.Add(-1 * time.Second))},
    							},
    						},
    						{
    							State: v1.ContainerState{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 07:46:41 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/batch/v1/generated.proto

      // +optional
      optional string failedIndexes = 10;
    
      // uncountedTerminatedPods holds the UIDs of Pods that have terminated but
      // the job controller hasn't yet accounted for in the status counters.
      //
      // The job controller creates pods with a finalizer. When a pod terminates
      // (succeeded or failed), the controller does three steps to account for it
      // in the job status:
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
Back to top