Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 668 for detective (0.26 sec)

  1. src/vendor/golang.org/x/sys/cpu/cpu_gccgo_s390x.go

    //go:build gccgo
    
    package cpu
    
    // haveAsmFunctions reports whether the other functions in this file can
    // be safely called.
    func haveAsmFunctions() bool { return false }
    
    // TODO(mundaym): the following feature detection functions are currently
    // stubs. See https://golang.org/cl/162887 for how to fix this.
    // They are likely to be expensive to call so the results should be cached.
    func stfle() facilityList     { panic("not implemented for gccgo") }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. src/encoding/xml/xml_test.go

    `
    
    var nestedDirectivesTokens = []Token{
    	CharData("\n"),
    	Directive(`DOCTYPE [<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#">]`),
    	CharData("\n"),
    	Directive(`DOCTYPE [<!ENTITY xlt ">">]`),
    	CharData("\n"),
    	Directive(`DOCTYPE [<!ENTITY xlt "<">]`),
    	CharData("\n"),
    	Directive(`DOCTYPE [<!ENTITY xlt '>'>]`),
    	CharData("\n"),
    	Directive(`DOCTYPE [<!ENTITY xlt '<'>]`),
    	CharData("\n"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/console/WindowsConsoleDetector.java

    import java.io.IOException;
    import java.io.PrintStream;
    
    public class WindowsConsoleDetector implements ConsoleDetector {
        @Override
        public ConsoleMetaData getConsole() {
            // Use Jansi's detection mechanism
            try {
                new WindowsAnsiPrintStream(new PrintStream(new ByteArrayOutputStream()));
                return FallbackConsoleMetaData.ATTACHED;
            } catch (IOException ignore) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJavaToolchainProvisioningService.java

            if (!isAutoDownloadEnabled()) {
                throw new ToolchainDownloadFailedException("No locally installed toolchains match and toolchain auto-provisioning is not enabled.",
                    "Learn more about toolchain auto-detection at " + Documentation.userManual("toolchains", "sec:auto_detection").getUrl() + ".");
            }
    
            List<? extends RealizedJavaToolchainRepository> repositories = toolchainResolverRegistry.requestedRepositories();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 23:01:05 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. src/internal/cpu/cpu_test.go

    	if !DebugOptions {
    		t.Skipf("skipping test: cpu feature options not supported by OS")
    	}
    }
    
    func MustSupportFeatureDetection(t *testing.T) {
    	// TODO: add platforms that do not have CPU feature detection support.
    }
    
    func runDebugOptionsTest(t *testing.T, test string, options string) {
    	MustHaveDebugOptionsSupport(t)
    
    	testenv.MustHaveExec(t)
    
    	env := "GODEBUG=" + options
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadIntegrationTest.groovy

                   .assertHasResolutions(
                       DocumentationUtils.normalizeDocumentationLink("Learn more about toolchain auto-detection at https://docs.gradle.org/current/userguide/toolchains.html#sec:auto_detection."),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 10:53:57 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/work_errors_pos.txt

    cp go.work.badgodebug.txt go.work
    ! go list
    stderr '^go.work:3: unknown godebug "foo"$'
    
    cp go.work.unparsable.txt go.work
    ! go list
    stderr '^go.work:5: unknown directive: notadirective'
    
    cp go.work.firstlineerr.txt go.work
    ! go list
    stderr '^go.work:1: unknown godebug "bar"$'
    
    cp go.work.firsterrlisted.txt go.work
    ! go list
    stderr '^go.work:1: unknown godebug "baz"$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 926 bytes
    - Viewed (0)
  8. src/cmd/internal/osinfo/os_js.go

    //go:build js
    
    package osinfo
    
    import (
    	"fmt"
    	"syscall/js"
    )
    
    // Version returns the OS version name/number.
    func Version() (string, error) {
    	// Version detection on Wasm varies depending on the underlying runtime
    	// (browser, node, etc), nor is there a standard via something like
    	// WASI (see https://go.dev/issue/31105). For now, attempt a few simple
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:43:17 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. releasenotes/notes/56781.yaml

    # release notes.
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/resources/org/gradle/initialization/removed-types.txt

    org.gradle.api.internal.tasks.compile.GroovyJavaJointCompiler
    org.gradle.api.internal.tasks.scala.ScalaJavaJointCompiler
    org.gradle.api.internal.xml.XmlTransformer
    org.gradle.api.internal.XmlTransformer
    org.gradle.api.internal.tasks.testing.detection.TestExecuter
    org.gradle.api.internal.tasks.testing.junit.report.TestReporter
    org.gradle.api.internal.tasks.execution.TaskValidator
    org.gradle.api.artifacts.transform.ArtifactTransformDependencies
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 28 09:26:18 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top