Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 545 for shared (0.11 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/DefaultNativeLibrarySpecTest.groovy

            library.displayName == "native library 'someLib'"
        }
    
        def "can use shared variant as requirement"() {
            when:
            def requirement = library.shared
    
            then:
            requirement.projectPath == 'project-path'
            requirement.libraryName == 'someLib'
            requirement.linkage == 'shared'
        }
    
        def "can use static variant as requirement"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/internal/tooling/GradleBuildBuilderTest.groovy

    import org.gradle.util.TestUtil
    import org.junit.ClassRule
    import spock.lang.Shared
    import spock.lang.Specification
    
    import java.util.function.Consumer
    
    @CleanupTestDirectory
    class GradleBuildBuilderTest extends Specification {
        @Shared
        @ClassRule
        public TestNameTestDirectoryProvider temporaryFolder = TestNameTestDirectoryProvider.newInstance(getClass())
        @Shared
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/prebuilt/DefaultPrebuiltSharedLibraryBinary.java

        @Override
        public FileCollection getLinkFiles() {
            return createFileCollection(getSharedLibraryLinkFile(), "link files", "Shared library link files");
        }
    
        @Override
        public FileCollection getRuntimeFiles() {
            return createFileCollection(getSharedLibraryFile(), "runtime files", "Shared library runtime files");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/PrebuiltSharedLibraryBinary.java

    import org.gradle.api.Incubating;
    
    import java.io.File;
    
    /**
     * A shared library that exists at a known location on the filesystem.
     */
    @Incubating
    public interface PrebuiltSharedLibraryBinary extends SharedLibraryBinary {
        /**
         * The shared library file.
         */
        void setSharedLibraryFile(File sharedLibraryFile);
    
        /**
         * The shared library link file.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/cross-namespace-routing/site-route.yaml

    metadata:
      name: home
      namespace: site-ns
    spec:
      parentRefs:
      - name: shared-gateway
        namespace: infra-ns
      rules:
      - backendRefs:
        - name: home
          port: 8080
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: login
      namespace: site-ns
    spec:
      parentRefs:
      - name: shared-gateway
        namespace: infra-ns
      rules:
      - matches:
        - path:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 646 bytes
    - Viewed (0)
  6. src/cmd/asm/doc.go

    	-dynlink
    		Support references to Go symbols defined in other shared libraries.
    	-e
    		No limit on number of errors reported.
    	-gensymabis
    		Write symbol ABI information to output file. Don't assemble.
    	-o file
    		Write output to file. The default is foo.o for /a/b/c/foo.s.
    	-p pkgpath
    		Set expected package import to pkgpath.
    	-shared
    		Generate code that can be linked into a shared library.
    	-spectre list
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 20:46:45 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/cache2/FileOperator.kt

     *
     *  * **Read/write:** read and write using the same operator.
     *  * **Random access:** access any position within the file.
     *  * **Shared channels:** read and write a file channel that's shared between
     * multiple operators. Note that although the underlying [FileChannel] may be shared,
     * each [FileOperator] should not be.
     */
    internal class FileOperator(
      private val fileChannel: FileChannel,
    ) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/config.go

    			*mode = BuildModePIE
    		default:
    			*mode = BuildModeExe
    		}
    	case "pie":
    		*mode = BuildModePIE
    	case "c-archive":
    		*mode = BuildModeCArchive
    	case "c-shared":
    		*mode = BuildModeCShared
    	case "shared":
    		*mode = BuildModeShared
    	case "plugin":
    		*mode = BuildModePlugin
    	}
    
    	if !platform.BuildModeSupported("gc", s, buildcfg.GOOS, buildcfg.GOARCH) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:14:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/cross-project-output-sharing/groovy/producer/build.gradle

    def makeFile = tasks.register("makeFile") {
        def sharedFile = layout.buildDirectory.file("some-subdir/shared-file.txt")
        outputs.file(sharedFile)
        doFirst {
            sharedFile.get().asFile << "This file is shared across Gradle subprojects."
        }
    }
    
    configurations {
        sharedConfiguration {
            canBeResolved = false
        }
    }
    
    artifacts {
        sharedConfiguration(makeFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 389 bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/SharedLibraryBinary.java

    import java.io.File;
    
    /**
     * A {@link NativeLibrary} that has been compiled and linked as a shared library.
     */
    @Incubating
    public interface SharedLibraryBinary extends NativeLibraryBinary {
    
        /**
         * The shared library file.
         */
        File getSharedLibraryFile();
    
        /**
         * The shared library link file.
         */
        File getSharedLibraryLinkFile();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top