Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 208 for noscan (0.1 sec)

  1. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/DefaultTestSuiteDescriptor.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.testing;
    
    import org.gradle.internal.scan.UsedByScanPlugin;
    
    @UsedByScanPlugin("test-distribution")
    public class DefaultTestSuiteDescriptor extends AbstractTestDescriptor {
    
        @UsedByScanPlugin("test-distribution")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. gradle.properties

    kotlin.incremental.useClasspathSnapshot=true
    kotlin.stdlib.default.dependency=false
    kotlin.js.ir.output.granularity=whole-program
    # Temporarily force IDEs to produce build scans
    systemProp.org.gradle.internal.ide.scan=true
    # If you're experimenting with changes and don't want to update the verification file right away, please change the mode to "lenient" (not "off")
    org.gradle.dependency.verification=strict
    # TD related properties
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 16:35:19 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. test/fixedbugs/issue25897a.go

    // run
    
    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Make sure the runtime can scan args of an unstarted goroutine
    // which starts with a reflect-generated function.
    
    package main
    
    import (
    	"reflect"
    	"runtime"
    )
    
    const N = 100
    
    func main() {
    	runtime.GOMAXPROCS(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 19:04:48 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DownloadArtifactBuildOperationType.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.artifacts;
    
    import org.gradle.internal.operations.BuildOperationType;
    import org.gradle.internal.scan.UsedByScanPlugin;
    
    /**
     * Details about an artifact being downloaded.
     *
     * @since 4.0
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. src/text/template/parse/node.go

    		n.Uint64 = uint64(rune)
    		n.IsUint = true
    		n.Float64 = float64(rune) // odd but those are the rules.
    		n.IsFloat = true
    		return n, nil
    	case itemComplex:
    		// fmt.Sscan can parse the pair, so let it do the work.
    		if _, err := fmt.Sscan(text, &n.Complex128); err != nil {
    			return nil, err
    		}
    		n.IsComplex = true
    		n.simplifyComplex()
    		return n, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/ast/inspector/typeof.go

    //
    //	                                                                GOGC=off
    //	- type switch					4.9-5.5ms	2.1ms
    //	- binary search over a sorted list of types	5.5-5.9ms	2.5ms
    //	- linear scan, frequency-ordered list		5.9-6.1ms	2.7ms
    //	- linear scan, unordered list			6.4ms		2.7ms
    //	- hash table					6.5ms		3.1ms
    //
    // A perfect hash seemed like overkill.
    //
    // The compiler's switch statement is the clear winner
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  7. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/tasks/InstallXCTestBundle.java

                        "--copy",
                        "--scan-executable", bundleFile.getAbsolutePath(),
                        "--destination", new File(bundleDir, "Contents/Frameworks").getAbsolutePath(),
                        "--platform", "macosx",
                        "--resource-destination", new File(bundleDir, "Contents/Resources").getAbsolutePath(),
                        "--scan-folder", new File(bundleDir, "Contents/Frameworks").getAbsolutePath()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/component/ModuleComponentIdentifier.java

     * limitations under the License.
     */
    package org.gradle.api.artifacts.component;
    
    import org.gradle.api.artifacts.ModuleIdentifier;
    import org.gradle.internal.scan.UsedByScanPlugin;
    
    /**
     * An identifier for a component instance which is available as a module version.
     *
     * @since 1.10
     */
    @UsedByScanPlugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/results/TestListenerInternal.java

    import org.gradle.api.internal.tasks.testing.TestStartEvent;
    import org.gradle.api.tasks.testing.TestOutputEvent;
    import org.gradle.api.tasks.testing.TestResult;
    import org.gradle.internal.scan.UsedByScanPlugin;
    import org.gradle.internal.service.scopes.EventScope;
    import org.gradle.internal.service.scopes.Scope;
    
    @UsedByScanPlugin
    @EventScope(Scope.Build.class)
    public interface TestListenerInternal {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    `--profile`::
    Generates a high-level performance report in the `layout.buildDirectory.dir("reports/profile")` directory. `--scan` is preferred.
    
    `--scan`::
    Generate a build scan with detailed performance diagnostics.
    
    image::gradle-core-test-build-scan-performance.png[Build Scan performance report]
    
    `--watch-fs`, `--no-watch-fs`::
    Toggles <<file_system_watching.adoc#sec:daemon_watch_fs,watching the file system>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top