Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,736 for shared (0.18 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/cpp-lib/groovy/build.gradle

    // end::use-plugin[]
    
    // tag::args[]
    model {
        components {
            main(NativeLibrarySpec) {
                binaries.withType(SharedLibraryBinarySpec) {
                    // Define a preprocessor macro that only applies to shared libraries
                    cppCompiler.define "DLL_EXPORT"
                }
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 379 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/intro_multi_project_builds.adoc

    In <<declaring_dependencies_between_subprojects#javadependencies_2,this example>>, the `:services:person-service` project depends on both the `:api` and `:shared` projects.
    The `:api` project also depends on the `:shared` project.
    
    Assuming you are working on a single project, the `:api` project, you have been making changes but have not built the entire project since performing a `clean`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/multiproject/basic-dependencies/groovy/services/person-service/src/main/java/org/gradle/sample/services/PersonService.java

    package org.gradle.sample.services;
    
    import org.gradle.sample.api.Person;
    import org.gradle.sample.shared.Helper;
    
    public class PersonService {
        boolean checkPerson(Person person) {
            System.out.println(Helper.prettyPrint("Checking"));
            if (person.getFirstname().length() < 2) {
                return false;
            }
            return true;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:29:44 UTC 2024
    - 360 bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/GccLinkerTest.groovy

            given:
            def testDir = tmpDirProvider.testDirectory
            def outputFile = testDir.file("output/lib")
    
            final expectedArgs = [
                    "-sys1", "-sys2",
                    "-shared",
                    getSoNameProp("installName"),
                    "-o", outputFile.absolutePath,
                    testDir.file("one.o").absolutePath,
                    testDir.file("two.o").absolutePath,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/AbstractProcessInstrumentationInDynamicGroovyIntegrationTest.groovy

     */
    
    package org.gradle.internal.cc.impl.inputs.process.instrument
    
    import org.gradle.integtests.fixtures.GroovyBuildScriptLanguage
    import org.gradle.test.fixtures.file.TestFile
    import spock.lang.Shared
    
    /**
     * Base class for tests that invoke external process with the dynamic Groovy code.
     * There are many different ways to run a process in Groovy, and all are producing different byte code.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/cross-namespace-routing/store-route.yaml

    #$ Used in:
    #$ - site-src/guides/multiple-ns.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: store
      namespace: store-ns
    spec:
      parentRefs:
      - name: shared-gateway
        namespace: infra-ns
      rules:
      - matches:
        - path:
            value: /store
        backendRefs:
        - name: store
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 333 bytes
    - Viewed (0)
  7. src/runtime/rt0_openbsd_arm64.s

    	SVC;		\
    	NOOP;		\
    	NOOP
    
    TEXT _rt0_arm64_openbsd(SB),NOSPLIT|NOFRAME,$0
    	MOVD	0(RSP), R0	// argc
    	ADD	$8, RSP, R1	// argv
    	BL	main(SB)
    
    // When building with -buildmode=c-shared, this symbol is called when the shared
    // library is loaded.
    TEXT _rt0_arm64_openbsd_lib(SB),NOSPLIT,$184
    	// Preserve callee-save registers.
    	SAVE_R19_TO_R28(24)
    	SAVE_F8_TO_F15(104)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 01:28:43 UTC 2022
    - 2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/multiproject/dependencies-java/kotlin/services/person-service/src/main/java/org/gradle/sample/services/PersonService.java

    package org.gradle.sample.services;
    
    import org.gradle.sample.api.Person;
    import org.gradle.sample.shared.Helper;
    
    public class PersonService {
        boolean checkPerson(Person person) {
            System.out.println(Helper.prettyPrint("Checking"));
            if (person.getFirstname().length() < 2) {
                return false;
            }
            return true;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 360 bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/resolve/NativeDependencyNotationParserTest.groovy

        def requirement = Mock(NativeLibraryRequirement)
        def library = Mock(NativeLibrarySpec)
        def project = Mock(ProjectInternal)
    
        def "uses shared variant of library"() {
            when:
            def input = library
    
            and:
            library.shared >> requirement
    
            then:
            parser.parseNotation(input) == requirement
        }
    
        def "parses map notation for library in same project"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/multiproject/basic-dependencies/kotlin/api/build.gradle.kts

    plugins {
        id("java")
    }
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        testImplementation("junit:junit:4.13")
        implementation(project(":shared"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:29:44 UTC 2024
    - 164 bytes
    - Viewed (0)
Back to top