Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for libc (0.92 sec)

  1. 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)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            file("app/build/libs").assertHasDescendants("lib1.jar.txt", "lib2.zip.txt")
            file("app/build/libs/lib1.jar.txt").text == file("lib/build/lib1.jar").length() as String
    
            and:
            output.count("Transforming") == 2
            output.count("Transforming lib1.jar to lib1.jar.txt") == 1
            output.count("Transforming lib2.zip to lib2.zip.txt") == 1
    
            when:
            run "resolve"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/lib/vs2013/cunit.lib

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 113.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/lib/vs2010/cunit.lib

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 115K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/lib/vs2015/cunit.lib

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 120.5K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    	gp.stackguard0 = gp.stack.lo + stackGuard
    
    	msigrestore(gp.m.sigmask)
    
    	gp.m.locks--
    }
    
    // inForkedChild is true while manipulating signals in the child process.
    // This is used to avoid calling libc functions in case we are using vfork.
    var inForkedChild bool
    
    // Called from syscall package after fork in child.
    // It resets non-sigignored signals to the default handler, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/asm6.go

    // what that bug is. And this does fix it.
    func useAbs(ctxt *obj.Link, s *obj.LSym) bool {
    	if ctxt.Headtype == objabi.Hsolaris {
    		// All the Solaris dynamic imports from libc.so begin with "libc_".
    		return strings.HasPrefix(s.Name, "libc_")
    	}
    	return ctxt.Arch.Family == sys.I386 && !ctxt.Flag_shared
    }
    
    // single-instruction no-ops of various lengths.
    // constructed by hand and disassembled with gdb to verify.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    			if err := checkCompilerFlags("CFLAGS", "pkg-config --cflags", cflags); err != nil {
    				return nil, nil, err
    			}
    		}
    		out, err = sh.runOut(p.Dir, nil, b.PkgconfigCmd(), "--libs", pcflags, "--", pkgs)
    		if err != nil {
    			desc := b.PkgconfigCmd() + " --libs " + strings.Join(pcflags, " ") + " -- " + strings.Join(pkgs, " ")
    			return nil, nil, sh.reportCmd(desc, "", out, err)
    		}
    		if len(out) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/data.go

    				// the start of the thread-local data block, so add 8
    				// to the actual TLS offset (r->sym->value).
    				// This 8 seems to be a fundamental constant of
    				// ELF on ARM (or maybe Glibc on ARM); it is not
    				// related to the fact that our own TLS storage happens
    				// to take up 8 bytes.
    				o = 8 + ldr.SymValue(rs)
    			} else if target.IsElf() || target.IsPlan9() || target.IsDarwin() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top