Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,131 for STARTED (0.19 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/fixture/Snippets.groovy

                        testResultProcessor.started(rootDescr, new TestStartEvent(System.currentTimeMillis()))
    
                        OperationIdentifier testId = new OperationIdentifier(42L)
                        DefaultTestDescriptor testDescr = new DefaultTestDescriptor(testId, "org.my.MyClass", "MyCustomTest", null, "org.my.MyClass descriptor")
                        testResultProcessor.started(testDescr, new TestStartEvent(System.currentTimeMillis()))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. operator/pkg/controlplane/control_plane.go

    	for _, c := range i.components {
    		if err := c.Run(); err != nil {
    			return err
    		}
    	}
    	i.started = true
    	return nil
    }
    
    // RenderManifest returns a manifest rendered against
    func (i *IstioControlPlane) RenderManifest() (manifests name.ManifestMap, errsOut util.Errors) {
    	if !i.started {
    		return nil, util.NewErrs(fmt.Errorf("istioControlPlane must be Run before calling RenderManifest"))
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 23 02:26:59 UTC 2022
    - 4K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterForProjectConfigurationOperationsTest.groovy

            def startEvent = Mock(InternalOperationStartedProgressEvent)
            _ * startEvent.getEventTime() >> 999
            _ * startEvent.getDisplayName() >> 'Project configuration started'
            _ * startEvent.getDescriptor() >> projectConfigurationDescriptor
    
            adapter.onEvent(startEvent)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/HasFinalizers.java

        protected boolean isCanCancel(Collection<FinalizerGroup> groups) {
            // A node cannot be cancelled if it belongs to a finalizer group that contains a finalized node that has started execution or that cannot be cancelled, and whose finalizer
            // can potentially still execute
            // So visit all the finalizer groups reachable from groups that the node belongs to and the finalized nodes of those groups
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 16 22:19:21 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/session/BuildSessionLifecycleListener.java

     */
    
    package org.gradle.internal.session;
    
    import org.gradle.internal.service.scopes.EventScope;
    import org.gradle.internal.service.scopes.Scope;
    
    /**
     * A listener that is notified when a session is started and completed. No more than one session may be active at any time.
     *
     * One or more builds may be run during a session. For example, when running in continuous mode, multiple builds are run during a single session.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/repository/ArtifactTransferResource.java

         */
        long getContentLength();
    
        /**
         * Gets the timestamp when the transfer of this artifact was started.
         *
         * @return The timestamp when the transfer of this artifact was started.
         */
        long getTransferStartTime();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. src/main/resources/fess_message_en.properties

    success.send_testmail=Sent the test mail.
    success.job_log_delete_all=Deleted job logs.
    success.changed_password=Changed your password.
    success.started_data_update=Started data update process.
    success.reindex_started=Started reindexing.
    success.bulk_process_started=Bulk process is started.
    success.print_thread_dump=Printed thread dump to log file.
    success.install_plugin=Installing {0} plugin.
    success.delete_plugin=Deleting {0} plugin.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Mar 18 03:05:44 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  8. src/main/resources/fess_message.properties

    success.send_testmail=Sent the test mail.
    success.job_log_delete_all=Deleted job logs.
    success.changed_password=Changed your password.
    success.started_data_update=Started data update process.
    success.reindex_started=Started reindexing.
    success.bulk_process_started=Bulk process is started.
    success.print_thread_dump=Printed thread dump to log file.
    success.install_plugin=Installing {0} plugin.
    success.delete_plugin=Deleting {0} plugin.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Mar 18 03:05:44 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/TestListener.java

     * from JUnit and TestNG tests.
     */
    @EventScope(Scope.Build.class)
    @DeprecatedInGradleScope
    public interface TestListener {
        /**
         * Called before a test suite is started.
         * @param suite The suite whose tests are about to be executed.
         */
        void beforeSuite(TestDescriptor suite);
    
        /**
         * Called after a test suite is finished.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. cni/README.md

    - CAP_SYS_ADMIN
    - CAP_NET_ADMIN
    - CAP_NET_RAW
    
    ## Ambient mode details
    
    Fundamentally, this component is responsible for the following:
    
    - Sets up redirection with newly-started (or newly-added, previously-started) application pods such that traffic from application pods is forwarded to the local node's ztunnel pod.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top