Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 93 for detective (0.17 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/directive/directive.go

    		if check.file == nil {
    			check.pass.Reportf(pos, "//go:debug directive only valid in Go source files")
    		} else if check.file.Name.Name != "main" && !strings.HasSuffix(check.filename, "_test.go") {
    			check.pass.Reportf(pos, "//go:debug directive only valid in package main or test")
    		} else if !check.inHeader {
    			check.pass.Reportf(pos, "//go:debug directive only valid before package declaration")
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RobotsTxt.java

        protected final Map<Pattern, Directive> directiveMap = new LinkedHashMap<>();
    
        private final List<String> sitemapList = new ArrayList<>();
    
        public boolean allows(final String path, final String userAgent) {
            final Directive directive = getMatchedDirective(userAgent);
            if (directive == null) {
                return true;
            }
            return directive.allows(path);
        }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/RobotsTxtHelper.java

                        if (value != null) {
                            if (!currentDirectiveList.isEmpty() && value.length() > 0) {
                                for (final Directive directive : currentDirectiveList) {
                                    directive.addDisallow(value);
                                }
                            }
                        } else if ((value = getValue(ALLOW_RECORD, line)) != null) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/PluginDetectionIntegrationTest.groovy

    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    import org.gradle.test.fixtures.plugin.PluginBuilder
    import spock.lang.Issue
    
    /**
     * Tests various aspects of detecting the existence of plugins by their ID.
     */
    class PluginDetectionIntegrationTest extends AbstractIntegrationSpec {
    
        public static final List<String> JAVA_PLUGIN_IDS = ["java", "org.gradle.java"]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/-CacheControlCommon.kt

          }
    
          when {
            "no-cache".equals(directive, ignoreCase = true) -> {
              noCache = true
            }
            "no-store".equals(directive, ignoreCase = true) -> {
              noStore = true
            }
            "max-age".equals(directive, ignoreCase = true) -> {
              maxAgeSeconds = parameter.toNonNegativeInt(-1)
            }
            "s-maxage".equals(directive, ignoreCase = true) -> {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJavaInstallationRegistryTest.groovy

            installations[0].source == "testSource"
        }
    
        def "detecting installations is tracked as build operation"() {
            given:
            def registry = createRegistry([])
    
            when:
            registry.listInstallations()
    
            then:
            operations.log.getDescriptors().find { it.displayName == "Toolchain detection" }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceFlakinessDataProvider.java

         * in the flakiness detection builds divided by the total number of runs of the scenario.
         *
         * <pre>
         *  SELECT TESTID, TESTPROJECT, AVG(CONVERT(CASEWHEN(DIFFCONFIDENCE &gt; 0.97, 1, 0), DECIMAL)) AS FAILURE_RATE,
         *  FROM TESTEXECUTION
         *  WHERE (CHANNEL = 'flakiness-detection-master' OR CHANNEL = 'flakiness-detection-release')
         *  GROUP BY TESTID
         * </pre>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/resolver/AbstractResolveTest.kt

        )
    
        protected fun ignoreStabilityIfNeeded(directives: RegisteredDirectives, body: () -> Unit) {
            val directive = directives.doNotCheckSymbolRestoreDirective()
            val isStabilitySuppressed = directive != null && directives[directive].let { values ->
                values.isEmpty() || values.any { it == resolveKind }
            }
    
            try {
                body()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:00 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top