Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 1,313 for clen (0.05 sec)

  1. samples/bookinfo/src/reviews/reviews-wlpcfg/build.gradle

        dependsOn ':reviews-application:war'
        from '../reviews-application/build/libs/reviews-application-1.0.war'
        into 'servers/LibertyProjectServer/apps/'
    }
    
    task build(dependsOn: ['copyApplication']){
    }
    
    task clean {
        delete "servers/LibertyProjectServer/apps"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 397 bytes
    - Viewed (0)
  2. pkg/version/cobra_test.go

    		Revision:  "default",
    		Info:      BuildInfo{"1.2.0", "gitSHA123", "go1.10", "Clean", "tag"},
    	},
    	{
    		Component: "Injector",
    		Revision:  "default",
    		Info:      BuildInfo{"1.2.0", "gitSHAabc", "go1.10.1", "Modified", "tag"},
    	},
    	{
    		Component: "Citadel",
    		Revision:  "default",
    		Info:      BuildInfo{"1.2.0", "gitSHA321", "go1.11.0", "Clean", "tag"},
    	},
    }
    
    var meshInfoMultiVersion = MeshInfo{
    	{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:26 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-customTaskClass/tests/incrementalAdHocTaskNoSource.sample.conf

    executable: gradle
    args: clean processTemplatesAdHocSkipWhenEmpty
    expected-output-file: incrementalAdHocTaskNoSource.out
    allow-additional-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 181 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/tests/incrementalBuildBadInputFilesConfig.sample.conf

    executable: gradle
    args: clean badInstrumentClasses
    expected-output-file: incrementalBuildBadInputFilesConfig.out
    allow-additional-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 174 bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/configurations/Gradleception.kt

                    tasks = "clean :distributions-full:install"
                    gradleParams = "-Pgradle_installPath=dogfood-first -PignoreIncomingBuildReceipt=true -PbuildTimestamp=$dogfoodTimestamp1 $defaultParameters"
                }
    
                localGradle {
                    name = "BUILD_WITH_BUILT_GRADLE"
                    tasks = "clean :distributions-full:install"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 09:57:17 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. hack/verify-vendor.sh

    # Copy the contents of the kube directory into the nice clean place (which is NOT shaped like a GOPATH)
    _kubetmp="${_tmpdir}/kubernetes"
    mkdir -p "${_kubetmp}"
    tar --exclude=.git --exclude="./_*" -c . | (cd "${_kubetmp}" && tar xf -)
    
    pushd "${_kubetmp}" > /dev/null 2>&1
      # Destroy deps in the copy of the kube tree
      rm -rf ./vendor ./LICENSES
    
      # Recreate the vendor tree using the nice clean set we just downloaded
      hack/update-vendor.sh
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. docs_src/events/tutorial003.py

    
    ml_models = {}
    
    
    @asynccontextmanager
    async def lifespan(app: FastAPI):
        # Load the ML model
        ml_models["answer_to_everything"] = fake_answer_to_everything_ml_model
        yield
        # Clean up the ML models and release the resources
        ml_models.clear()
    
    
    app = FastAPI(lifespan=lifespan)
    
    
    @app.get("/predict")
    async def predict(x: float):
        result = ml_models["answer_to_everything"](x)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Mar 07 15:46:00 UTC 2023
    - 569 bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/JavaIncrementalCompilationWithCachingIntegrationTest.groovy

            source("class A {}", "class B {}")
            withBuildCache().run language.compileTaskName
            def cachedBuild = outputs.snapshot {
                withBuildCache().run "clean", language.compileTaskName
            }
            cachedBuild.groupedOutput.task(":compileJava").outcome == "FROM_CACHE"
    
            when:
            source("class A { /* ${UUID.randomUUID()} */ }")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/LeastRecentlyUsedCacheCleanupTest.groovy

                createCacheEntry(now),
                createCacheEntry(now),
                createCacheEntry(now),
                createCacheEntry(fiveDaysAgo),
            ]
    
            when:
            cleanupAction.clean(cleanableStore, progressMonitor)
    
            then:
            cacheEntries[0].assertExists()
            cacheEntries[1].assertExists()
            cacheEntries[2].assertExists()
            cacheEntries[3].assertDoesNotExist()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. hack/logcheck.conf

    # those calls is not required. That is changed on a per-file basis.
    #
    # Remember to clean the golangci-lint cache when changing the configuration and
    # running the verify-golangci-lint.sh script multiple times, otherwise
    # golangci-lint will report stale results:
    #    _output/local/bin/golangci-lint cache clean
    
    # At this point we don't enforce the usage structured logging calls except in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top