Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 75 for noscan (0.11 sec)

  1. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/travis-ci.adoc

    === Build scan integration
    
    The sample project is equipped with support for generating link:https://scans.gradle.com/[build scans].
    Running the build with the command line option `--scan` renders a link in the console.
    
    [listing.terminal.sample-command]
    ----
    $ ./gradlew build --scan
    Publishing build scan...
    https://gradle.com/s/7mtynxxmesdio
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/SuggestionsMessages.groovy

        public static final String INFO_DEBUG = "Run with --info or --debug option to get more log output."
        public static final String DEBUG = "Run with --debug option to get more log output."
        public static final String SCAN = "Run with --scan to get full insights."
        public static final String GET_HELP = "Get more help at https://help.gradle.org."
        public static final String STACKTRACE_MESSAGE = "Run with --stacktrace option to get the stack trace."
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/config_gradle.adoc

    link:https://scans.gradle.com[Build scans] will tell you information about the JVM that executed the build when you use the `--scan` option:
    
    [caption= "Build Environment in build scans",link=https://scans.gradle.com/s/sample/cpp-parallel/infrastructure]
    image::build-scan-infrastructure.png[Build Environment in Build Scan]
    
    [[sec:configuring_task_using_project_properties]]
    == Configuring a task using project properties
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. hack/verify-govulncheck.sh

    git worktree add -f "${WORKTREE}" "${BRANCH}"
    # Clean up the copy on exit
    kube::util::trap_add "git worktree remove -f ${WORKTREE}" EXIT
    
    govulncheck -scan module ./... > "${KUBE_TEMP}/head.txt"
    pushd "${WORKTREE}" >/dev/null
      govulncheck -scan module ./... > "${KUBE_TEMP}/pr-base.txt"
    popd >/dev/null
    
    echo -e "\n HEAD: $(cat "${KUBE_TEMP}"/head.txt)" 
    echo -e "\n PR_BASE: $(cat "${KUBE_TEMP}/pr-base.txt")" 
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/core_dependency_management.adoc

    Gradle provides tools to visualize and analyze a project's dependency graph (i.e. dependency tree).
    You can use a link:https://scans.gradle.com/get-started[Build Scan(TM)] or <<viewing_debugging_dependencies.adoc#sec:debugging-build-scans,built-in tasks>>.
    
    .Build scan dependencies report
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. src/cmd/pack/pack.go

    		ar = openArchive(os.Args[2], os.O_RDONLY, os.Args[3:])
    		ar.scan(ar.printContents)
    	case 'r':
    		ar = openArchive(os.Args[2], os.O_RDWR|os.O_CREATE, os.Args[3:])
    		ar.addFiles()
    	case 'c':
    		ar = openArchive(os.Args[2], os.O_RDWR|os.O_TRUNC|os.O_CREATE, os.Args[3:])
    		ar.addPkgdef()
    		ar.addFiles()
    	case 't':
    		ar = openArchive(os.Args[2], os.O_RDONLY, os.Args[3:])
    		ar.scan(ar.tableOfContents)
    	case 'x':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. src/runtime/internal/wasitest/nonblock_test.go

    			}
    
    			scanner := bufio.NewScanner(pr)
    			if !scanner.Scan() {
    				t.Fatal("expected line:", scanner.Err())
    			} else if scanner.Text() != "waiting" {
    				t.Fatal("unexpected output:", scanner.Text())
    			}
    
    			for _, fifo := range fifos {
    				if _, err := fifo.file.WriteString(fifo.path + "\n"); err != nil {
    					t.Fatal(err)
    				}
    				if !scanner.Scan() {
    					t.Fatal("expected line:", scanner.Err())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 29 15:35:27 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/buildlifecycle/taskExecutionEvents/tests-kotlin/taskExecutionEvents.kotlin.out

    * What went wrong:
    Execution failed for task ':broken'.
    > broken
    
    * Try:
    > Run with --stacktrace option to get the stack trace.
    > Run with --info or --debug option to get more log output.
    > Run with --scan to get full insights.
    > Get more help at https://help.gradle.org.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 401 bytes
    - Viewed (0)
  9. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/maven/MavenGcsRepoErrorsIntegrationTest.groovy

    import static org.gradle.integtests.fixtures.SuggestionsMessages.DEBUG
    import static org.gradle.integtests.fixtures.SuggestionsMessages.GET_HELP
    import static org.gradle.integtests.fixtures.SuggestionsMessages.SCAN
    import static org.gradle.integtests.fixtures.SuggestionsMessages.STACKTRACE_MESSAGE
    import static org.gradle.integtests.fixtures.SuggestionsMessages.repositoryHint
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/cunit/tests/completeCUnitExample.out

    * Try:
    > Run with --stacktrace option to get the stack trace.
    > Run with --info or --debug option to get more log output.
    > Run with --scan to get full insights.
    > Get more help at https://help.gradle.org.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 18:21:45 UTC 2023
    - 671 bytes
    - Viewed (0)
Back to top