Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 54 for exit1 (0.16 sec)

  1. pkg/kubelet/pod_workers_test.go

    		processed[types.UID("6-static")]; !reflect.DeepEqual(expected, actual) {
    		t.Fatalf("unexpected sync pod calls: %s", cmp.Diff(expected, actual))
    	}
    
    	// ensure 5-static exits when we deliver the event out of order
    	channels.Channel("5-static").Release()
    	drainAllWorkers(podWorkers)
    	pod5 = podWorkers.podSyncStatuses[types.UID("5-static")]
    	if !pod5.IsTerminated() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  2. cmd/iam.go

    	sys.iamRefreshInterval = iamRefreshInterval
    	// Initialize IAM store
    	sys.initStore(objAPI, etcdClient)
    	sys.Unlock()
    
    	retryCtx, cancel := context.WithCancel(ctx)
    
    	// Indicate to our routine to exit cleanly upon return.
    	defer cancel()
    
    	r := rand.New(rand.NewSource(time.Now().UnixNano()))
    
    	// Migrate storage format if needed.
    	for {
    		// Migrate IAM configuration, if necessary.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    	// affects how the merge is done; the goal is to maximize sharing
    	// and avoid allocation.
    	everProcessed bool
    }
    
    // A liveSlot is a slot that's live in loc at entry/exit of a block.
    type liveSlot struct {
    	VarLoc
    }
    
    func (ls *liveSlot) String() string {
    	return fmt.Sprintf("0x%x.%d.%d", ls.Registers, ls.stackOffsetValue(), int32(ls.StackOffset)&1)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.31.md

    - Pause: add a -v flag to the Windows variant of the pause binary, which prints the version of pause and exits. The Linux pause already has the flag. ([#125067](https://github.com/kubernetes/kubernetes/pull/125067), [@neolit123](https://github.com/neolit123)) [SIG Windows]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    	// Wait for informers cache sync
    	informerFactory.Start(ctx.Done())
    	for v, synced := range informerFactory.WaitForCacheSync(ctx.Done()) {
    		if !synced {
    			logger.Error(nil, "Error syncing informer", "informer", v)
    			os.Exit(1)
    		}
    	}
    
    	// Add storageclasses
    	waitMode := storagev1.VolumeBindingWaitForFirstConsumer
    	immediateMode := storagev1.VolumeBindingImmediate
    	classes := []*storagev1.StorageClass{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  6. src/internal/trace/order.go

    	//
    	// Note: we might have a P here. The P might not be released
    	// eagerly by the runtime, and it might get stolen back later
    	// (or never again, if the program is going to exit).
    	if err := validateCtx(curCtx, event.SchedReqs{Thread: event.MustHave, Proc: event.MayHave, Goroutine: event.MustHave}); err != nil {
    		return curCtx, false, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  7. cmd/erasure-object.go

    	pr, pw := xioutil.WaitPipe()
    	go func() {
    		pw.CloseWithError(er.getObjectWithFileInfo(ctx, bucket, object, off, length, pw, fi, metaArr, onlineDisks))
    	}()
    
    	// Cleanup function to cause the go routine above to exit, in
    	// case of incomplete read.
    	pipeCloser := func() {
    		pr.CloseWithError(nil)
    	}
    
    	if !unlockOnDefer {
    		return fn(pr, h, pipeCloser, nsUnlocker)
    	}
    
    	return fn(pr, h, pipeCloser)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      ```
    
      `cond` is the condition region and `body` is the body region. Both these
      regions accept the current value of the iteration variables as inputs.
    
      The condition region yields a tensor<i1> which, if false, will exit the loop.
      It can also, optionally and additionally, yield the iteration variables, which
      must be unchanged.
    
      The body region always has to yield the (possibly updated) iteration variables.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

          if (compile_op == nullptr) {
            compile_op = op;
          } else {
            ops_to_erase.insert(op);
          }
        }
        // If there's no outside compilation, we can exit early because this isn't
        // a TPU function.
        if (compile_op == nullptr) {
          return LogicalResult::success();
        }
    
        TF::TPUReplicateMetadataOp metadata_op = nullptr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller.go

    			active, action, manageJobErr = jm.manageJob(ctx, &job, jobCtx)
    			manageJobCalled = true
    		}
    		complete := false
    		if job.Spec.Completions == nil {
    			// This type of job is complete when any pod exits with success.
    			// Each pod is capable of
    			// determining whether or not the entire Job is done.  Subsequent pods are
    			// not expected to fail, but if they do, the failure is ignored.  Once any
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top