Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 103 for responsible (1.65 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. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildTreeModelCreator.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.buildtree;
    
    import javax.annotation.Nullable;
    
    /**
     * Responsible for creating a model from the build tree model.
     */
    public interface BuildTreeModelCreator {
        <T> void beforeTasks(BuildTreeModelAction<? extends T> action);
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:55:55 UTC 2024
    - 957 bytes
    - Viewed (0)
  3. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/exec/BuildExecutor.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Marker interface that can be used to obtain the action executor responsible for actually running builds.
     */
    @ServiceScope(Scope.Global.class)
    public interface BuildExecutor extends BuildActionExecutor<BuildActionParameters, BuildRequestContext> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 1K bytes
    - Viewed (0)
  4. platforms/ide/problems/src/main/java/org/gradle/problems/internal/services/ProblemsServices.java

    import org.gradle.internal.service.ServiceRegistration;
    import org.gradle.internal.service.scopes.AbstractGradleModuleServices;
    
    /**
     * Service registration entry point for the Problems API.
     * <p>
     * This class is responsible registering all service providers for the Problems API.
     * See the {@code META-INF/services} directory to find the respective metadata file triggering the DI framework to load this class.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GradleUserHomeScopeServiceRegistry.java

    public interface GradleUserHomeScopeServiceRegistry {
        /**
         * Locates the shared services to use for the given Gradle user home dir. The returned registry also includes global services.
         *
         * <p>The caller is responsible for releasing the registry when it is finished using it by calling {@link #release(ServiceRegistry)}.</p>
         */
        ServiceRegistry getServicesFor(File gradleUserHomeDir);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/reconciler/reconciler.go

    		// pod is unmounted from the first pod before being mounted to the new
    		// pod.
    		rc.unmountVolumes()
    	}
    
    	// Next we mount required volumes. This function could also trigger
    	// attach if kubelet is responsible for attaching volumes.
    	// If underlying PVC was resized while in-use then this function also handles volume
    	// resizing.
    	rc.mountOrAttachVolumes()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/IntermediateModelController.kt

    import org.gradle.tooling.provider.model.UnknownModelException
    import org.gradle.tooling.provider.model.internal.ToolingModelParameterCarrier
    import org.gradle.util.Path
    
    
    /**
     * Responsible for loading and storing intermediate models used during tooling API build action execution.
     */
    internal
    class IntermediateModelController(
        private val host: DefaultConfigurationCache.Host,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/archive/impl/FileZipInput.java

    import java.util.Enumeration;
    import java.util.Iterator;
    import java.util.zip.ZipFile;
    
    public class FileZipInput implements ZipInput {
    
        /**
         * Creates a stream of the entries in the given zip file. Caller is responsible for closing the return value.
         *
         * @throws FileException on failure to open the Zip
         */
        public static ZipInput create(File file) throws FileException {
            if (isZipFileSafeToUse()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:00 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/fake.go

    		opts.MeshWatcher = mesh.NewFixedWatcher(&meshconfig.MeshConfig{TrustDomain: "cluster.local"})
    	}
    	cleanupStop := false
    	stop := opts.Stop
    	if stop == nil {
    		// If we created the stop, clean it up. Otherwise, caller is responsible
    		cleanupStop = true
    		stop = make(chan struct{})
    	}
    	f := namespace.NewDiscoveryNamespacesFilter(
    		kclient.New[*corev1.Namespace](opts.Client),
    		opts.MeshWatcher,
    		stop,
    	)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. src/runtime/debug/stack.go

    		// that cannot be closed by the user.
    		// This also alleviates us from concerns about the
    		// lifetime and finalization of f.
    		// (DupCloseOnExec returns an fd, not a *File, so
    		// there is no finalizer, and we are responsible for
    		// closing it.)
    		//
    		// The new fd must be close-on-exec, otherwise if the
    		// crash monitor is a child process, it may inherit
    		// it, so it will never see EOF from the pipe even
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top