Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 208 for noscan (0.08 sec)

  1. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/scan/eob/BuildScanEndOfBuildNotifier.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.scan.eob;
    
    import javax.annotation.Nullable;
    
    /**
     * Used by the scan plugin to register a listener to be notified about the build finishing.
     */
    public interface BuildScanEndOfBuildNotifier {
    
        interface BuildResult {
            @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. src/database/sql/sql_test.go

    	if err != nil {
    		t.Fatalf("age QueryRow+Scan: %v", err)
    	}
    	if name != "Bob" {
    		t.Errorf("expected name Bob, got %q", name)
    	}
    	if age != 2 {
    		t.Errorf("expected age 2, got %d", age)
    	}
    
    	err = db.QueryRow("SELECT|people|age,name|name=?", "Alice").Scan(&age, &name)
    	if err != nil {
    		t.Fatalf("name QueryRow+Scan: %v", err)
    	}
    	if name != "Alice" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

          with:
            build-scan-publish: true
            build-scan-terms-of-use-url: "https://gradle.com/terms-of-service"
            build-scan-terms-of-use-agree: "yes"
    
    ----
    
    https://scans.gradle.com[Gradle Build ScansĀ®] are a great way to view your build results, and provide valuable insights into your build.
    The workflow is configured to automatically publish a Build Scan for each build, accepting the legal terms of use.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationListenerRegistrar.java

     * limitations under the License.
     */
    
    package org.gradle.internal.operations.notify;
    
    import org.gradle.internal.scan.UsedByScanPlugin;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Mechanism by which the scan plugin registers for notifications.
     * <p>
     * One instance of this exists per build tree.
     * Only one listener may register.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/runtime/mgcpacer.go

    	// unlike heapLive, heapMarked does not change until the
    	// next mark termination.
    	heapMarked uint64
    
    	// heapScanWork is the total heap scan work performed this cycle.
    	// stackScanWork is the total stack scan work performed this cycle.
    	// globalsScanWork is the total globals scan work performed this cycle.
    	//
    	// These are updated atomically during the cycle. Updates occur in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/img/gradle-core-test-build-scan-dependencies.png

    gradle-core-test-build-scan-dependencies.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:03:53 UTC 2024
    - 245.7K bytes
    - Viewed (0)
Back to top