Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 9,567 for Implements (2.29 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/QueryAndMutateFromWithTypeAllDomainObjectContainerIntegrationTest.groovy

    }
    
    class QueryAndMutateFromWithTypeAllTaskContainerIntegrationTest extends QueryAndMutateFromWithTypeAllDomainObjectContainerIntegrationTest implements AbstractTaskContainerIntegrationTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 05 09:53:33 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/source/PrintStreamLoggingSystem.java

        }
    
        private static class SnapshotImpl implements Snapshot {
            private final boolean enabled;
            private final LogLevel logLevel;
    
            public SnapshotImpl(boolean enabled, LogLevel logLevel) {
                this.enabled = enabled;
                this.logLevel = logLevel;
            }
        }
    
        private static class OutputEventDestination implements StandardOutputListener {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  3. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/services/VersionControlServices.java

        public void registerSettingsServices(ServiceRegistration registration) {
            registration.addProvider(new VersionControlSettingsServices());
        }
    
        private static class VersionControlBuildTreeServices implements ServiceRegistrationProvider {
            @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationBridge.java

            to meet the notification object interfaces.
            Instead, the base types like BuildOperationDescriptor should implement them natively.
            However, this will require restructuring this type and associated things such as
            OperationStartEvent. This will happen later.
         */
        private static class Adapter implements BuildOperationListener {
    
            private final BuildOperationNotificationListener notificationListener;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. pkg/registry/core/node/storage/storage.go

    	Status *StatusREST
    	Proxy  *noderest.ProxyREST
    
    	KubeletConnectionInfo client.ConnectionInfoGetter
    }
    
    // REST implements a RESTStorage for nodes.
    type REST struct {
    	*genericregistry.Store
    	connection     client.ConnectionInfoGetter
    	proxyTransport http.RoundTripper
    }
    
    // StatusREST implements the REST endpoint for changing the status of a node.
    type StatusREST struct {
    	store *genericregistry.Store
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 20:38:11 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/text/unicode/norm/transform.go

    // license that can be found in the LICENSE file.
    
    package norm
    
    import (
    	"unicode/utf8"
    
    	"golang.org/x/text/transform"
    )
    
    // Reset implements the Reset method of the transform.Transformer interface.
    func (Form) Reset() {}
    
    // Transform implements the Transform method of the transform.Transformer
    // interface. It may need to write segments of up to MaxSegmentSize at once.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  7. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/DefaultVcsMappings.java

    import org.gradle.internal.Cast;
    import org.gradle.internal.typeconversion.NotationParser;
    import org.gradle.vcs.VcsMapping;
    import org.gradle.vcs.VcsMappings;
    
    import javax.inject.Inject;
    
    public class DefaultVcsMappings implements VcsMappings {
        private final VcsMappingsStore vcsMappings;
        private final Gradle gradle;
        private final NotationParser<Object, ModuleIdentifier> notationParser;
        private final Object lock = new Object();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/toolingApi/customModel/groovy/plugin/src/main/java/org/gradle/sample/plugin/CustomPlugin.java

    import org.gradle.tooling.provider.model.ToolingModelBuilder;
    import org.gradle.tooling.provider.model.ToolingModelBuilderRegistry;
    
    /**
     * A plugin that exposes a custom tooling model.
     */
    public class CustomPlugin implements Plugin<Project> {
        private final ToolingModelBuilderRegistry registry;
    
        /**
         * Need to use a {@link ToolingModelBuilderRegistry} to register the custom tooling model, so inject this into
         * the constructor.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. pkg/registry/batch/job/storage/storage.go

    	statusStore.UpdateStrategy = job.StatusStrategy
    	statusStore.ResetFieldsStrategy = job.StatusStrategy
    
    	return &REST{store}, &StatusREST{store: &statusStore}, nil
    }
    
    // Implement CategoriesProvider
    var _ rest.CategoriesProvider = &REST{}
    
    // Categories implements the CategoriesProvider interface. Returns a list of categories a resource is part of.
    func (r *REST) Categories() []string {
    	return []string{"all"}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/internal/model/ObjectFactoryNamedTypeIntegrationTest.groovy

            outputContains("thing2: thing2")
        }
    
        def "plugin can create named instances of abstract class"() {
            buildFile << """
                abstract class Thing implements Named { }
    
                class CustomPlugin implements Plugin<Project> {
                    void apply(Project project) {
                        project.tasks.create('thing1', CustomTask) {
                            thing = project.objects.named(Thing, 'thing1')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 05:39:53 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top