Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for reregistering (0.41 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-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)
  5. 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)
  6. 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)
  7. 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)
  8. testing/smoke-test/build.gradle.kts

         */
        val santaGitUri = "https://github.com/gradle/santa-tracker-android.git"
    
        val santaTracker by registering(RemoteProject::class) {
            remoteUri = santaGitUri
            // Pinned from branch main
            ref = "e9419cad3583427caca97958301ff98fc8e9a1c3"
        }
    
        val gradleBuildCurrent by registering(RemoteProject::class) {
            remoteUri = rootDir.absolutePath
            ref = buildCommitId
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. cmd/kube-controller-manager/names/controller_names.go

    //     2.3. [TODO] registering ControllerManagerMetrics with ControllerStarted and ControllerStopped
    //     2.4. [TODO] calling WaitForNamedCacheSync
    //  3. defining controller options for "--help" command or generated documentation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/BuildScopeListenerRegistrationListener.java

    import org.gradle.internal.service.scopes.EventScope;
    import org.gradle.internal.service.scopes.Scope;
    
    @EventScope(Scope.Build.class)
    public interface BuildScopeListenerRegistrationListener {
    
        /**
         * Called when registering a build scope listener.
         */
        void onBuildScopeListenerRegistration(Object listener, String invocationDescription, Object invocationSource);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top