Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 631 for Succeeded (0.15 sec)

  1. pkg/kubelet/status/generate.go

    	// PodCompleted says that all related containers have succeeded.
    	PodCompleted = "PodCompleted"
    	// PodFailed says that the pod has failed and as such the containers have failed.
    	PodFailed = "PodFailed"
    	// ContainersNotReady says that one or more containers are not ready.
    	ContainersNotReady = "ContainersNotReady"
    	// ContainersNotInitialized says that one or more init containers have not succeeded.
    	ContainersNotInitialized = "ContainersNotInitialized"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 15:18:11 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. pkg/volume/util/operationexecutor/node_expander.go

    	resizeStatus v1.ClaimResourceStatus
    
    	// pvcAlreadyUpdated if true indicates that although we are calling NodeExpandVolume on the kubelet
    	// PVC has already been updated - possibly because expansion already succeeded on different node.
    	// This can happen when a RWX PVC is expanded.
    	pvcAlreadyUpdated bool
    }
    
    func newNodeExpander(resizeOp nodeResizeOperationOpts, client clientset.Interface, recorder record.EventRecorder) *NodeExpander {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:30:35 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  3. test/fixedbugs/issue9862_run.go

    import (
    	"os/exec"
    	"strings"
    )
    
    func main() {
    	out, err := exec.Command("go", "run", "fixedbugs/issue9862.go").CombinedOutput()
    	outstr := string(out)
    	if err == nil {
    		println("go run issue9862.go succeeded, should have failed\n", outstr)
    		return
    	}
    	if !strings.Contains(outstr, "symbol too large") {
    		println("go run issue9862.go gave unexpected error; want symbol too large:\n", outstr)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 662 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/verify_no_outside_compilation_markers_pass_test.cc

          %0 = "tf.Const"() {value = dense<1000> : tensor<1xi32>} : () -> tensor<1xi32>
          func.return %0 : tensor<1xi32>
        }
      })";
    
      CreateModule(kMlirModuleStr);
      auto result = Run();
    
      EXPECT_TRUE(result.succeeded());
    }
    
    TEST_F(VerifyNoOutsideCompilationMarkersPassTest,
           FailsXlaOutsideCompilationMarkers) {
      static constexpr char kMlirModuleStr[] = R"(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_types_test.cc

          func.return %1 : tensor<6x3x!tf_type.qint8>
        }
      })";
      CreateModule(kMlirModuleStr);
      CellReader<int64_t> reader(kMetricsName);
    
      auto result = Run();
    
      EXPECT_TRUE(result.succeeded());
      EXPECT_EQ(reader.Delta("tf.ConcatV2"), 1);
      EXPECT_EQ(reader.Delta("func.return"), 1);
      EXPECT_EQ(reader.Delta("func.func"), 0);
    }
    
    TEST_F(LegalizeTfTypesTest, RecordsStreamzNoQuantOps) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 09:05:02 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. test/typeparam/chansimp.dir/main.go

    	if !ok {
    		panic("TryAcquire failed")
    	}
    	*p = "a"
    
    	var wg sync.WaitGroup
    	wg.Add(1)
    	go func() {
    		defer wg.Done()
    		_, ok := ex.TryAcquire()
    		if ok {
    			panic(fmt.Sprintf("TryAcquire succeeded unexpectedly"))
    		}
    	}()
    	wg.Wait()
    
    	ex.Release(p)
    
    	p, ok = ex.TryAcquire()
    	if !ok {
    		panic(fmt.Sprintf("TryAcquire failed"))
    	}
    }
    
    func TestRanger() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/input_lowering_metrics_pass_test.cc

      CellReader<int64_t> dynamism_function_counter(
          kDynamismFunctionCounterStreamzName);
    
      CreateModule(kMlirModuleStr);
      auto result = Run();
    
      EXPECT_TRUE(result.succeeded());
      EXPECT_EQ(dynamism_function_counter.Delta(kNotDynamicFunctionName), 1);
    }
    
    TEST_F(InputLoweringMetricsPassTest, CountsDynamicOps) {
      static constexpr char kMlirModuleStr[] = R"(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 23 19:42:09 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. pkg/volume/util/operationexecutor/operation_generator.go

    		simpleMsg, _ := volumeToAttach.GenerateMsg("AttachVolume.Attach succeeded", "")
    		for _, pod := range volumeToAttach.ScheduledPods {
    			og.recorder.Eventf(pod, v1.EventTypeNormal, kevents.SuccessfulAttachVolume, simpleMsg)
    		}
    		klog.Infof(volumeToAttach.GenerateMsgDetailed("AttachVolume.Attach succeeded", ""))
    
    		// Update actual state of world
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  9. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultProjectConfigurationSuccessResult.java

        public DefaultProjectConfigurationSuccessResult(long startTime, long endTime, List<? extends InternalPluginApplicationResult> pluginApplicationResults) {
            super(startTime, endTime, "succeeded", pluginApplicationResults);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 29 00:04:07 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/fold_broadcast.cc

      // incompatible_shape_error is `true` (what is also checked by the verifier).
      if (succeeded(RewriteEqOp<TF::EqualOp>(op, rewriter))) return success();
      if (succeeded(RewriteEqOp<TF::NotEqualOp>(op, rewriter))) return success();
      if (succeeded(RewriteBatchMatMulV2Op(op, rewriter))) return success();
    
      return failure();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top