Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 64 for boont (0.04 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BomSupportPluginsSmokeTest.groovy

                    edge("org.springframework.boot:spring-boot-test-autoconfigure", "org.springframework.boot:spring-boot-test-autoconfigure:$bomVersion", springBootTestAutoconfigureDeps).byReason(reason1)
                    edge("org.springframework.boot:spring-boot-test", "org.springframework.boot:spring-boot-test:$bomVersion", springBootTestDeps).byReason(reason2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/SpringBootPluginSmokeTest.groovy

        @Issue('https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-gradle-plugin')
        def 'spring boot plugin'() {
            given:
            buildFile << """
                plugins {
                    id "application"
                    id "org.springframework.boot" version "${TestedVersions.springBoot}" // TODO:Finalize Upload Removal - Issue #21439
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/plugin/devel/variants/TargetJVMVersionOnPluginTooNewFailureDescriberIntegrationTest.groovy

        def 'spring boot 3 plugin usage with jvm < 17 uses custom error message'() {
            given:
            Integer currentJava = Integer.valueOf(JavaVersion.current().majorVersion)
    
            buildFile << """
                plugins {
                    id "application"
                    id "org.springframework.boot" version "3.2.1"           // Any version of Spring Boot >= 3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 20:48:53 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. src/main/resources/fess_config.properties

    zh-tw=zh-tw\n\
    zh_TW=zh-tw\n\
    zh=zh\n\
    
    # boost
    query.boost.title=0.5
    query.boost.title.lang=1.0
    query.boost.content=0.05
    query.boost.content.lang=0.1
    query.boost.important_content=-1.0
    query.boost.important_content.lang=-1.0
    query.boost.fuzzy.min.length=4
    query.boost.fuzzy.title=0.01
    query.boost.fuzzy.title.fuzziness=AUTO
    query.boost.fuzzy.title.expansions=10
    query.boost.fuzzy.title.prefix_length=0
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/plugin_basics.adoc

    The link:https://plugins.gradle.org/plugin/org.springframework.boot[Spring Boot Gradle plugin] packages executable JAR or WAR archives, and runs link:https://spring.io/[Spring Boot] Java applications.
    
    To apply the `org.springframework.boot` plugin to a project:
    
    .build.gradle.kts
    [source,kotlin]
    ----
    plugins {
        id("org.springframework.boot") version "3.1.5"
    }
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 00:36:58 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/exentity/WebConfig.java

                }
            }
        }
    
        public String getBoostValue() {
            if (boost != null) {
                return boost.toString();
            }
            return null;
        }
    
        public void setBoostValue(final String value) {
            if (value != null) {
                try {
                    boost = Float.parseFloat(value);
                } catch (final Exception e) {}
            }
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 09:48:04 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/SpringBootWebAppTestOutputNormalizer.groovy

     */
    
    package org.gradle.integtests.fixtures.logging
    
    import org.gradle.exemplar.executor.ExecutionMetadata
    import org.gradle.exemplar.test.normalizer.OutputNormalizer
    
    /**
     * Removes extra empty lines from `spring-boot-web-application` sample output.
     * Before:
     * <pre>
     > Task :app:compileJava
    
     > Task :app:processResources
     > Task :app:classes
    
     > Task :app:compileTestJava
    
     > Task :app:processTestResources NO-SOURCE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/CacheResolveIntegrationTest.groovy

            def hashOfBootJar = '1234' // for demo purpose
            def invalidPath = "org.spring/core/1.0/$hash/artifact-1.0./../../../../boot/2.0/$hashOfBootJar/pwned.txt"
            def invalidLocation = executer.gradleUserHomeDir.file(cachePath + invalidPath).canonicalFile
    
            server.allowGetOrHead("/repo/org/boot/2.0/$hashOfBootJar/pwned.txt", fakeDep)
    
            and:
            withValidJavaSource()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/platforms/plugins-platform/build.gradle.kts

            api("org.jetbrains.kotlin.android:org.jetbrains.kotlin.android.gradle.plugin:1.9.23")
            api("org.jetbrains.kotlin.jvm:org.jetbrains.kotlin.jvm.gradle.plugin:1.9.23")
            api("org.springframework.boot:org.springframework.boot.gradle.plugin:2.7.8")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:36:42 UTC 2024
    - 427 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/healthz.go

    // will default to healthy. One may want to set a grace period in order to prevent the kubelet from restarting
    // the kube-apiserver due to long-ish boot sequences. Readyz health checks, on the other hand, have no grace period,
    // since readyz should fail until boot fully completes.
    func (s *GenericAPIServer) AddBootSequenceHealthChecks(checks ...healthz.HealthChecker) error {
    	return s.addHealthChecks(s.livezGracePeriod, checks...)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top