Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 753 for responsible (0.22 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/model/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Internal immutable value types responsible for containing the model of configuration data in a project
     * for use in reporting.
     */
    @NonNullApi
    package org.gradle.api.tasks.diagnostics.internal.configurations.model;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 25 13:50:45 UTC 2022
    - 875 bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/renderer/package-info.java

     * 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.
     */
    
    /**
     * Renderers responsible for generating configuration reports from gathered models.
     */
    @NonNullApi
    package org.gradle.api.tasks.diagnostics.internal.configurations.renderer;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 25 13:50:45 UTC 2022
    - 831 bytes
    - Viewed (0)
  3. pkg/kubelet/eviction/doc.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.
    */
    
    // Package eviction is responsible for enforcing eviction thresholds to maintain
    // node stability.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 16 17:48:21 UTC 2016
    - 739 bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. cmd/kubeadm/app/apis/kubeadm/doc.go

    limitations under the License.
    */
    
    // +k8s:deepcopy-gen=package
    // +groupName=kubeadm.k8s.io
    
    // Package kubeadm is the package that contains the libraries that drive the kubeadm binary.
    // kubeadm is responsible for handling a Kubernetes cluster's lifecycle.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 14 03:27:32 UTC 2018
    - 871 bytes
    - Viewed (0)
  7. 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)
  8. guava/src/com/google/common/io/CharSink.java

     * <p>{@code CharSink} provides two kinds of methods:
     *
     * <ul>
     *   <li><b>Methods that return a writer:</b> These methods should return a <i>new</i>, independent
     *       instance each time they are called. The caller is responsible for ensuring that the
     *       returned writer is closed.
     *   <li><b>Convenience methods:</b> These are implementations of common operations that are
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top