Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 118 for reregistering (0.18 sec)

  1. pkg/kubelet/cm/devicemanager/plugin/v1beta1/handler.go

    	klog.V(2).InfoS("Registering plugin at endpoint", "plugin", pluginName, "endpoint", endpoint)
    	return s.connectClient(pluginName, endpoint)
    }
    
    func (s *server) DeRegisterPlugin(pluginName string) {
    	klog.V(2).InfoS("Deregistering plugin", "plugin", pluginName)
    	client := s.getClient(pluginName)
    	if client != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. pkg/kubelet/secret/secret_manager.go

    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/watch"
    	"k8s.io/utils/clock"
    )
    
    // Manager manages Kubernetes secrets. This includes retrieving
    // secrets or registering/unregistering them via Pods.
    type Manager interface {
    	// Get secret by secret namespace and name.
    	GetSecret(namespace, name string) (*v1.Secret, error)
    
    	// WARNING: Register/UnregisterPod functions should be efficient,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildInclusionCoordinator.java

            } finally {
                if (added) {
                    registering.remove(build);
                }
            }
        }
    
        private void doRegisterSubstitutions(CompositeBuildParticipantBuildState build) {
            registering.add(build);
            try {
                substitutionRegistry.registerSubstitutionsFor(build);
            } finally {
                registering.remove(build);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectContainerExtensions.kt

    }
    
    
    /**
     * Property delegate for registering new elements in the container.
     *
     * `tasks { val rebuild by registering }`
     *
     * @param T the domain object type
     * @param C the concrete container type
     */
    inline val <T : Any, C : NamedDomainObjectContainer<T>> C.registering: RegisteringDomainObjectDelegateProvider<out C>
        get() = RegisteringDomainObjectDelegateProvider.of(this)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 22:09:44 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/ScopedServiceRegistryTest.groovy

    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    import spock.lang.Specification
    
    class ScopedServiceRegistryTest extends Specification {
    
        def "fails when registering a service by adding #method in a wrong scope"() {
            given:
            def registry = scopedRegistry(Scope.Build)
    
            when:
            registration(registry)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/ide/problems-api-usage/kotlin/reporters/script-plugin/src/main/kotlin/reporters/script.plugin.gradle.kts

    package reporters
    import org.gradle.api.internal.GradleInternal
    import org.gradle.kotlin.dsl.registering
    
    val gradleInternal = gradle as GradleInternal
    val problems = gradleInternal.services.get(Problems::class.java)
    
    problems.forNamespace("buildscript").reporting {
        id("adhoc-script-deprecation", "Deprecated script plugin")
            .contextualLabel("Deprecated script plugin 'demo-script-plugin'")
            .severity(Severity.WARNING)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. build-logic/kotlin-dsl/src/main/kotlin/gradlebuild.kotlin-dsl-dependencies-embedded.gradle.kts

    val apiExtensionsOutputDir = layout.buildDirectory.dir("generated-sources/kotlin")
    
    val publishedKotlinDslPluginVersion = "4.4.0" // TODO:kotlin-dsl
    
    tasks {
        val generateKotlinDependencyExtensions by registering(GenerateKotlinDependencyExtensions::class) {
            outputDir = apiExtensionsOutputDir
            embeddedKotlinVersion = libs.kotlinVersion
            kotlinDslPluginsVersion = publishedKotlinDslPluginVersion
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

    val generateRelocatedPackageList by tasks.registering(PackageListGenerator::class) {
        classpath.from(runtimeClasspath)
        outputFile = generatedTxtFileFor("api-relocated")
    }
    
    // Extract public API metadata from source code of Gradle module Jars packaged in the distribution (used by the two tasks below to handle default imports in build scripts)
    val dslMetaData by tasks.registering(ExtractDslMetaDataTask::class) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/kotlin-js-sample/build.gradle.kts

    tasks {
        compileKotlin2Js {
            kotlinOptions {
                outputFile = "${sourceSets.main.get().output.resourcesDir}/output.js"
                sourceMap = true
            }
        }
        val unpackKotlinJsStdlib by registering {
            group = "build"
            description = "Unpack the Kotlin JavaScript standard library"
            val outputDir = file("$buildDir/$name")
            inputs.property("compileClasspath", configurations.compileClasspath.get())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/dependencies/TestSuitesKotlinDSLDependenciesIntegrationTest.groovy

                            dependencies {
                                implementation("org.apache.commons:commons-lang3:3.11")
                            }
                        }
                        val integTest by registering(JvmTestSuite::class) {
                            useJUnit()
                        }
                    }
                }
    
                tasks.named("check") {
                    dependsOn(testing.suites.named("integTest"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 11 16:25:08 UTC 2024
    - 45.8K bytes
    - Viewed (0)
Back to top