Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 753 for responsible (0.69 sec)

  1. subprojects/core/src/main/java/org/gradle/initialization/TaskExecutionPreparer.java

    import org.gradle.api.internal.GradleInternal;
    import org.gradle.execution.EntryTaskSelector;
    import org.gradle.execution.plan.ExecutionPlan;
    
    import javax.annotation.Nullable;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 02 00:39:25 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/configuration/project/ProjectConfigurationActionContainer.java

    package org.gradle.configuration.project;
    
    import groovy.lang.Closure;
    import groovy.lang.DelegatesTo;
    import org.gradle.api.Action;
    import org.gradle.api.internal.project.ProjectInternal;
    
    /**
     * A container responsible for managing the configuration of a project.
     */
    public interface ProjectConfigurationActionContainer {
        void finished();
    
        Iterable<Action<? super ProjectInternal>> getActions();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildTreeWorkPreparer.java

     * limitations under the License.
     */
    
    package org.gradle.internal.buildtree;
    
    import org.gradle.execution.EntryTaskSelector;
    
    import javax.annotation.Nullable;
    
    /**
     * Responsible for preparing the work graph for the build tree.
     */
    public interface BuildTreeWorkPreparer {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 02 05:15:11 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/internal/MavenPluginConfigurationValidator.java

    import org.apache.maven.plugin.descriptor.MojoDescriptor;
    import org.codehaus.plexus.component.configurator.expression.ExpressionEvaluator;
    import org.codehaus.plexus.configuration.PlexusConfiguration;
    
    /**
     * Service responsible for validating plugin configuration.
     *
     */
    public interface MavenPluginConfigurationValidator {
        /**
         * Checks mojo configuration issues.
         */
        void validate(
                MavenSession mavenSession,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 18 11:03:17 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/fingerprint/classpath/ClasspathFingerprinter.java

    import org.gradle.internal.fingerprint.impl.RelativePathFileCollectionFingerprinter;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. cmd/kube-apiserver/apiserver.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // APIServer is the main API server and master for the cluster.
    // It is responsible for serving the cluster management API.
    package main
    
    import (
    	"os"
    	_ "time/tzdata" // for timeZone support in CronJob
    
    	"k8s.io/component-base/cli"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 05 18:50:03 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/lifecycle/internal/ProjectArtifactFactory.java

    import org.apache.maven.artifact.Artifact;
    import org.apache.maven.project.MavenProject;
    import org.apache.maven.project.artifact.InvalidDependencyVersionException;
    
    /**
     * <p>
     * Component interface responsible for creation of MavenProject#dependencyArtifacts instances.
     * </p>
     * <strong>NOTE:</strong> This class is not part of any public api and can be changed or deleted without prior notice.
     *
     * @since 3.2.4
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. cmd/cloud-controller-manager/providers.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // The external controller manager is responsible for running controller loops that
    // are cloud provider dependent. It uses the API to listen to new events on resources.
    
    package main
    
    // NOTE: Importing all in-tree cloud-providers is not required when
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 19:11:36 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/GradleEnterprisePluginServiceFactory.java

     * limitations under the License.
     */
    
    package org.gradle.internal.enterprise;
    
    import java.io.Serializable;
    
    /**
     * Creates a per-build-invocation plugin service.
     *
     * Gradle is responsible for creating the service via this factory for each build invocation.
     */
    public interface GradleEnterprisePluginServiceFactory extends Serializable {
    
        /**
         * Creates a per-build-invocation plugin service.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/resolver/ComponentMetaDataResolver.java

    import org.gradle.api.artifacts.component.ComponentIdentifier;
    import org.gradle.internal.component.model.ComponentOverrideMetadata;
    import org.gradle.internal.resolve.result.BuildableComponentResolveResult;
    
    /**
     * Responsible for resolving a {@link ComponentIdentifier} to a {@link org.gradle.internal.component.model.ComponentGraphResolveState} instance for that component.
     */
    public interface ComponentMetaDataResolver {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top