Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 75 for noscan (0.26 sec)

  1. platforms/documentation/docs/src/snippets/java-library/module-disabled/tests/buildJavaModule.out

    * What went wrong:
    Execution failed for task ':compileJava'.
    > Compilation failed; see the compiler error output for details.
    
    * Try:
    > Run with --info option to get more log output.
    > Run with --scan to get full insights.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 09:29:37 UTC 2024
    - 735 bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-plugin-performance/src/testFixtures/groovy/org/gradle/performance/results/BuildScanResultsStore.java

     */
    
    package org.gradle.performance.results;
    
    public class BuildScanResultsStore extends BaseCrossBuildResultsStore<CrossBuildPerformanceResults> {
    
        public BuildScanResultsStore() {
            super("build-scan-results");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:38:06 UTC 2023
    - 844 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/configurationCache/problemsGroovy/tests/fail.out

    > Invocation of 'Task.project' by task ':someTask' at execution time is unsupported.
    
    * Try:
    > Run with --stacktrace option to get the stack trace.
    > Run with --info or --debug option to get more log output.
    > Run with --scan to get full insights.
    > Get more help at https://help.gradle.org.
    
    BUILD FAILED in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 825 bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/exec/RunBuildBuildOperationType.java

     * limitations under the License.
     */
    
    package org.gradle.launcher.exec;
    
    import org.gradle.internal.operations.BuildOperationType;
    import org.gradle.internal.scan.UsedByScanPlugin;
    
    @UsedByScanPlugin
    public final class RunBuildBuildOperationType implements BuildOperationType<RunBuildBuildOperationType.Details, RunBuildBuildOperationType.Result> {
        public interface Details {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1005 bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/service/BuildCacheServiceRole.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.caching.internal.controller.service;
    
    import org.gradle.internal.scan.UsedByScanPlugin;
    
    import java.util.Locale;
    
    @UsedByScanPlugin("values are expected (type is not linked), see BuildCacheStoreBuildOperationType and friends")
    public enum BuildCacheServiceRole {
        LOCAL,
        REMOTE;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 15:35:05 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top