Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 138 for Scans (0.04 sec)

  1. src/internal/gover/gover.go

    		return Version{}
    	}
    	v.Kind, x = x[:i], x[i:]
    	if x == "" {
    		return v
    	}
    	v.Pre, x, ok = cutInt(x)
    	if !ok || x != "" {
    		return Version{}
    	}
    
    	return v
    }
    
    // cutInt scans the leading decimal number at the start of x to an integer
    // and returns that value and the rest of the string.
    func cutInt(x string) (n, rest string, ok bool) {
    	i := 0
    	for i < len(x) && '0' <= x[i] && x[i] <= '9' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_optimizations.adoc

    Consult the <<build_cache#build_cache,Build cache chapter>> to learn more.
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. src/runtime/mgcmark.go

    				"gcscandone", gp.gcscandone)
    			throw("scan missed a g")
    		}
    
    		i++
    	})
    }
    
    // ptrmask for an allocation containing a single pointer.
    var oneptrmask = [...]uint8{1}
    
    // markroot scans the i'th root.
    //
    // Preemption must be disabled (because this uses a gcWork).
    //
    // Returns the amount of GC work credit produced by the operation.
    // If flushBgCredit is true, then that credit is also flushed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_use_cases.adoc

    Develocity may help you with fulfilling these requirements while still using the build cache for all your builds.
    It allows you to easily find out which build produced an artifact coming from the build cache via build scans.
    
    [.screenshot]
    image::build-cache/from-cache-origin.png[]
    
    == Accelerate developer builds by reusing CI results
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    			format = p
    		}
    	}
    
    	return &printfWrapper{
    		obj:    fn,
    		fdecl:  fdecl,
    		format: format,
    		args:   args,
    	}
    }
    
    // findPrintfLike scans the entire package to find printf-like functions.
    func findPrintfLike(pass *analysis.Pass, res *Result) (interface{}, error) {
    	// Gather potential wrappers and call graph between them.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/conc_alloc.go

    }
    
    // minMax records the minimum and maximum value seen while scanning a set of numbers
    type minMax struct {
    	min float64
    	max float64
    }
    
    // note scans one more number
    func (mm *minMax) note(x float64) {
    	mm.min = math.Min(mm.min, x)
    	mm.max = math.Max(mm.max, x)
    }
    
    const MinTarget = 0.001
    const epsilon = 0.0000001
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/TestTest.groovy

            test.setIgnoreFailures(true)
    
            when:
            test.executeTests()
    
            then:
            1 * testExecuterMock.execute(_ as TestExecutionSpec, _ as TestResultProcessor)
        }
    
        def "scans for test classes in the classes dir"() {
            given:
            configureTask()
            test.include("include")
            test.exclude("exclude")
            def classFiles = test.getCandidateClassFiles()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/main/resources/footer.html

                        <li itemprop="name"><a href="https://gradle.com/develocity/" itemprop="url">Develocity</a></li>
                        <li itemprop="name"><a href="https://gradle.com/build-scans/" itemprop="url">Build Scan™</a></li>
                        <li itemprop="name"><a href="https://gradle.com/build-cache/" itemprop="url">Build Cache</a></li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. src/database/sql/sql.go

    // scanned from numeric database columns into *string, scans into
    // numeric types are checked for overflow. For example, a float64 with
    // value 300 or a string with value "300" can scan into a uint16, but
    // not into a uint8, though float64(255) or "255" can scan into a
    // uint8. One exception is that scans of some float64 numbers to
    // strings may lose information when stringifying. In general, scan
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheFixture.groovy

        private void assertNothingConfigured() {
            def configuredProjects = buildOperations.all(ConfigureProjectBuildOperationType)
            // A synthetic "project configured" operation is fired for each root project for build scans
            assert configuredProjects.every { it.details.projectPath == ':' }
    
            def scripts = buildOperations.all(ApplyScriptPluginBuildOperationType)
            assert scripts.empty
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top