Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 60 for GidGenerator (0.16 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClientServicesSupport.java

            return new DaemonStopClient(connector, idGenerator);
        }
    
        @Provides
        NotifyDaemonAboutChangedPathsClient createNotifyDaemonAboutChangedPathsClient(DaemonConnector connector, IdGenerator<UUID> idGenerator, DaemonRegistry daemonRegistry) {
            return new NotifyDaemonAboutChangedPathsClient(connector, idGenerator, daemonRegistry);
        }
    
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/internal/execution/XCTestExecuter.java

            private final ExecHandleBuilder execHandleBuilder;
            private final IdGenerator<?> idGenerator;
            private final Clock clock;
            private final String rootTestSuiteId;
    
            @Inject
            public XCTestProcessor(Clock clock, File executable, File workingDir, ExecHandleBuilder execHandleBuilder, IdGenerator<?> idGenerator, String rootTestSuiteId) {
                this.execHandleBuilder = execHandleBuilder;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonStopClient.java

        private final DaemonConnector connector;
        private final IdGenerator<UUID> idGenerator;
        private final StopDispatcher stopDispatcher;
    
        public DaemonStopClient(DaemonConnector connector, IdGenerator<UUID> idGenerator) {
            this.connector = connector;
            this.idGenerator = idGenerator;
            this.stopDispatcher = new StopDispatcher();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestEventAdapter.java

        public JUnitTestEventAdapter(TestResultProcessor resultProcessor, Clock clock, IdGenerator<?> idGenerator) {
            this.resultProcessor = resultProcessor;
            this.clock = clock;
            this.idGenerator = idGenerator;
        }
    
        @Override
        public void testStarted(Description description) {
            TestDescriptorInternal descriptor = nullSafeDescriptor(idGenerator.generateId(), description);
            synchronized (lock) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessor.java

    import org.gradle.internal.id.IdGenerator;
    import org.gradle.internal.time.Clock;
    
    public class JUnitTestClassProcessor extends AbstractJUnitTestClassProcessor {
    
        private final IdGenerator<?> idGenerator;
        private final JUnitSpec spec;
        private final Clock clock;
    
        public JUnitTestClassProcessor(JUnitSpec spec, IdGenerator<?> idGenerator, ActorFactory actorFactory, Clock clock) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClientServices.java

            super(parent, daemonParameters, requestContext, buildStandardInput);
        }
    
        @Provides
        protected DaemonClient createDaemonClient(IdGenerator<UUID> idGenerator) {
            DaemonCompatibilitySpec matchingContextSpec = new DaemonCompatibilitySpec(get(DaemonRequestContext.class));
            return new DaemonClient(
                get(DaemonConnector.class),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNgTestClassProcessorFactory.java

            this.options = options;
            this.suiteFiles = suiteFiles;
        }
    
        @Override
        public TestClassProcessor create(IdGenerator<?> idGenerator, ActorFactory actorFactory, Clock clock) {
            return new TestNGTestClassProcessor(testReportDir, options, suiteFiles, idGenerator, clock, actorFactory);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestResultProcessorAdapter.java

        private final Set<ITestResult> failedConfigurations = new HashSet<ITestResult>();
    
        public TestNGTestResultProcessorAdapter(TestResultProcessor resultProcessor, IdGenerator<?> idGenerator, Clock clock) {
            this.resultProcessor = resultProcessor;
            this.idGenerator = idGenerator;
            this.clock = clock;
        }
    
        @Override
        public void onStart(ISuite suite) {
            TestDescriptorInternal testInternal;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/NotifyDaemonAboutChangedPathsClient.java

        private final DaemonConnector connector;
        private final IdGenerator<UUID> idGenerator;
        private final DaemonRegistry daemonRegistry;
    
        public NotifyDaemonAboutChangedPathsClient(DaemonConnector connector, IdGenerator<UUID> idGenerator, DaemonRegistry daemonRegistry) {
            this.connector = connector;
            this.idGenerator = idGenerator;
            this.daemonRegistry = daemonRegistry;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/ReportDaemonStatusClient.java

            Preconditions.checkNotNull(daemonRegistry, "DaemonRegistry must not be null");
            Preconditions.checkNotNull(connector, "DaemonConnector must not be null");
            Preconditions.checkNotNull(idGenerator, "IdGenerator must not be null");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top