Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for libc (0.08 sec)

  1. src/runtime/race.go

    }
    
    //go:nosplit
    func raceinit() (gctx, pctx uintptr) {
    	lockInit(&raceFiniLock, lockRankRaceFini)
    
    	// On most machines, cgo is required to initialize libc, which is used by race runtime.
    	if !iscgo && GOOS != "darwin" {
    		throw("raceinit: race build must use cgo")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. src/syscall/syscall_aix.go

    }
    
    // fcntl must never be called with cmd=F_DUP2FD because it doesn't work on AIX
    // There is no way to create a custom fcntl and to keep //sys fcntl easily,
    // because we need fcntl name for its libc symbol. This is linked with the script.
    // But, as fcntl is currently not exported and isn't called with F_DUP2FD,
    // it doesn't matter.
    //sys	fcntl(fd int, cmd int, arg int) (val int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. src/os/exec/exec_test.go

    	}
    
    	// Since this test is not running in parallel, we don't expect any new file
    	// descriptors to be opened while it runs. However, if there are additional
    	// FDs present at the start of the test (for example, opened by libc), those
    	// may be closed due to a timeout of some sort. Allow those to go away, but
    	// check that no new FDs are added.
    	for _, fd := range openFDs() {
    		if !old[fd] {
    			t.Errorf("leaked file descriptor %v", fd)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  4. src/runtime/cgocall.go

    type cgoCallers [32]uintptr
    
    // argset matches runtime/cgo/linux_syscall.c:argset_t
    type argset struct {
    	args   unsafe.Pointer
    	retval uintptr
    }
    
    // wrapper for syscall package to call cgocall for libc (cgo) calls.
    //
    //go:linkname syscall_cgocaller syscall.cgocaller
    //go:nosplit
    //go:uintptrescapes
    func syscall_cgocaller(fn unsafe.Pointer, args ...uintptr) uintptr {
    	as := argset{args: unsafe.Pointer(&args[0])}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/runtimeshaded/RuntimeShadedJarCreatorTest.groovy

            def inputFilesDir = tmpDir.createDir('inputFiles')
            def jarFile1 = inputFilesDir.file('lib1.jar')
            createJarFileWithClassFiles(jarFile1, ['org/gradle/MyClass'])
            def jarFile2 = inputFilesDir.file('lib2.jar')
            createJarFileWithClassFiles(jarFile2, ['org/gradle/MySecondClass'])
            def jarFile3 = inputFilesDir.file('lib3.jar')
            def serviceType = 'org.gradle.internal.service.scopes.GradleModuleServices'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/TomlDependenciesExtensionIntegrationTest.groovy

    [versions]
    commons-lib = "1.0"
    
    [libraries]
    my-lib = {group = "org.gradle.test", name="lib", version.ref="commons-lib"}
    my-lib2 = {group = "org.gradle.test", name="lib2", version.ref="commons-lib"}
    
    [bundles]
    my-bundle = ["my-lib"]
    other-bundle = ["my-lib", "my-lib2"]
    
    """
            def lib = mavenHttpRepo.module("org.gradle.test", "lib", "1.0").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilderTest.groovy

            def file1 = new File("/lib/lib1.jar")
            def file2 = new File("/lib/lib2.jar")
            spec.compileClasspath = [file1, file2]
    
            expect:
            builder.build() == defaultOptionsWithoutClasspath + ["-classpath", "$file1$File.pathSeparator$file2"]
        }
    
        def "generates -processorpath option"() {
            def file1 = new File("/lib/lib1.jar")
            def file2 = new File("/lib/lib2.jar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:36 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. src/syscall/syscall_linux.go

    	// [1] https://cs.android.com/android/platform/superproject/+/master:bionic/libc/SECCOMP_BLOCKLIST_APP.TXT;l=4;drc=dbb8670dfdcc677f7e3b9262e93800fa14c4e417
    	if runtime.GOOS != "android" {
    		if err := faccessat2(dirfd, path, mode, flags); err != ENOSYS && err != EPERM {
    			return err
    		}
    	}
    
    	// The Linux kernel faccessat system call does not take any flags.
    	// The glibc faccessat implements the flags itself; see
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  9. src/runtime/runtime2.go

    	_SigGoExit               // cause all runtime procs to exit (only used on Plan 9).
    	_SigSetStack             // Don't explicitly install handler, but add SA_ONSTACK to existing libc handler
    	_SigUnblock              // always unblock; see blockableSig
    	_SigIgn                  // _SIG_DFL action is to ignore the signal
    )
    
    // Layout of in-memory per-function information prepared by linker
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFeaturesIntegrationTest.groovy

            outputContains("result = [lib1-2.1.jar, lib2-4.0.jar]")
    
            when:
            configurationCacheRun("resolve1", "resolve2")
    
            then:
            configurationCache.assertStateLoaded()
            outputContains("result = [lib1-2.1.jar, lib2-4.0.jar]")
    
            where:
            repo                 | _
            new MavenFileRepo()  | _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top