Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,986 for RUNTIME (0.1 sec)

  1. src/cmd/vendor/golang.org/x/term/term_unsupported.go

    	return fmt.Errorf("terminal: Restore not implemented on %s/%s", runtime.GOOS, runtime.GOARCH)
    }
    
    func getSize(fd int) (width, height int, err error) {
    	return 0, 0, fmt.Errorf("terminal: GetSize not implemented on %s/%s", runtime.GOOS, runtime.GOARCH)
    }
    
    func readPassword(fd int) ([]byte, error) {
    	return nil, fmt.Errorf("terminal: ReadPassword not implemented on %s/%s", runtime.GOOS, runtime.GOARCH)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. src/cmd/pprof/pprof_test.go

    			t.Skipf("skipping on %s/%s, issue 13841", runtime.GOOS, runtime.GOARCH)
    		}
    	}
    }
    
    func mustHaveDisasm(t *testing.T) {
    	switch runtime.GOARCH {
    	case "loong64":
    		t.Skipf("skipping on %s.", runtime.GOARCH)
    	case "mips", "mipsle", "mips64", "mips64le":
    		t.Skipf("skipping on %s, issue 12559", runtime.GOARCH)
    	case "riscv64":
    		t.Skipf("skipping on %s, issue 36738", runtime.GOARCH)
    	case "s390x":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. src/runtime/debug_test.go

    	// and may not have a P.
    	runtime.GC()
    
    	ready := make(chan *runtime.G)
    	var stop uint32
    	defer atomic.StoreUint32(&stop, 1)
    	go func() {
    		runtime.LockOSThread()
    		defer runtime.UnlockOSThread()
    		ready <- runtime.Getg()
    		for atomic.LoadUint32(&stop) == 0 {
    		}
    	}()
    	g := <-ready
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 15:08:04 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-consistentResolution/tests/fixed-dependency-insight.out

        | Attribute Name                 | Provided     | Requested    |
        |--------------------------------|--------------|--------------|
        | org.gradle.status              | release      |              |
        | org.gradle.category            | library      | library      |
        | org.gradle.libraryelements     | jar          | jar          |
        | org.gradle.usage               | java-runtime | java-runtime |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryOutgoingVariantsIntegrationTest.groovy

                runtime-only-1.0.jar (test:runtime-only:1.0) {artifactType=jar, org.gradle.category=library, org.gradle.libraryelements=jar, org.gradle.status=release, org.gradle.usage=java-runtime}
           """)
    
            where:
            requestJarAttribute << [true, false]
        }
    
        def "provides runtime JAR variant using artifactType"() {
            buildFile << """
                project(':consumer') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    func Getegid() (egid int) {
    	runtime.EnterSyscall()
    	r0, _, _ := CallLeFuncWithErr(GetZosLibVec() + SYS_GETEGID<<4)
    	runtime.ExitSyscall()
    	egid = int(r0)
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Geteuid() (euid int) {
    	runtime.EnterSyscall()
    	r0, _, _ := CallLeFuncWithErr(GetZosLibVec() + SYS_GETEUID<<4)
    	runtime.ExitSyscall()
    	euid = int(r0)
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  7. src/runtime/debug/stack_test.go

    	goroutine 10 [running]:
    	runtime/debug.Stack(0x0, 0x0, 0x0)
    		/Users/r/go/src/runtime/debug/stack.go:28 +0x80
    	runtime/debug.(*T).ptrmethod(0xc82005ee70, 0x0, 0x0, 0x0)
    		/Users/r/go/src/runtime/debug/stack_test.go:15 +0x29
    	runtime/debug.T.method(0x0, 0x0, 0x0, 0x0)
    		/Users/r/go/src/runtime/debug/stack_test.go:18 +0x32
    	runtime/debug.TestStack(0xc8201ce000)
    		/Users/r/go/src/runtime/debug/stack_test.go:37 +0x38
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. src/runtime/import_test.go

    package runtime_test
    
    import (
    	"fmt"
    	"internal/testenv"
    	"runtime"
    	"testing"
    )
    
    func init() {
    	runtime.FmtSprintf = fmt.Sprintf
    	runtime.TestenvOptimizationOff = testenv.OptimizationOff
    }
    
    func TestInlineUnwinder(t *testing.T) {
    	runtime.XTestInlineUnwinder(t)
    }
    
    func TestSPWrite(t *testing.T) {
    	runtime.XTestSPWrite(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 06 14:45:46 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. src/runtime/debuglog_test.go

    	runtime.LockOSThread()
    	defer runtime.UnlockOSThread()
    
    	runtime.ResetDebugLog()
    	var longString = strings.Repeat("a", 128)
    	var want strings.Builder
    	for i, j := 0, 0; j < 2*runtime.DebugLogBytes; i, j = i+1, j+len(longString) {
    		runtime.Dlog().I(i).S(longString).End()
    		fmt.Fprintf(&want, "[] %d %s\n", i, longString)
    	}
    	log := runtime.DumpDebugLog()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 16:59:26 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

        protected void setupHtmlData(final ActionRuntime runtime) {
            super.setupHtmlData(runtime);
            systemHelper.setupAdminHtmlData(this, runtime);
    
            final Boolean editable = getUserBean()
                    .map(user -> user.hasRoles(fessConfig.getAuthenticationAdminRolesAsArray()) || user.hasRole(getActionRole())).orElse(false);
            runtime.registerData("editable", editable);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top