Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 719 for finishedAt (0.16 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultPlanExecutor.java

                }
            }
    
            private boolean nothingMoreToStart() {
                return finished || (autoFinish && queues.isEmpty());
            }
    
            public void add(PlanDetails planDetails) {
                coordinationService.withStateLock(() -> {
                    if (finished) {
                        throw new IllegalStateException("This queue has been closed.");
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  2. src/testing/run_example_wasm.go

    		}
    		if readErr != nil {
    			fmt.Fprintf(os.Stderr, "testing: read temp file: %v\n", readErr)
    			os.Exit(1)
    		}
    
    		err := recover()
    		ok = eg.processRunResult(out, timeSpent, finished, err)
    	}()
    
    	// Run example.
    	eg.F()
    	finished = true
    	return
    }
    
    func createTempFile(exampleName string) *os.File {
    	for i := 0; ; i++ {
    		name := fmt.Sprintf("%s/go-example-stdout-%s-%d.txt", os.TempDir(), exampleName, i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:56:32 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/ReportDaemonStatusClientTest.groovy

            1 * connection.dispatch({it instanceof Finished})
            1 * connection.stop()
    
            and:
            1 * connector.maybeConnect(daemon2) >>> connection
            _ * connection.daemon >> daemon2
            1 * connection.dispatch({it instanceof ReportStatus})
            1 * connection.receive() >> new Success(new Status(12346, "3.0", "BOGUS"))
            1 * connection.dispatch({it instanceof Finished})
            1 * connection.stop()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/AbstractConsoleBuildPhaseFunctionalTest.groovy

                task hello2 {
                    dependsOn hello
                    doFirst {
                        ${server.callFromBuild('task2')}
                    }
                }
                ${buildFinishedCall('build-finished')}
            """
            file("b/build.gradle") << """
                ${server.callFromBuild('b-build-script')}
                afterEvaluate {
                    ${server.callFromBuild('b-after-evaluate')}
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 07:25:15 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. src/crypto/tls/prf.go

    	finishedVerifyLength = 12 // Length of verify_data in a Finished message.
    )
    
    var masterSecretLabel = []byte("master secret")
    var extendedMasterSecretLabel = []byte("extended master secret")
    var keyExpansionLabel = []byte("key expansion")
    var clientFinishedLabel = []byte("client finished")
    var serverFinishedLabel = []byte("server finished")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 16:29:49 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r65/ToolingApiShutdownCrossVersionSpec.groovy

            def build = connection.newBuild()
            build.forTasks('hang')
            build.run(resultHandler)
            sync.waitForAllPendingCalls(resultHandler)
            connector.disconnect()
            resultHandler.finished()
    
            then:
            assertNoRunningDaemons()
        }
    
        @Timeout(30)
        @TargetGradleVersion(">=6.8")
        def "disconnect during hanging build does not block the client"() {
            setup:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. operator/pkg/util/progress/progress.go

    		cmp := p.components[component]
    		// The component has completed
    		cmp.mu.Lock()
    		finished := cmp.finished
    		cmpErr := cmp.err
    		cmp.mu.Unlock()
    		successIcon := "✅"
    		if icon, found := name.IstioComponentSuccessIcons[cmpName]; found {
    			successIcon = icon
    		}
    		if finished || cmpErr != "" {
    			if finished {
    				p.SetMessage(fmt.Sprintf(`%s %s installed`, successIcon, cliName), true)
    			} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/auth/chain/CommandChain.java

                }
            }
    
            /**
             * @param finished
             *            The finished to set.
             */
            public void setFinished(final boolean finished) {
                this.finished = finished;
            }
    
            /**
             * @return Returns the teminated.
             */
            public boolean isTeminated() {
                return teminated;
            }
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. src/net/file.go

    func (f fileAddr) String() string { return string(f) }
    
    // FileConn returns a copy of the network connection corresponding to
    // the open file f.
    // It is the caller's responsibility to close f when finished.
    // Closing c does not affect f, and closing f does not affect c.
    func FileConn(f *os.File) (c Conn, err error) {
    	c, err = fileConn(f)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 09 06:14:44 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationIntegrationTest.groovy

            notifications.finished(EvaluateSettingsBuildOperationType.Result, [:])
            notifications.started(LoadProjectsBuildOperationType.Details, [buildPath: ":"])
            notifications.finished(LoadProjectsBuildOperationType.Result)
            notifications.started(NotifyProjectsLoadedBuildOperationType.Details, [buildPath: ":"])
            notifications.finished(NotifyProjectsLoadedBuildOperationType.Result)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 20.9K bytes
    - Viewed (0)
Back to top