Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 9,567 for Implements (0.16 sec)

  1. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/model/RequestExtra.java

    import org.gradle.internal.instrumentation.api.types.BytecodeInterceptorType;
    
    import javax.lang.model.element.ExecutableElement;
    
    public interface RequestExtra {
        class InterceptJvmCalls implements RequestExtra {
            private final String implementationClassName;
            private final BytecodeInterceptorType interceptorType;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 13:39:36 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/response_test.go

    	obj runtime.Object
    }
    
    // DeepCopyObject implements runtime.Object interface.
    func (m *mockCacheableObject) DeepCopyObject() runtime.Object {
    	panic("DeepCopy unimplemented for mockCacheableObject")
    }
    
    // GetObjectKind implements runtime.Object interface.
    func (m *mockCacheableObject) GetObjectKind() schema.ObjectKind {
    	return m
    }
    
    // GroupVersionKind implements schema.ObjectKind interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 09:07:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/resource/transfer/ProgressLoggingExternalResourceAccessor.java

    import org.gradle.internal.resource.metadata.ExternalResourceMetaData;
    
    import javax.annotation.Nullable;
    import java.net.URI;
    
    public class ProgressLoggingExternalResourceAccessor extends AbstractProgressLoggingHandler implements ExternalResourceAccessor {
        private final ExternalResourceAccessor delegate;
        private final BuildOperationRunner buildOperationRunner;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 12:31:19 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/DaemonMessageSerializer.java

        }
    
        private static class CloseInputSerializer implements Serializer<CloseInput> {
            @Override
            public void write(Encoder encoder, CloseInput value) {
            }
    
            @Override
            public CloseInput read(Decoder decoder) {
                return new CloseInput();
            }
        }
    
        private static class OutputMessageSerializer implements Serializer<OutputMessage> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/ConsoleStub.java

            buildStatusLabel.redraw(null);
            buildProgressArea.redraw();
        }
    
        protected static class TestableBuildOutputTextArea extends TestStyledTextOutput implements TextArea {
        }
    
        protected static class TestableRedrawableLabel extends TestStyledLabel implements RedrawableLabel {
            String id; // Allows individual identification for debugging
            String buffer;
    
            public TestableRedrawableLabel(String id) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/AbstractPropertyGroovyInterOpIntegrationTest.groovy

        @Override
        void pluginSetsValues() {
            pluginDir.file("src/main/groovy/SomePlugin.groovy") << """
                import ${Project.name}
                import ${Plugin.name}
    
                public class SomePlugin implements Plugin<Project> {
                    void apply(Project project) {
                        project.tasks.register("someTask", SomeTask) { t ->
                            t.flag = true
                            t.message = "some value"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/ReceivedProblem.groovy

    import org.gradle.api.problems.internal.ProblemLocation
    
    /*
     * A deserialized representation of a problem received from the build operation trace.
     */
    @CompileStatic
    class ReceivedProblem implements Problem {
        private final long operationId
        private final ReceivedProblemDefinition definition
        private final String contextualLabel
        private final String details
        private final List<String> solutions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 12:45:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. pkg/registry/batch/cronjob/storage/storage.go

    // Categories implements the CategoriesProvider interface. Returns a list of categories a resource is part of.
    func (r *REST) Categories() []string {
    	return []string{"all"}
    }
    
    // ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
    func (r *REST) ShortNames() []string {
    	return []string{"cj"}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/DefaultPluginContainerTest.groovy

            import org.gradle.api.Project
            class TestPlugin1 implements Plugin<Project> {
              void apply(Project project) {}
            }
        """)
    
        private Class<?> plugin2Class = classLoader.parseClass("""
            import org.gradle.api.Plugin
            import org.gradle.api.Project
            class TestPlugin2 implements Plugin<Project> {
              void apply(Project project) {}
            }
        """)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. pkg/registry/certificates/certificates/storage/storage.go

    }
    
    // Implement ShortNamesProvider
    var _ rest.ShortNamesProvider = &REST{}
    
    // ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
    func (r *REST) ShortNames() []string {
    	return []string{"csr"}
    }
    
    // StatusREST implements the REST endpoint for changing the status of a CSR.
    type StatusREST struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 6.3K bytes
    - Viewed (0)
Back to top