Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for dryrun (0.16 sec)

  1. istioctl/pkg/writer/compare/testdata/configdump.json

                                "value": 100
                              },
                              "custom_tags": [
                                {
                                  "tag": "istio.authorization.dry_run.allow_policy.name",
                                  "metadata": {
                                    "kind": {
                                      "request": {}
                                    },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 52K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                                "value": 100
                              },
                              "custom_tags": [
                                {
                                  "tag": "istio.authorization.dry_run.allow_policy.name",
                                  "metadata": {
                                    "kind": {
                                      "request": {}
                                    },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  3. src/cmd/go/go_test.go

    			tg.env = append(tg.env[:i], tg.env[i+1:]...)
    			break
    		}
    	}
    }
    
    func (tg *testgoData) goTool() string {
    	return testGo
    }
    
    // doRun runs the test go command, recording stdout and stderr and
    // returning exit status.
    func (tg *testgoData) doRun(args []string) error {
    	tg.t.Helper()
    	if tg.inParallel {
    		for _, arg := range args {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            } finally {
                reset();
            }
        }
    
        @Override
        public final ExecutionResult run() {
            return run(() -> {
                ExecutionResult result = doRun();
                if (errorsShouldAppearOnStdout()) {
                    result = new ErrorsOnStdoutScrapingExecutionResult(result);
                }
                return result;
            });
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

            succeeds ':outgoingVariants'
            reportsCompleteAbsenceOfResolvableVariants()
        }
    
        def "if only legacy configuration present, and --all not specified, task produces empty report and prompts for rerun"() {
            given:
            buildFile << """
                configurations.create("legacy") {
                    description = "My legacy configuration"
                    assert canBeResolved
                    assert canBeConsumed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    // dropping the kXlaAlreadyClustered attributes from all nodes in the process.
    // The correct fix is to use the ConfigProto to pass in some sort of flag into
    // the PartitionedCall kernel that tells it to not rerun auto-clustering on the
    // cluster.
    const char* kXlaAlreadyClustered = "_XlaAlreadyClustered";
    
    class MarkForCompilationPassImpl {
     public:
      struct DebugOptions {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  7. pkg/kubelet/pod_workers.go

    	// pod has reached a terminal state and the presence of the error indicates succeeded or failed.
    	// If an error is returned, the sync was not successful and should be rerun in the future. This
    	// is a long running method and should exit early with context.Canceled if the context is canceled.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  8. src/cmd/cgo/gcc.go

    	if strings.Contains(stderr, "unrecognized command line option") {
    		// We're using an old version of GCC that doesn't understand
    		// -fdiagnostics-color. Those versions can't print color anyway,
    		// so just rerun without that option.
    		stderr = p.gccErrors(b.Bytes())
    	}
    	if stderr == "" {
    		fatalf("%s produced no output\non input:\n%s", gccBaseCmd[0], b.Bytes())
    	}
    
    	completed := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top