Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 362 for responsible (0.2 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/packages/KotlinPackagePartProviderFactory.kt

    import org.jetbrains.kotlin.load.kotlin.PackagePartProvider
    
    public abstract class KotlinPackagePartProviderFactory : KotlinPlatformComponent {
        /**
         * Create a [PackagePartProvider] for a given scope. [PackagePartProvider] is responsible for searching sub packages in a library.
         */
        public abstract fun createPackagePartProvider(scope: GlobalSearchScope): PackagePartProvider
    
        public companion object {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/main/java/org/gradle/api/BuildableComponentSpec.java

     */
    @Incubating
    public interface BuildableComponentSpec extends Buildable, ComponentSpec {
        /**
         * Returns the task responsible for building this component.
         */
        @Nullable
        Task getBuildTask();
    
        /**
         * Specifies the task responsible for building this component.
         */
        void setBuildTask(@Nullable Task buildTask);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/FactoryNamedDomainObjectContainer.java

         * @param type The concrete type of element in the container (must implement {@link Named})
         * @param instantiator The instantiator to use to create any other collections based on this one
         * @param factory The factory responsible for creating new instances on demand
         * @param collectionCallbackActionDecorator the decorator for collection callback action execution
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:18:33 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/main/java/org/gradle/api/CheckableComponentSpec.java

     */
    @Incubating
    public interface CheckableComponentSpec extends ComponentSpec {
    
        /**
         * Returns the task responsible for checking this component.
         */
        @Nullable
        Task getCheckTask();
    
        /**
         * Specifies the task responsible for checking this component.
         */
        void setCheckTask(@Nullable Task checkTask);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/PlanExecutor.java

    import org.gradle.internal.build.ExecutionResult;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import javax.annotation.concurrent.ThreadSafe;
    
    /**
     * Responsible for running the work of a build tree, packaged as zero or more {@link ExecutionPlan} instances.
     */
    @ServiceScope(Scope.BuildTree.class)
    @ThreadSafe
    public interface PlanExecutor {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/artifact/repository/RepositoryCache.java

         * reference. If the cached data is mutable, i.e. could be modified after being put into the cache, the caller is
         * responsible for creating a copy of the original data and store the copy in the cache.
         *
         * @param request The repository request from which this cache was retrieved, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/CachingRuleExecutor.java

    import org.gradle.internal.action.InstantiatingAction;
    
    /**
     * A caching rule executor allows caching the result of processing a rule. A rule is represented by a
     * {@link InstantiatingAction<DETAILS> instantiating action}, which is responsible for instantiating
     * and configuring a rule. From a user point of view, a rule works on a {@link DETAILS} instance,
     * which is often, but not necessarily, a builder. A {@link DETAILS} can mutate an existing object,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/file/FileTreeElement.java

         * @return The input stream. Never returns null. The caller is responsible for closing this stream.
         */
        InputStream open();
    
        /**
         * Copies the content of this file to an output stream. Generally, calling this method is more performant than
         * calling {@code new FileInputStream(getFile())}.
         *
         * @param output The output stream to write to. The caller is responsible for closing this stream.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:43:13 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. pkg/kubelet/eviction/types.go

    	IsUnderPIDPressure() bool
    }
    
    // DiskInfoProvider is responsible for informing the manager how disk is configured.
    type DiskInfoProvider interface {
    	// HasDedicatedImageFs returns true if the imagefs is on a separate device from the rootfs.
    	HasDedicatedImageFs(ctx context.Context) (bool, error)
    }
    
    // ImageGC is responsible for performing garbage collection of unused images.
    type ImageGC interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  10. README.md

        - **Pilot** - Responsible for configuring the proxies at runtime.
    
        - **Citadel** - Responsible for certificate issuance and rotation.
    
        - **Galley** - Responsible for validating, ingesting, aggregating, transforming and distributing config within Istio.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 15:28:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top