Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 581 for startCA (0.15 sec)

  1. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/spring-boot-application/src/main/groovy/com.example.spring-boot-application.gradle

    plugins {
        id('com.example.commons')
        id('org.springframework.boot')
    }
    
    dependencies {
        implementation('org.springframework.boot:spring-boot-starter-web')
        implementation('org.springframework.boot:spring-boot-starter-thymeleaf')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 243 bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/jvm/AbstractConsoleJvmTestLoggingFunctionalTest.groovy

            def taskOutput = getTaskOutput(result)
            matchesTaskOutput(taskOutput, testLogEventRegex(TestLogEvent.SKIPPED.consoleMarker))
        }
    
        def "can group started test log event with task if configured"() {
            given:
            buildFile << testLoggingEvents(TestLogEvent.STARTED.testLoggingIdentifier)
            file(JAVA_TEST_FILE_PATH) << javaTestClass { '' }
    
            when:
            executer.withConsole(consoleType)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 14:21:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/spring-boot-web-application/README.adoc

    2019-11-12 22:14:43.820  INFO 1389 --- [           main] o.g.samples.SpringBootDemoApplication    : No active profile set, falling back to default profiles: default
    2019-11-12 22:14:44.108  INFO 1389 --- [           main] o.g.samples.SpringBootDemoApplication    : Started SpringBootDemoApplication in 5.537 seconds (JVM running for 5.8)
    
    BUILD SUCCESSFUL
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationListener.java

     *
     * Implementations are thread safe and can be signalled concurrently.
     * However, a finished signal must not be emitted before the signal of the
     * corresponding started event has returned.
     *
     * Implementations may retain the notification values beyond the method that passed them.
     * Started notifications maybe held until a corresponding finished notification, and slightly after.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. src/go/doc/comment/html.go

    	start := 0
    	for i := 0; i < len(s); i++ {
    		switch s[i] {
    		case '<':
    			out.WriteString(s[start:i])
    			out.WriteString("&lt;")
    			start = i + 1
    		case '&':
    			out.WriteString(s[start:i])
    			out.WriteString("&amp;")
    			start = i + 1
    		case '"':
    			out.WriteString(s[start:i])
    			out.WriteString("&quot;")
    			start = i + 1
    		case '\'':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. subprojects/core/src/testFixtures/groovy/org/gradle/internal/progress/NoOpProgressLoggerFactory.groovy

                this.description = description
                this
            }
    
            ProgressLogger start(String description, String status) {
                setDescription(description)
                started()
                this
            }
    
            void started() {}
            void started(String status) {}
            void progress(String status) {}
            void progress(String status, boolean failing) {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 24 17:26:49 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/spring-boot-web-application/kotlin/app/build.gradle.kts

        mavenCentral()
    }
    
    dependencies {
        implementation(platform("org.springframework.boot:spring-boot-dependencies:2.7.8"))
    
        implementation("org.springframework.boot:spring-boot-starter")
        testImplementation("org.springframework.boot:spring-boot-starter-test") {
            exclude(mapOf("group" to "org.junit.vintage", "module" to "junit-vintage-engine"))
        }
        testRuntimeOnly("org.junit.platform:junit-platform-launcher")
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 687 bytes
    - Viewed (0)
  8. subprojects/core/src/testFixtures/groovy/org/gradle/internal/progress/RecordingProgressLoggerFactory.groovy

                this.description = description
                this
            }
    
            ProgressLogger start(String description, String status) {
                setDescription(description)
                started()
                this
            }
    
            void started() {}
    
            void started(String status) {
                messages.add(status)
            }
    
            void progress(String status) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 27 07:57:46 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise-logging/src/main/java/org/gradle/internal/logging/progress/ProgressLoggerFactory.java

        /**
         * Creates a new long-running operation which has not been started.
         *
         * @param loggerCategory The logger category.
         * @return The progress logger for the operation.
         */
        ProgressLogger newOperation(String loggerCategory);
    
        /**
         * Creates a new long-running operation which has not been started.
         *
         * @param loggerCategory The logger category.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonClientCancellationHandler.java

        private final AtomicBoolean started = new AtomicBoolean();
    
        public WorkerDaemonClientCancellationHandler(WorkerDaemonClientsManager workerDaemonClientsManager, BuildCancellationToken buildCancellationToken) {
            this.workerDaemonClientsManager = workerDaemonClientsManager;
            this.buildCancellationToken = buildCancellationToken;
        }
    
        public void start() {
            if (started.compareAndSet(false, true)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:57:50 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top