Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 668 for detective (0.24 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/configuration/BuildFeature.java

    /**
     * Status of a feature in a build that affects Gradle behavior,
     * and may impose additional requirements on plugins or build scripts.
     * <p>
     * It is possible to check if the feature is {@link #getActive() active} in the current build.
     * The {@link #getRequested() requested} property shows whether the user opted in or opted out from the feature.
     *
     * @see BuildFeatures
     * @since 8.5
     */
    @Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 30 19:28:25 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. internal/config/browser/help.go

    			Description: `turn 'on' to set Strict-Transport-Security 'includeSubDomains' directive` + defaultHelpPostfix(browserHSTSIncludeSubdomains),
    			Optional:    true,
    			Type:        "boolean",
    		},
    		config.HelpKV{
    			Key:         browserHSTSPreload,
    			Description: `turn 'on' to set Strict-Transport-Security 'preload' directive` + defaultHelpPostfix(browserHSTSPreload),
    			Optional:    true,
    			Type:        "boolean",
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 01 16:36:33 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/tasks/DetermineBaselines.kt

            }
    
            println("Determined baseline is: ${determinedBaselines.get()}")
        }
    
        /**
         * Coordinator build doesn't resolve to real commit version, they just pass "flakiness-detection-commit" as it is to worker build
         * "flakiness-detection-commit" is resolved to real commit id in worker build to disable build cache.
         *
         * @see PerformanceTest#NON_CACHEABLE_VERSIONS
         */
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 09:29:24 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. src/embed/embed.go

    //	print(string(data))
    //
    // # Directives
    //
    // A //go:embed directive above a variable declaration specifies which files to embed,
    // using one or more path.Match patterns.
    //
    // The directive must immediately precede a line containing the declaration of a single variable.
    // Only blank lines and ‘//’ line comments are permitted between the directive and the declaration.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:42:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. src/cmd/cover/cover_test.go

    	file, err = os.ReadFile(coverOutput)
    	if err != nil {
    		t.Fatal(err)
    	}
    	// compiler directive must appear right next to function declaration.
    	if got, err := regexp.MatchString(".*\n//go:nosplit\nfunc someFunction().*", string(file)); err != nil || !got {
    		t.Error("misplaced compiler directive")
    	}
    	// "go:linkname" compiler directive should be present.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:28 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassDetector.java

    import com.google.common.collect.ImmutableSet;
    import org.gradle.internal.classanalysis.AsmConstants;
    import org.gradle.api.internal.tasks.testing.detection.TestClassVisitor;
    import org.gradle.api.internal.tasks.testing.detection.TestFrameworkDetector;
    import org.objectweb.asm.AnnotationVisitor;
    import org.objectweb.asm.MethodVisitor;
    
    import java.util.Set;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-provider-plugins/src/test/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/PrecompiledScriptPluginTest.kt

            )
        }
    
        @Test
        fun `package name detection works when there is none`() {
    
            assertThat(
                scriptPlugin(
                    "my-script.gradle.kts",
                    """
    
                        @file:Suppress("UnstableApiUsage") // using a file annotation to disable simple package detection
    
                        //import org.test.Message as TestMessage
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/pos.go

    	base.pos.base = base
    	return base
    }
    
    // NewLineBase returns a new PosBase for a line directive "line filename:line:col"
    // relative to pos, which is the position of the character immediately following
    // the comment containing the line directive. For a directive in a line comment,
    // that position is the beginning of the next line (i.e., the newline character
    // belongs to the line comment).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 20:44:57 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_retract_fix_version.txt

    # retract must not be used without a module directive.
    ! go list -m all
    stderr 'go.mod:3: no module directive found, so retract cannot be used$'
    
    # Commands that update go.mod should fix non-canonical versions in
    # retract directives.
    # Verifies #44494.
    go mod edit -module=rsc.io/quote/v2
    ! go list -m all
    stderr '^go: updates to go.mod needed; to update it:\n\tgo mod tidy$'
    go mod tidy
    go list -m all
    cmp go.mod go.mod.want
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 15 00:06:54 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassDetector.java

     */
    package org.gradle.api.internal.tasks.testing.junit;
    
    import org.gradle.internal.classanalysis.AsmConstants;
    import org.gradle.api.internal.tasks.testing.detection.TestClassVisitor;
    import org.gradle.api.internal.tasks.testing.detection.TestFrameworkDetector;
    import org.objectweb.asm.AnnotationVisitor;
    import org.objectweb.asm.MethodVisitor;
    
    class JUnitTestClassDetector extends TestClassVisitor {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top