Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 328 for scav (0.04 sec)

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

    If you installed the https://plugins.jetbrains.com/plugin/9326-gradle-build-scan-integration[TeamCity Build Scan plugin], you will see a link to the build scan in the Build Results view:
    
    image::ci-systems/teamcity-build-scan-plugin.png[]
    
    Otherwise, the link to the link:https://scans.gradle.com[build scan] for the given build is available in the build log:
    
    image::ci-systems/teamcity-log-link.png[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/scan/NotUsedByScanPlugin.java

     * limitations under the License.
     */
    
    package org.gradle.internal.scan;
    
    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Documents that the type or method is not referenced by the build scan plugin,
     * and therefore can be changed or removed without breaking it.
     *
     * @since 5.1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. .github/workflows/osv-scanner-scheduled.yml

    name: OSV-Scanner Scheduled Scan
    
    on:
      schedule:
        - cron: 0 4 * * 1
    
    permissions:
      # Require writing security events to upload SARIF file to security tab
      security-events: write
      # Only need to read contents
      contents: read
    
    jobs:
      scan-scheduled:
        if: github.repository == 'tensorflow/tensorflow'
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 06 17:09:49 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/templates/root-project/build.gradle

            classpath "com.gradle:build-scan-plugin:${buildScanPluginVersion}"
    <% }%>
    <% if(binding.hasVariable("springDmPluginVersion")) { %>
            classpath "io.spring.gradle:dependency-management-plugin:$springDmPluginVersion"
    <% }%>
        }
    }
    <% if (binding.hasVariable("buildScanPluginVersion")) { %>
    apply plugin: 'com.gradle.build-scan'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 965 bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise-plugin-performance/README.md

    This project contains the Build Scan performance test suite. For information about the test infrastructure, see [performance](../performance) and [internal-performance-testing](../internal-performance-testing)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:38:06 UTC 2023
    - 716 bytes
    - Viewed (0)
  6. src/cmd/internal/pgo/deserialize.go

    	}
    
    	for scanner.Scan() {
    		readStr := scanner.Text()
    
    		callerName := readStr
    
    		if !scanner.Scan() {
    			if err := scanner.Err(); err != nil {
    				return nil, fmt.Errorf("error reading preprocessed profile: %w", err)
    			}
    			return nil, fmt.Errorf("preprocessed profile entry missing callee")
    		}
    		calleeName := scanner.Text()
    
    		if !scanner.Scan() {
    			if err := scanner.Err(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. .github/ISSUE_TEMPLATE/10_contributor_bug_report.yml

          description: What version of Gradle are you running?
        validations:
          required: true
      - type: input
        id: build-scan-url
        attributes:
          label: Build scan URL (optional)
          description: |
            You can run your build command with `--scan` to publish a Build Scan to [scans.gradle.com](https://scans.gradle.com/).
        validations:
          required: false
      - type: textarea
        id: environment
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 16 07:49:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginConfigurationCachingIntegrationTest.groovy

        }
    
        def "--scan does not auto apply plugin for build from cache"() {
            when:
            succeeds "t", "--configuration-cache", "--scan"
    
            then:
            plugin.appliedOnce(output)
            plugin.assertBuildScanRequest(output, REQUESTED)
    
            when:
            succeeds "t", "--configuration-cache", "--scan"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 10:49:16 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCompositeBuildsIntegrationTest.groovy

            inDirectory 'app'
            configurationCacheRun 'assemble', '--scan', '-Dscan.dump'
    
            then:
            postBuildOutputContains 'Build scan written to'
            configurationCache.assertStateStored()
    
            when:
            inDirectory 'app'
            configurationCacheRun 'assemble', '--scan', '-Dscan.dump'
    
            then:
            postBuildOutputContains 'Build scan written to'
            configurationCache.assertStateLoaded()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. hack/update-kustomize.sh

    LATEST_CONFIG=$(echo "${PUBLISHED_RELEASES}" | jq -r '[ .[] | select(.tag_name | startswith("cmd/config/v")) ] | sort_by(.published_at) | last | .tag_name | scan("\/(v[\\d.]+)") | .[0]')
    LATEST_API=$(echo "${PUBLISHED_RELEASES}" | jq -r '[ .[] | select(.tag_name | startswith("api/v")) ] | sort_by(.published_at) | last | .tag_name | scan("\/(v[\\d.]+)") | .[0]')
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:40:04 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top