Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 5,195 for doOutput (0.1 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResult.java

            if (output.contains("BUILD FAILED") || output.contains("FAILURE: Build failed with an exception.") || error.contains("BUILD FAILED") || error.contains("CONFIGURE FAILED")) {
                return new OutputScrapingExecutionFailure(output, error, true);
            }
            return new OutputScrapingExecutionResult(LogContent.of(output), LogContent.of(error), true);
        }
    
        /**
         * @param output The build stdout content.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/BazelFileContentGenerator.groovy

        return ".".join(toks[findex:]) + ".class"
    
    def _impl(ctx):
        classes = ",".join(
            [_AsClassName(x) for x in ctx.attr.srcs],
        )
        ctx.actions.write(output = ctx.outputs.out, content = _OUTPUT % (
            classes,
            ctx.attr.outname,
        ))
    
    _GenSuite = rule(
        attrs = {
            "srcs": attr.label_list(allow_files = True),
            "outname": attr.string(),
        },
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/asm_arm64_test.go

    		out, err := cmd.CombinedOutput()
    		if err != nil {
    			t.Errorf("The %s build failed: %v, output: %s", test.name, err, out)
    			continue
    		}
    
    		matched, err := regexp.MatchString(test.out, string(out))
    		if err != nil {
    			t.Fatal(err)
    		}
    		if !matched {
    			t.Errorf("The %s testing failed!\ninput: %s\noutput: %s\n", test.name, test.code, out)
    		}
    	}
    }
    
    func testvmovs() (r1, r2 uint64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:46:11 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  4. hack/lib/util.sh

    }
    
    # looks for $1 in well-known output locations for the platform ($2)
    # $KUBE_ROOT must be set
    kube::util::find-binary-for-platform() {
      local -r lookfor="$1"
      local -r platform="$2"
      local locations=(
        "${KUBE_ROOT}/_output/bin/${lookfor}"
        "${KUBE_ROOT}/_output/dockerized/bin/${platform}/${lookfor}"
        "${KUBE_ROOT}/_output/local/bin/${platform}/${lookfor}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  5. hack/grab-profiles.sh

            >&2 echo "empty argument to --controller-manager-port flag"
            exit 1
          fi
          controller_manager_port=$1
          shift
          ;;
        -o|--output)
          shift
          if [ -z "$1" ]; then
            >&2 echo "empty argument to --output flag"
            exit 1
          fi
          output_dir=$1
          shift
          ;;
        --inuse-space)
          shift
          requested_profiles="mem ${requested_profiles}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 17 06:47:05 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  6. src/os/signal/signal_test.go

    			subTimeout -= subTimeout / 10 // Leave 10% headroom for propagating output.
    		}
    		for i := 1; i <= 2; i++ {
    			i := i
    			t.Run(fmt.Sprintf("%d", i), func(t *testing.T) {
    				t.Parallel()
    
    				// POSIX specifies that nohup writes to a file named nohup.out if standard
    				// output is a terminal. However, for an exec.Cmd, standard output is
    				// not a terminal — so we don't need to read or remove that file (and,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:34:56 UTC 2023
    - 27.2K bytes
    - Viewed (0)
  7. hack/golangci-hints.yaml

    #   merging. Beware that the golangci-lint output includes also the
    #   issues that must be fixed and doesn't indicate how severe each issue
    #   is (https://gophers.slack.com/archives/CS0TBRKPC/p1685721815275349).
    #
    # All three flavors are generated from golangci.yaml.in with
    # hack/update-golangci-lint-config.sh.
    
    run:
      timeout: 30m
      skip-files:
        - "^zz_generated.*"
    
    output:
      sort-results: true
    
    issues:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. hack/golangci-strict.yaml

    #   merging. Beware that the golangci-lint output includes also the
    #   issues that must be fixed and doesn't indicate how severe each issue
    #   is (https://gophers.slack.com/archives/CS0TBRKPC/p1685721815275349).
    #
    # All three flavors are generated from golangci.yaml.in with
    # hack/update-golangci-lint-config.sh.
    
    run:
      timeout: 30m
      skip-files:
        - "^zz_generated.*"
    
    output:
      sort-results: true
    
    issues:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. hack/make-rules/test-cmd.sh

    kube::log::status "Running kubectl tests for kube-apiserver"
    
    setup
    run_kube_apiserver
    run_kube_controller_manager
    create_node
    export SUPPORTED_RESOURCES=("*")
    # WARNING: Do not wrap this call in a subshell to capture output, e.g. output=$(runTests)
    # Doing so will suppress errexit behavior inside runTests
    runTests
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 09:10:14 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. hack/golangci.yaml

    #   merging. Beware that the golangci-lint output includes also the
    #   issues that must be fixed and doesn't indicate how severe each issue
    #   is (https://gophers.slack.com/archives/CS0TBRKPC/p1685721815275349).
    #
    # All three flavors are generated from golangci.yaml.in with
    # hack/update-golangci-lint-config.sh.
    
    run:
      timeout: 30m
      skip-files:
        - "^zz_generated.*"
    
    output:
      sort-results: true
    
    issues:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top