Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for ONCE (0.11 sec)

  1. pkg/kubelet/kubelet_test.go

    	checkPodStatus(t, kl, emptyPod, v1.PodFailed)
    	checkPodStatus(t, kl, missingPod, v1.PodPending)
    	checkPodStatus(t, kl, failedPod, v1.PodFailed)
    }
    
    // TODO(filipg): This test should be removed once StatusSyncer can do garbage collection without external signal.
    func TestPurgingObsoleteStatusMapEntries(t *testing.T) {
    	ctx := context.Background()
    	testKubelet := newTestKubelet(t, false /* controllerAttachDetachEnabled */)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    func testServerShutdown(t *testing.T, mode testMode) {
    	var cst *clientServerTest
    
    	var once sync.Once
    	statesRes := make(chan map[ConnState]int, 1)
    	shutdownRes := make(chan error, 1)
    	gotOnShutdown := make(chan struct{})
    	handler := HandlerFunc(func(w ResponseWriter, r *Request) {
    		first := false
    		once.Do(func() {
    			statesRes <- cst.ts.Config.ExportAllConnsByState()
    			go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

      exit 1
    fi
    
    if [[ ${NODE_LOCAL_SSDS:-} -ge 1 ]] && [[ -n ${NODE_LOCAL_SSDS_EXT:-} ]] ; then
      echo -e "${color_red:-}Local SSD: Only one of NODE_LOCAL_SSDS and NODE_LOCAL_SSDS_EXT can be specified at once${color_norm:-}" >&2
      exit 2
    fi
    
    if [[ "${MASTER_OS_DISTRIBUTION}" == "gci" ]]; then
        DEFAULT_GCI_PROJECT=google-containers
        if [[ "${GCI_VERSION}" == "cos"* ]] || [[ "${MASTER_IMAGE_FAMILY}" == "cos"* ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. cmd/bucket-replication.go

    			continue
    		}
    		tgtClnt := globalBucketTargetSys.GetRemoteTargetClient(bucket, tgtEntry.Arn)
    		if tgtClnt == nil {
    			// Skip stale targets if any and log them to be missing at least once.
    			replLogOnceIf(ctx, fmt.Errorf("failed to get target for bucket:%s arn:%s", bucket, tgtEntry.Arn), tgtEntry.Arn)
    			sendEvent(eventArgs{
    				EventName:  event.ObjectReplicationNotTracked,
    				BucketName: bucket,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        return ComputeInputComponentFor(gather_op, port);
      }
      return {};
    }
    
    // TODO(jpienaar): ComputeInputsRequiredForOutput and ComputeOutputComponent are
    // intended to be switched to op interfaces once more refined.
    LogicalResult ComputeInputsRequiredForOutput(ValuePort value_port,
                                                 ComputedQueryFn has_been_computed,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      std::optional<BufferOffset<tflite::Operator>> BuildWhileOperator(
          mlir::TFL::WhileOp op, const std::vector<int32_t>& operands,
          const std::vector<int32_t>& results);
    
      // Build call once operator.
      BufferOffset<tflite::Operator> BuildCallOnceOperator(
          mlir::TFL::CallOnceOp op, const std::vector<int32_t>& operands,
          const std::vector<int32_t>& results);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    }
    
    def TFL_SumOp: TFL_Op<"sum", [
        QuantizableResult,
        PredOpTrait<"input and output must have same element type",
          TFL_TCresVTEtIsSameAsOp<0, 0>>,
        // TODO(b/215655380): Re-enable this once there is 16-bit MLIR quantizer.
        // SameOperandsAndResultsScale,
        Pure]> {
    
      let summary = "Sum operator";
    
      let description = [{
        Computes the sum reduction along the specified axes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        The analysis identifies all IslandOps within the graph which could be merged together.
        The goal is to merge as many islands as possible.
        Once analysis is completed, the pass merges all IslandOps in a single scan.
    
        For example given the following program with two disjunct islands:
    
        ```mlir
          func @test(%arg0 : tensor<i1>) -> tensor<f32> {
    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. cluster/gce/gci/configure-helper.sh

      mkdir -p /etc/srv/kubernetes/kube-scheduler
      cat <<EOF >/etc/srv/kubernetes/kube-scheduler/config
    ${KUBE_SCHEDULER_CONFIG}
    EOF
    }
    
    # TODO(#92143): Remove legacy policy config creation once kube-scheduler config is GA.
    function create-kubescheduler-policy-config {
      echo "Creating kube-scheduler policy config file"
      mkdir -p /etc/srv/kubernetes/kube-scheduler
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    						}
    					}
    					if !found {
    						t.Errorf("expect cost limit exceed err but did not find")
    					}
    					if len(errs) > 1 {
    						t.Errorf("expect to only return cost budget exceed err once but got: %v", len(errs))
    					}
    
    					// test with PerCallLimit exceeded
    					found = false
    					celValidator = NewValidator(&s, true, 0)
    					if celValidator == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
Back to top