Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 328 for scav (0.14 sec)

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

    === Build scan integration
    
    The sample project is equipped with support for generating 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
    - 6.2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/prefix/PluginPrefixRequest.java

        /**
         * Gets the list of group ids to scan for the plugin prefix.
         *
         * @return The list of group ids to scan for the plugin prefix, never {@code null}.
         */
        List<String> getPluginGroups();
    
        /**
         * Sets the list of group ids to scan for the plugin prefix.
         *
         * @param pluginGroups The list of group ids to scan for the plugin prefix, may be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/core/BuildScanAutoApplyClasspathIntegrationTest.groovy

                }
            """
        }
    
        def "transitively applied build scan plugin disables auto-application"() {
            when:
            succeeds "cacheableTask", "--scan"
    
            then:
            transitivePluginFixture.appliedOnce(output)
            assertNotAutoApplied(output)
        }
    
        def "task is up-to-date when using --scan"() {
            when:
            succeeds "cacheableTask"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 18:43:04 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. .github/ISSUE_TEMPLATE/30_contributor_regression.yml

          description: What version of Gradle gives proper result for your case?
        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
    - 2.7K bytes
    - Viewed (0)
  5. src/cmd/doc/dirs.go

    // is false when the scan is done.
    func (d *Dirs) Next() (Dir, bool) {
    	if d.offset < len(d.hist) {
    		dir := d.hist[d.offset]
    		d.offset++
    		return dir, true
    	}
    	dir, ok := <-d.scan
    	if !ok {
    		return Dir{}, false
    	}
    	d.hist = append(d.hist, dir)
    	d.offset++
    	return dir, ok
    }
    
    // walk walks the trees in GOROOT and GOPATH.
    func (d *Dirs) walk(roots []Dir) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 9K bytes
    - Viewed (0)
  6. src/math/big/intconv.go

    	case 'b':
    		base = 2
    	case 'o':
    		base = 8
    	case 'd':
    		base = 10
    	case 'x', 'X':
    		base = 16
    	case 's', 'v':
    		// let scan determine the base
    	default:
    		return errors.New("Int.Scan: invalid verb")
    	}
    	_, _, err := z.scan(byteReader{s}, base)
    	return err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  7. src/go/scanner/example_test.go

    	file := fset.AddFile("", fset.Base(), len(src)) // register input "file"
    	s.Init(file, src, nil /* no error handler */, scanner.ScanComments)
    
    	// Repeated calls to Scan yield the token sequence found in the input.
    	for {
    		pos, tok, lit := s.Scan()
    		if tok == token.EOF {
    			break
    		}
    		fmt.Printf("%s\t%s\t%q\n", fset.Position(pos), tok, lit)
    	}
    
    	// output:
    	// 1:1	IDENT	"cos"
    	// 1:4	(	""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 19:47:49 UTC 2022
    - 1K bytes
    - Viewed (0)
  8. src/math/big/floatconv.go

    // Scan is a support routine for [fmt.Scanner]; it sets z to the value of
    // the scanned number. It accepts formats whose verbs are supported by
    // [fmt.Scan] for floating point values, which are:
    // 'b' (binary), 'e', 'E', 'f', 'F', 'g' and 'G'.
    // Scan doesn't handle ±Inf.
    func (z *Float) Scan(s fmt.ScanState, ch rune) error {
    	s.SkipSpace()
    	_, _, err := z.scan(byteReader{s}, 0)
    	return err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/legacy/BuildScanClockIntegTest.groovy

     */
    
    package org.gradle.internal.enterprise.legacy
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.internal.scan.time.BuildScanClock
    
    class BuildScanClockIntegTest extends AbstractIntegrationSpec {
    
        def "can access build scan time provider"() {
            when:
            buildFile << """
                def time = project.services.get($BuildScanClock.name).currentTime
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/BuildScanInfoCollectingServices.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package gradlebuild
    
    import com.gradle.develocity.agent.gradle.scan.BuildScanConfiguration
    import org.gradle.api.Project
    import org.gradle.api.Task
    import org.gradle.api.provider.Provider
    import org.gradle.build.event.BuildEventsListenerRegistry
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 03:34:53 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top