Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 337 for shared (0.19 sec)

  1. platforms/software/build-init/build.gradle.kts

        api(project(":core-api"))
        api(project(":dependency-management"))
        api(project(":file-collections"))
        api(project(":logging"))
        api(project(":platform-jvm"))
        api(project(":toolchains-jvm-shared"))
        api(project(":workers"))
        api(project(":daemon-services"))
    
        implementation(project(":logging-api"))
        implementation(project(":platform-native"))
        implementation(project(":plugins-application")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. src/cmd/asm/main.go

    	architecture := arch.Set(GOARCH, *flags.Shared || *flags.Dynlink)
    	if architecture == nil {
    		log.Fatalf("unrecognized architecture %s", GOARCH)
    	}
    	ctxt := obj.Linknew(architecture.LinkArch)
    	ctxt.Debugasm = flags.PrintOut
    	ctxt.Debugvlog = flags.DebugV
    	ctxt.Flag_dynlink = *flags.Dynlink
    	ctxt.Flag_linkshared = *flags.Linkshared
    	ctxt.Flag_shared = *flags.Shared || *flags.Dynlink
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-configuration/build.gradle.kts

    dependencies {
        api(libs.jsr305)
        api(libs.inject)
    
        api(project(":core"))
        api(project(":core-api"))
        api(project(":jvm-services"))
        api(project(":toolchains-jvm-shared"))
        api(project(":stdlib-java-extensions"))
    
        implementation(project(":base-services"))
        implementation(project(":logging"))
    
        testImplementation(testFixtures(project(":core")))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 888 bytes
    - Viewed (0)
  4. pkg/controller/endpointslice/endpointslice_controller.go

    	// shared informer passed to NewController
    	serviceLister corelisters.ServiceLister
    	// servicesSynced returns true if the service shared informer has been synced at least once.
    	// Added as a member to the struct to allow injection for testing.
    	servicesSynced cache.InformerSynced
    
    	// podLister is able to list/get pods and is populated by the
    	// shared informer passed to NewController
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  5. cni/pkg/install/install.go

    	// and we harm no one by doing so.
    	copiedFiles, err := copyBinaries(in.cfg.CNIBinSourceDir, in.cfg.CNIBinTargetDirs)
    	if err != nil {
    		cniInstalls.With(resultLabel.Value(resultCopyBinariesFailure)).Increment()
    		return copiedFiles, fmt.Errorf("copy binaries: %v", err)
    	}
    
    	// Install kubeconfig (if needed) - we write/update this in the shared node CNI netdir,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. platforms/software/security/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Shared classes for projects requiring GPG support"
    
    errorprone {
        disabledChecks.addAll(
            "DefaultCharset", // 1 occurrences
        )
    }
    
    dependencies {
        api(project(":core-api"))
        api(project(":resources"))
    
        api(libs.bouncycastlePgp)
        api(libs.jsr305)
    
        implementation(projects.stdlibJavaExtensions)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.implementation-kotlin")
        id("gradlebuild.publish-public-libraries")
    
        embeddedKotlin("plugin.serialization")
    }
    
    description = "Common shared classes used by the Declarative DSL"
    
    tasks.withType<KotlinCompile>().configureEach {
        compilerOptions {
            apiVersion.set(KotlinVersion.KOTLIN_1_9)
            languageVersion.set(KotlinVersion.KOTLIN_1_9)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-groovy/build.gradle.kts

        implementation(project(":plugins-java"))
        implementation(project(":plugins-java-base"))
        implementation(project(":reporting"))
        implementation(project(":toolchains-jvm"))
        implementation(project(":toolchains-jvm-shared"))
    
        implementation(libs.guava)
    
        testImplementation(testFixtures(project(":core")))
        testImplementation(testFixtures(project(":language-groovy")))
    
        testRuntimeOnly(project(":distributions-jvm"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. pkg/volume/volume.go

    	Inodes *resource.Quantity
    
    	// InodesFree represent the inodes available for the volume.  For Volumes that share
    	// a filesystem with the host (e.g. emptydir, hostpath), this is the free inodes
    	// on the underlying storage, and is shared with host processes and other volumes
    	InodesFree *resource.Quantity
    
    	// Normal volumes are available for use and operating optimally.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClientGlobalServices.java

    import org.gradle.internal.service.ServiceRegistrationProvider;
    import org.gradle.internal.service.ServiceRegistry;
    import org.gradle.tooling.internal.provider.action.BuildActionSerializer;
    
    /**
     * Global services shared by all Gradle daemon clients in a given process.
     */
    public class DaemonClientGlobalServices implements ServiceRegistrationProvider {
        @Provides
        Serializer<BuildAction> createBuildActionSerializer() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top