Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 532 for detective (0.13 sec)

  1. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/ShowToolchainsTaskTest.groovy

        }
    
        def "reports download and detection options"() {
            given:
            defineJdks()
            toolchainConfiguration.isAutoDetectEnabled() >> false
            toolchainConfiguration.isDownloadEnabled() >> false
    
            when:
            task.showToolchains()
    
            then:
            outputProbe.value == """
    {identifier} + Options{normal}
         | Auto-detection:     {description}Disabled{normal}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  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. 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)
  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. 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)
  8. 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)
  9. cmd/leak-detect_test.go

    	"strings"
    	"time"
    )
    
    const (
    	// deadline (in seconds) up to which the go routine leak detection has to be retried.
    	leakDetectDeadline = 5
    	// pause time (in milliseconds) between each snapshot at the end of the go routine leak detection.
    	leakDetectPauseTimeMs = 50
    )
    
    // LeakDetect - type with  methods for go routine leak detection.
    type LeakDetect struct {
    	relevantRoutines map[string]bool
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitDetector.java

     */
    package org.gradle.api.internal.tasks.testing.junit;
    
    import com.google.common.collect.ImmutableSet;
    import org.gradle.api.internal.tasks.testing.detection.AbstractTestFrameworkDetector;
    import org.gradle.api.internal.tasks.testing.detection.ClassFileExtractionManager;
    
    public class JUnitDetector extends AbstractTestFrameworkDetector<JUnitTestClassDetector> {
    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