Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 100 for Registerer (1.61 sec)

  1. pkg/kubelet/configmap/configmap_manager.go

    	}
    }
    
    // NewWatchingConfigMapManager creates a manager that keeps a cache of all configmaps
    // necessary for registered pods.
    // It implements the following logic:
    //   - whenever a pod is created or updated, we start individual watches for all
    //     referenced objects that aren't referenced from other registered pods
    //   - every GetObject() returns a value from local cache propagated via watches
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. pkg/kubelet/secret/secret_manager.go

    	}
    }
    
    // NewWatchingSecretManager creates a manager that keeps a cache of all secrets
    // necessary for registered pods.
    // It implements the following logic:
    //   - whenever a pod is created or updated, we start individual watches for all
    //     referenced objects that aren't referenced from other registered pods
    //   - every GetObject() returns a value from local cache propagated via watches
    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/api/internal/plugins/SoftwareTypeRegistrationPluginTarget.java

                        .contextualLabel("is registered as a software type plugin but does not expose a software type")
                        .severity(Severity.ERROR)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:28 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ProjectReportTaskIntegrationTest.groovy

    application (com.example.restricted.ApplicationExtension)
            Defined in: com.example.restricted.ApplicationPlugin
            Registered by: com.example.restricted.SoftwareTypeRegistrationPlugin
    library (com.example.restricted.LibraryExtension)
            Defined in: com.example.restricted.LibraryPlugin
            Registered by: com.example.restricted.SoftwareTypeRegistrationPlugin
    utility (com.example.restricted.UtilityExtension)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/SoftwareTypeRegistrationPluginTargetTest.groovy

            1 * softwareTypeRegistry.register(SoftwareTypePlugin.class, null)
    
            and:
            1 * delegate.applyImperative(null, plugin)
        }
    
        def "throws exception when plugins are registered that do not expose software types"() {
            when:
            pluginTarget.applyImperative(null, plugin)
    
            then: // setup property metadata
            2 * inspectionScheme.getMetadataStore() >> metadataStore
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:29 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/ListenerService.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Attached to a service implementation to indicate that the instance should be registered as a listener.
     *
     * <p>Generally, it is better to use {@link StatefulListener}, which is lazy and applies some validation to ensure no events are missed.
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.TYPE)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheBuild.kt

        fun registerProject(projectPath: Path, dir: File, buildDir: File)
    
        fun getProject(path: String): ProjectInternal
    
        // Creates all registered projects for this build
        fun createProjects()
    
        fun addIncludedBuild(buildDefinition: BuildDefinition, settingsFile: File?, buildPath: Path): ConfigurationCacheBuild
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/lifetime/KaBaseLifetimeTracker.kt

            fun getInstance(project: Project): KaBaseLifetimeTracker =
                KaLifetimeTracker.getInstance(project) as? KaBaseLifetimeTracker
                    ?: error("Expected ${KaBaseLifetimeTracker::class.simpleName} to be registered for ${KaLifetimeTracker::class.simpleName}.")
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. pkg/kubelet/util/manager/cache_based_manager.go

    		if !exists {
    			return nil
    		}
    		if item.data == nil {
    			item.data = &objectData{}
    		}
    		return item.data
    	}()
    	if data == nil {
    		return nil, fmt.Errorf("object %q/%q not registered", namespace, name)
    	}
    
    	// After updating data in objectStore, lock the data, fetch object if
    	// needed and return data.
    	data.Lock()
    	defer data.Unlock()
    	if data.err != nil || !s.isObjectFresh(data) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/tests/org/jetbrains/kotlin/analysis/api/standalone/fir/test/configurators/StandaloneModeTestServiceRegistrar.kt

    import org.jetbrains.kotlin.test.services.TestServices
    
    /**
     * Registers services specific to Standalone mode *tests*, in addition to the Standalone production services registered by
     * [FirStandaloneServiceRegistrar][org.jetbrains.kotlin.analysis.api.standalone.base.project.structure.FirStandaloneServiceRegistrar].
     */
    @OptIn(KaAnalysisApiInternals::class)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top