Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for libCpp (0.35 sec)

  1. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryBinariesIntegrationTest.groovy

            given:
            buildFile << """
    apply plugin: "cpp"
    apply plugin: "c"
    
    model {
        components {
            libCpp(NativeLibrarySpec)
            libC(NativeLibrarySpec)
            main(NativeExecutableSpec) {
                sources {
                    cpp.lib library: 'libCpp', linkage: 'static'
                    c.lib library: 'libC', linkage: 'static'
                }
            }
        }
    }
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r65/ToolingApiEclipseModelLifeCycleCrossVersionSpec.groovy

            setup:
            MavenFileRepository mavenRepo = new MavenFileRepository(file('maven-repo'))
            MavenFileModule libApi = mavenRepo.module('org.example', 'lib-api', '1.0').publish()
            mavenRepo.module('org.example', 'lib-impl', '1.0').dependsOn(libApi).publish()
            String localMaven = "maven { url '${mavenRepo.uri}' }"
    
            settingsFile << 'rootProject.name = "root"'
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/zip_sum_test/testdata/zip_sums.csv

    github.com/libp2p/go-libp2p-nat,v0.0.4,h1:+KXK324yaY701On8a0aGjTnw8467kW3ExKcqW2wwmyw=,4c3db4e0f7f714439364ca0853f63d426bba67924da6fd050fd0184abdfec2df
    github.com/libp2p/go-libp2p-net,v0.1.0,h1:3t23V5cR4GXcNoFriNoZKFdUZEUDZgUkvfwkD2INvQE=,4140afd418393c2a4ecccca97d80b4752d20da6f34fac15fbdc4f0566f7b8cea
    github.com/libp2p/go-libp2p-netutil,v0.1.0,h1:zscYDNVEcGxyUpMd0JReUZTrpMfia8PmLKcKF72EAMQ=,c98ad0a3ffab37b6a0bc80aefba4e4cb442b09c01277a7dcc0086c4a004e649a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 18 17:29:01 UTC 2020
    - 334.9K bytes
    - Viewed (0)
  4. ci/official/containers/linux_arm64/devel.packages.txt

    automake
    build-essential
    ca-certificates
    llvm-17
    clang-17
    clang-format-12
    lld-17
    colordiff
    curl
    ffmpeg
    gdb
    git
    jq
    less
    libcurl3-dev
    libcurl4-openssl-dev
    libfreetype6-dev
    libhdf5-serial-dev
    libomp-17-dev
    libssl-dev
    libtool
    libxml2-dev
    libxslt1-dev
    libzmq3-dev
    mlocate
    moreutils
    openjdk-11-jdk
    openjdk-11-jre-headless
    openssl
    patchelf
    pkg-config
    python3-dev
    python3-setuptools
    rsync
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 15:23:28 UTC 2024
    - 485 bytes
    - Viewed (0)
  5. ci/official/envs/linux_x86_tpu

    TFCI_LIB_SUFFIX="-tpu-linux-x86_64"
    TFCI_WHL_BAZEL_TEST_ENABLE=0
    TFCI_WHL_IMPORT_TEST_ENABLE=0
    TFCI_WHL_SIZE_LIMIT=580M
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 21:16:27 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. ci/official/containers/linux_arm64/builder.devtoolset/build_devtoolset.sh

    mkdir -p "${TARGET}-build"
    cd "${TARGET}-build"
    
    "${TARGET}-src/configure" \
          --prefix="${TARGET}/usr" \
          --with-sysroot="/${TARGET}" \
          --disable-bootstrap \
          --disable-libmpx \
          --enable-libsanitizer \
          --disable-libunwind-exceptions \
          --disable-libunwind-exceptions \
          --disable-lto \
          --disable-multilib \
          --enable-__cxa_atexit \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 29 00:26:34 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/coderepo.go

    			// version. (See https://golang.org/issue/34189.)
    			//
    			// We know of at least two examples where this behavior is desired
    			// (github.com/russross/blackfriday@v2.0.0 and
    			// github.com/libp2p/go-libp2p@v6.0.23), and (as of 2019-10-29) have no
    			// concrete examples for which it is undesired.
    			return versions, nil
    		}
    	}
    
    	var (
    		lastMajor         string
    		lastMajorHasGoMod bool
    	)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/lib.go

    	if *flagCaptureHostObjs != "" {
    		captureHostObj(h)
    	}
    }
    
    func checkFingerprint(lib *sym.Library, libfp goobj.FingerprintType, src string, srcfp goobj.FingerprintType) {
    	if libfp != srcfp {
    		Exitf("fingerprint mismatch: %s has %x, import from %s expecting %x", lib, libfp, src, srcfp)
    	}
    }
    
    func readelfsymboldata(ctxt *Link, f *elf.File, sym *elf.Symbol) []byte {
    	data := make([]byte, sym.Size)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testshared/shared_test.go

    	globalSkip(t)
    	goCmd(t, "install", "-buildmode=shared", "-linkshared", "./depBase")
    	goCmd(t, "install", "-linkshared", "./exe")
    
    	// If we make an ABI-breaking change to depBase and rebuild libp.so but not exe,
    	// exe will abort with a complaint on startup.
    	// This assumes adding an exported function breaks ABI, which is not true in
    	// some senses but suffices for the narrow definition of ABI compatibility the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
Back to top