Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 537 for libc (0.04 sec)

  1. 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)
  2. 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)
  3. src/debug/elf/file_test.go

    			{"", 3, 0, 28, 0, 0, "", ""},
    			{"", 3, 0, 29, 0, 0, "", ""},
    			{"crt1.c", 4, 0, 65521, 0, 0, "", ""},
    			{"/usr/src/lib/csu/i386-elf/crti.S", 4, 0, 65521, 0, 0, "", ""},
    			{"<command line>", 4, 0, 65521, 0, 0, "", ""},
    			{"<built-in>", 4, 0, 65521, 0, 0, "", ""},
    			{"/usr/src/lib/csu/i386-elf/crti.S", 4, 0, 65521, 0, 0, "", ""},
    			{"crtstuff.c", 4, 0, 65521, 0, 0, "", ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            output.count("components 1: [project :lib, project :lib, lib3.jar, org.test.foo:lib4:1.0]") == 2
            output.count("files 2: [lib1.jar.hash, lib2.jar.hash, lib3.jar.hash, lib4-1.0.jar.hash]") == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    [[sec:limitations]]
    == Toolchains limitations
    
    Gradle may detect toolchains incorrectly when it's running in a JVM compiled against `musl`, an https://musl.libc.org/[alternative implementation] of the C standard library.
    JVMs compiled against `musl` can sometimes override the `LD_LIBRARY_PATH` environment variable to control dynamic library resolution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformParallelIntegrationTest.groovy

                    }
                }
            """
    
            server.expectConcurrent("lib1.jar", "lib2.jar", "lib3.jar")
    
            when:
            succeeds ":resolve"
    
            then:
            outputContains("Transforming lib1.jar to lib1.jar.txt")
            outputContains("Transforming lib2.jar to lib2.jar.txt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:31 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/KotlinDslVersionCatalogExtensionIntegrationTest.groovy

            lib.pom.expectGet()
            lib.artifact.expectGet()
            lib2.pom.expectGet()
            lib2.artifact.expectGet()
    
            then:
            succeeds ':checkDeps'
        }
    
        @Issue("https://github.com/gradle/gradle/issues/15350")
        def "provides String.invoke method supporting provider"() {
            def lib = mavenHttpRepo.module('org.gradle.test', 'lib', '1.1').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17K bytes
    - Viewed (0)
  10. 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)
Back to top