Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 412 for Succeeded (0.13 sec)

  1. docs/bucket/replication/test_del_marker_proxying.sh

    	./mc rm sitea/bucket/obj$loop_count
    	RESULT=$({ ./mc stat sitea/bucket/obj$loop_count; } 2>&1)
    	if [[ ${RESULT} != *"Object does not exist"* ]]; then
    		echo "BUG: stat should fail. succeeded."
    		exit_1
    	fi
    	loop_count=$((loop_count + 1))
    done
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 11:38:26 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. pilot/cmd/pilot-agent/metrics/metrics.go

    	ScrapeTypeAgent = "agent"
    )
    
    var processStartTime = time.Now()
    
    func RecordStartupTime() {
    	delta := time.Since(processStartTime)
    	startupTime.Record(delta.Seconds())
    	log.Infof("Readiness succeeded in %v", delta)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. tests/integration/helm/util.go

    		VerifyPodReady(ctx, cs, nsConfig.Get(ZtunnelReleaseName), "app=ztunnel")
    	}
    	if verifyGateway {
    		VerifyPodReady(ctx, cs, nsConfig.Get(IngressReleaseName), "app=istio-ingress")
    	}
    	scopes.Framework.Infof("=== succeeded ===")
    }
    
    func SetRevisionTagWithVersion(ctx framework.TestContext, h *helm.Helm, revision, revisionTag, version string) {
    	scopes.Framework.Infof("=== setting revision tag with version === ")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/batch/v1/generated.proto

    }
    
    // UncountedTerminatedPods holds UIDs of Pods that have terminated but haven't
    // been accounted in Job status counters.
    message UncountedTerminatedPods {
      // succeeded holds UIDs of succeeded Pods.
      // +listType=set
      // +optional
      repeated string succeeded = 1;
    
      // failed holds UIDs of failed Pods.
      // +listType=set
      // +optional
      repeated string failed = 2;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/call_graph_util_test.cc

      ASSERT_TRUE(module);
      mlir::SymbolTable symtab(*module);
      llvm::SmallVector<mlir::func::FuncOp> callees;
      module->walk([&](mlir::SymbolUserOpInterface op) {
        auto result = GetCallees(op, symtab, callees).succeeded();
        ASSERT_TRUE(result);
        EXPECT_EQ(callees.size(), 2);
        EXPECT_EQ(callees[0].getSymName(), "while_body_func");
        EXPECT_EQ(callees[1].getSymName(), "while_cond_func");
      });
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/language/swift/SwiftPmRunner.groovy

            }
            return result
        }
    
        ExecOutput buildAndFails() {
            def result = run()
            if (result.exitCode == 0) {
                throw new AssertionError("Swift PM unexpectedly succeeded. Output:\n${result.out}")
            }
            return result
        }
    
        private ExecOutput run() {
            assert projectDir != null
            def builder = new ProcessBuilder()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/FileLock.java

    import java.io.File;
    
    public interface FileLock extends Closeable, FileAccess {
        /**
         * Returns true if the most recent mutation method ({@link #updateFile(Runnable)} or {@link #writeFile(Runnable)} attempted by any process succeeded
         * (ie a process did not crash while updating the target file).
         *
         * Returns false if no mutation method has ever been called for the target file.
         */
        boolean getUnlockedCleanly();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. src/io/fs/sub_test.go

    	// Test that Sub uses Open when the method is not present.
    	sub, err = Sub(openOnly{testFsys}, "sub")
    	check("openOnly", sub, err)
    
    	_, err = sub.Open("nonexist")
    	if err == nil {
    		t.Fatal("Open(nonexist): succeeded")
    	}
    	pe, ok := err.(*PathError)
    	if !ok {
    		t.Fatalf("Open(nonexist): error is %T, want *PathError", err)
    	}
    	if pe.Path != "nonexist" {
    		t.Fatalf("Open(nonexist): err.Path = %q, want %q", pe.Path, "nonexist")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 10 02:10:17 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/verify_tfxla_legalization_test.cc

      })";
      CellReader<int64_t> static_error(kNonStaticOpStreamz);
      CellReader<int64_t> skipped(kNonStaticOpSkipStreamz);
      CreateModule(kNonStaticFailure);
    
      auto result = Run();
    
      EXPECT_TRUE(result.succeeded());
      EXPECT_EQ(static_error.Delta("mhlo.einsum"), 0);
      EXPECT_EQ(skipped.Delta("mhlo.einsum"), 1);
    }
    
    TEST_F(VerifyTfxlaLegalizationTest, SkipsNonStaticInputsWithBounds) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/BuildableModuleVersionListingResolveResult.java

     */
    public interface BuildableModuleVersionListingResolveResult extends ResourceAwareResolveResult, ErroringResolveResult<ModuleVersionResolveException> {
    
        enum State {
            /**
             * Listing has succeeded.
             */
            Listed,
            /**
             * Listing has failed.
             */
            Failed,
            /**
             * Listing hasn't been performed yet, or another attempt can be made.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top