Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 262 for responsible (1.07 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestDirectoryProvider.java

     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.file;
    
    /**
     * Implementations provide a working space to be used in tests.
     *
     * The client is not responsible for removing any files.
     */
    public interface TestDirectoryProvider {
    
        /**
         * The directory to use, guaranteed to exist.
         *
         * @return The directory to use, guaranteed to exist.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-string.h

    // String - an abstract class holding static string utilities.
    class GTEST_API_ String {
     public:
      // Static utility methods
    
      // Clones a 0-terminated C string, allocating memory using new.  The
      // caller is responsible for deleting the return value using
      // delete[].  Returns the cloned string, or NULL if the input is
      // NULL.
      //
      // This is different from strdup() in string.h, which allocates
      // memory using malloc().
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/TypeAnnotationHandler.java

    import java.lang.annotation.Annotation;
    
    @ServiceScope(Scope.Global.class)
    public interface TypeAnnotationHandler {
        /**
         * The annotation type which this handler is responsible for.
         *
         * @return The annotation.
         */
        Class<? extends Annotation> getAnnotationType();
    
        /**
         * Visits problems associated with the given property, if any.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/build/BuildLifecycleControllerFactory.java

    import org.gradle.api.internal.BuildDefinition;
    import org.gradle.internal.service.scopes.BuildScopeServices;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * <p>Responsible for creating a {@link BuildLifecycleController} instance for a build.
     *
     * Caller must call {@link BuildLifecycleController#stop()} when finished with the launcher.
     */
    @ServiceScope(Scope.BuildTree.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. 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)
Back to top