Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 753 for responsible (1.23 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/InjectAnnotationHandler.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.instantiation;
    
    import java.lang.annotation.Annotation;
    
    /**
     * Responsible for defining the behaviour of a particular annotation used for injection.
     *
     * <p>Implementations must be registered as global scoped services.</p>
     */
    public interface InjectAnnotationHandler {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 972 bytes
    - Viewed (0)
  2. pkg/kubelet/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package kubelet is the package that contains the libraries that drive the Kubelet binary.
    // The kubelet is responsible for node level pod management.  It runs on each worker in the cluster.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 16 17:48:21 UTC 2016
    - 823 bytes
    - Viewed (0)
  3. 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)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/generator/generator/Generator.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.plugins.ide.internal.generator.generator;
    
    import java.io.File;
    
    /**
     * Responsible for reading, configuring and writing a config object of type T to/from a file.
     * @param <T>
     */
    public interface Generator<T> {
        T read(File inputFile);
    
        T defaultInstance();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 979 bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/failure/ThrowableToTestFailureMapper.java

     */
    
    package org.gradle.api.internal.tasks.testing.failure;
    
    import org.gradle.api.NonNullApi;
    import org.gradle.api.tasks.testing.TestFailure;
    
    /**
     * Interface implemented by classes which are responsible to transform between {@link Throwable} and {@link TestFailure}.
     *
     * @see DefaultThrowableToTestFailureMapper
     */
    @NonNullApi
    public interface ThrowableToTestFailureMapper {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 25 09:04:04 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/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: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/service/scopes/ServiceRegistryFactory.java

    import org.gradle.internal.service.ServiceRegistry;
    
    /**
     * A hierarchical service registry.
     */
    public interface ServiceRegistryFactory {
        /**
         * Creates the services for the given domain object. The caller is responsible for closing the registry.
         *
         * @param domainObject The domain object.
         * @return The registry containing the services for the domain object.
         */
        ServiceRegistry createFor(Object domainObject);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 08 03:33:31 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildTreeWorkExecutor.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.buildtree;
    
    import org.gradle.internal.build.ExecutionResult;
    
    /**
     * Responsible for running all scheduled work for the build tree.
     */
    public interface BuildTreeWorkExecutor {
        /**
         * Runs the scheduled work and returns a result object containing any failures.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 02 05:15:11 UTC 2022
    - 1001 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top