Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 41 for while_1 (0.15 sec)

  1. cluster/gce/util.sh

    function create-static-ip() {
      detect-project
      local attempt=0
      local REGION="$2"
      while true; do
        if gcloud compute addresses create "$1" \
          --project "${PROJECT}" \
          --region "${REGION}" -q > /dev/null; then
          # successful operation - wait until it's visible
          start="$(date +%s)"
          while true; do
            now="$(date +%s)"
            # Timeout set to 15 minutes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue_test.go

    						},
    					},
    				},
    			},
    		},
    		{
    			name:                         "pod is enqueued to activeQ because the failed plugin has a hint fn and it returns Queue for a concurrent event that was received while some other pod was in flight",
    			isSchedulingQueueHintEnabled: true,
    			initialPods:                  []*v1.Pod{pod, pod2},
    			actions: []action{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    }
    
    def TFL_WhileOp : Op<TFL_Dialect, "while", [
        DeclareOpInterfaceMethods<LoopLikeOpInterface, ["isDefinedOutsideOfLoop"]>,
        SingleBlockImplicitTerminator<"YieldOp">,
        DeclareOpInterfaceMethods<TFL_RuntimeVerification>]> {
      let summary = [{While loop}];
    
      let description = [{
        output = input; while (cond(output)) { output = body(output) }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  4. src/crypto/x509/verify_test.go

    }{
    	{"self-signed, cn", selfSignedWithCommonName, "x509: certificate signed by unknown authority (possibly because of \"empty\" while trying to verify candidate authority certificate \"test\")"},
    	{"self-signed, no cn, org", selfSignedNoCommonNameWithOrgName, "x509: certificate signed by unknown authority (possibly because of \"empty\" while trying to verify candidate authority certificate \"ca\")"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  5. pkg/volume/util/operationexecutor/operation_generator.go

    	// It's ok to ignore the error, returning error is not expected from this function.
    	// If an error case occurred during the function generation, this error case(skipped one) will also trigger an error
    	// while the generated function is executed. And those errors will be handled during the execution of the generated
    	// function with a back off policy.
    	if err == nil && attachableVolumePlugin != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  6. src/database/sql/sql_test.go

    	}
    }
    
    // TestIssue18429 attempts to stress rolling back the transaction from a
    // context cancel while simultaneously calling Tx.Rollback. Rolling back from a
    // context happens concurrently so tx.rollback and tx.Commit must guard against
    // double entry.
    //
    // In the test, a context is canceled while the query is in process so
    // the internal rollback will run concurrently with the explicitly called
    // Tx.Rollback.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    	// Period for performing global cleanup tasks.
    	housekeepingPeriod = time.Second * 2
    
    	// Duration at which housekeeping failed to satisfy the invariant that
    	// housekeeping should be fast to avoid blocking pod config (while
    	// housekeeping is running no new pods are started or deleted).
    	housekeepingWarningDuration = time.Second * 1
    
    	// Period after which the runtime cache expires - set to slightly longer than
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods.go

    	if err := kl.containerRuntime.KillPod(ctx, pod, p, gracePeriodOverride); err != nil {
    		return err
    	}
    	if err := kl.containerManager.UpdateQOSCgroups(); err != nil {
    		klog.V(2).InfoS("Failed to update QoS cgroups while killing pod", "err", err)
    	}
    	return nil
    }
    
    // makePodDataDirs creates the dirs for the pod datas.
    func (kl *Kubelet) makePodDataDirs(pod *v1.Pod) error {
    	uid := pod.UID
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

            )
        )
        # TODO: b/294783597 - [Converter][TF-Quantizer] Support quantization for the
        # ops in the while op body for both SRQ and WO
        # Convolution inside the while op is not quantized.
        self.assertTrue(
            self._contains_op(
                output_graphdef,
                op_name='Conv2D',
                attr_name='T',
                attr_val=attr_value_pb2.AttrValue(type=types_pb2.DT_FLOAT),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  10. cmd/bucket-replication.go

    	}
    	tgtArns := cfg.FilterTargetArns(opts)
    	for _, tgtArn := range tgtArns {
    		tgt := globalBucketTargetSys.GetRemoteTargetClient(bucket, tgtArn)
    		// the target online status should not be used here while deciding
    		// whether to replicate as the target could be temporarily down
    		opts.TargetArn = tgtArn
    		replicate := cfg.Replicate(opts)
    		var synchronous bool
    		if tgt != nil {
    			synchronous = tgt.replicateSync
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
Back to top