Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,736 for shared (0.1 sec)

  1. platforms/documentation/docs/src/snippets/multiproject/dependencies-java/groovy/shared/src/main/java/org/gradle/sample/shared/Helper.java

    package org.gradle.sample.shared;
    
    public class Helper {
        public static String prettyPrint(String text) {
           return "*** " + text + " ***";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 156 bytes
    - Viewed (0)
  2. src/runtime/cgo/callbacks.go

    // compiled with gcc via crosscall2.
    
    // The declaration of crosscall2 is:
    //   void crosscall2(void (*fn)(void *), void *, int);
    //
    // We need to export the symbol crosscall2 in order to support
    // callbacks from shared libraries. This applies regardless of
    // linking mode.
    //
    // Compatibility note: SWIG uses crosscall2 in exactly one situation:
    // to call _cgo_panic using the pattern shown below. We need to keep
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/java/multiproject/groovy/api/build.gradle

    plugins {
        id 'java-library'
    }
    
    // tag::project-dependencies[]
    dependencies {
        implementation project(':shared')
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 152 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/multiproject/basic-dependencies/kotlin/services/person-service/build.gradle.kts

    plugins {
        id("java")
    }
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        testImplementation("junit:junit:4.13")
        implementation(project(":shared"))
        implementation(project(":api"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:29:44 UTC 2024
    - 200 bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/common/src/test/java/org/gradle/shared/PersonTest.java

    package org.gradle.shared;
    
    import junit.framework.TestCase;
    
    public class PersonTest extends TestCase {
        public void testTest() {
            assertTrue(true);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 168 bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/reflect/DirectInstantiatorCacheTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.reflect
    
    import spock.lang.Shared
    import spock.lang.Specification
    import spock.lang.Unroll
    
    class DirectInstantiatorCacheTest extends Specification {
    
        @Shared
        def cache = new DirectInstantiator.ConstructorCache()
    
        @Unroll("constructor cache returns the same constructors as 'getConstructors' for #clazz")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/service-provider/src/main/java/org/gradle/internal/service/scopes/GradleModuleServices.java

         *
         * <p>Global services are visible to these shared services, but not vice versa.</p>
         *
         * @see Scope.UserHome
         */
        void registerGradleUserHomeServices(ServiceRegistration registration);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultFileLockManager.java

             * 2b. If we use shared lock, and we succeed in step 1., then we just hold the lock. We don't write anything to the information region
             * since multiple processes can acquire shared lock (due to that we currently also don't support on demand shared locks).<br>
             * 2.c If we fail, we throw a timeout exception.
             * <br><br>
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/client/informers/externalversions/apiextensions/interface.go

    )
    
    // Interface provides access to each of this group's versions.
    type Interface interface {
    	// V1 provides access to shared informers for resources in V1.
    	V1() v1.Interface
    	// V1beta1 provides access to shared informers for resources in V1beta1.
    	V1beta1() v1beta1.Interface
    }
    
    type group struct {
    	factory          internalinterfaces.SharedInformerFactory
    	namespace        string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 21:36:26 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. build-logic-commons/build.gradle.kts

    description = "Provides a set of plugins that are shared between the Gradle and build-logic builds"
    
    tasks.register("check") {
        dependsOn(subprojects.map { "${it.name}:check" })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 11 14:22:22 UTC 2021
    - 183 bytes
    - Viewed (0)
Back to top