Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,198 for registry_ (0.45 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/ParallelActionExecutionCrossVersionSpec.groovy

                class CustomPlugin implements Plugin<Project> {
                    ToolingModelBuilderRegistry registry
    
                    @Inject
                    CustomPlugin(ToolingModelBuilderRegistry registry) {
                        this.registry = registry
                    }
    
                    void apply(Project project) {
                        registry.register(new CustomBuilder())
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. subprojects/build-events/src/integTest/groovy/org/gradle/build/event/InternalBuildOperationEventsIntegrationTest.groovy

            loggingListener(initScript)
            initScript << """
                def listener = gradle.sharedServices.registerIfAbsent("listener", LoggingListener) { }
                def registry = services.get(BuildEventsListenerRegistry)
                registry.onOperationCompletion(listener)
            """
    
            buildFile << """
                task a
                task b
            """
            executer.beforeExecute {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 12:17:31 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/registry/DaemonRegistryContent.java

                return infosMap;
            }
    
            @Override
            public void write(Encoder encoder, DaemonRegistryContent registry) throws Exception {
                if (registry != null) {
                    encoder.writeBoolean(true);
                    Map<Address, DaemonInfo> infosMap = registry.infosMap;
                    int infosSize = infosMap.size();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  4. platforms/jvm/jvm-services/src/integTest/groovy/org/gradle/jvm/toolchain/JavaInstallationRegistryIntegrationTest.groovy

    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.IntegTestPreconditions
    
    class JavaInstallationRegistryIntegrationTest extends AbstractIntegrationSpec {
    
        def "installation registry has no installations without environment setup or auto-detection"() {
            buildFile << """
                import org.gradle.internal.jvm.inspection.JavaInstallationRegistry;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:29:03 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/WorkerJvmMemoryInfoSerializer.java

    public class WorkerJvmMemoryInfoSerializer {
        public static SerializerRegistry create() {
            DefaultSerializerRegistry registry = new DefaultSerializerRegistry(false);
    
            registry.register(JvmMemoryStatus.class, new JvmMemoryStatusSerializer());
            return registry;
        }
    
        private static class JvmMemoryStatusSerializer implements Serializer<JvmMemoryStatus> {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/internal/daemon/serialization/DaemonSidePayloadClassLoaderFactoryTest.groovy

        @Rule
        TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
        def factory = Mock(PayloadClassLoaderFactory)
        def classpathTransformer = Mock(CachedClasspathTransformer)
    
        def registry = new DaemonSidePayloadClassLoaderFactory(factory, classpathTransformer)
    
        def "creates ClassLoader for classpath"() {
            def url1 = new URL("http://localhost/file1.jar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/java/toolchain-management/groovy/buildSrc/src/main/java/org/myorg/JavaToolchainResolverPlugin.java

        public void apply(Settings settings) {
            settings.getPlugins().apply("jvm-toolchain-management"); // <3>
    
            JavaToolchainResolverRegistry registry = getToolchainResolverRegistry();
            registry.register(JavaToolchainResolverImplementation.class);
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 739 bytes
    - Viewed (0)
  8. pkg/registry/storagemigration/rest/storage_storagemigration.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package rest
    
    import (
    	"k8s.io/apiserver/pkg/registry/generic"
    	"k8s.io/apiserver/pkg/registry/rest"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/api/legacyscheme"
    	"k8s.io/kubernetes/pkg/apis/storagemigration"
    	"k8s.io/kubernetes/pkg/features"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherRegistryFactory.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.watch.registry;
    
    public interface FileWatcherRegistryFactory {
        /**
         * Create the file watcher registry.
         */
        FileWatcherRegistry createFileWatcherRegistry(FileWatcherRegistry.ChangeHandler handler);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 861 bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/testing/DaemonEventSequenceBuilder.groovy

            this.stateTransitionTimeoutMs = stateTransitionTimeoutMs
        }
    
        DaemonsEventSequence build(DaemonRegistry registry) {
            finishCheckpoint()
            new DaemonsEventSequence(pollRegistryMs, stateTransitionTimeoutMs, registry, *checkpoints)
        }
    
        void run(Closure action) {
            actions << action
        }
    
        void busy() {
            busy(numDaemons)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top