Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,782 for better (0.2 sec)

  1. maven-artifact/src/main/java/org/apache/maven/artifact/handler/ArtifactHandler.java

         *
         * @deprecated A value of {@code true} does not mean that the dependency should
         * be placed on the classpath. See {@code JavaPathType} instead for better analysis.
         */
        @Deprecated
        boolean isAddedToClasspath();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractGradleBuildConfigurationCacheSmokeTest.groovy

        def setup() {
            // Generate Kotlin DSL sources once so they are included as :kotlin-dsl:compileKotlin inputs.
            // TODO:configuration-cache handle generated sources better (see gradlebuild.kotlin-dsl-dependencies-embedded.gradle.kts:39)
            run([':kotlin-dsl:generateKotlinDependencyExtensions'])
        }
    
        TestExecutionResult assertTestClassExecutedIn(String subProjectDir, String testClass) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/AbstractCrossBuildPerformanceTest.groovy

        protected void defaultSpec(GradleBuildExperimentSpec.GradleBuilder builder) {
        }
    
        protected void finalizeSpec(GradleBuildExperimentSpec.GradleBuilder builder) {
        }
    
        static {
            // TODO - find a better way to cleanup
            System.addShutdownHook {
                ((Closeable) RESULTS_STORE).close()
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultResolutionErrorHandler.java

                        result.getMissingArtifacts(),
                        request.getRemoteRepositories());
            }
    
            // this should never happen since we checked all possible error sources before but better be sure
            if (result.hasExceptions()) {
                throw new ArtifactResolutionException(
                        "Unknown error during artifact resolution, " + request + ", " + result.getExceptions(),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/ConfigurationHooksIntegrationTest.groovy

        @Test
        @ToBeFixedForConfigurationCache
        void triggersBeforeAndWhenConfigurationHooks() {
    
            //this test is a bit peculiar as it has assertions inside the gradle script
            //couldn't find a better way of asserting on before/when configured hooks
            runIdeaTask '''
    apply plugin: 'java'
    apply plugin: 'idea'
    
    def beforeConfiguredObjects = 0
    def whenConfiguredObjects = 0
    
    idea {
        project {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/DefaultRootComponentMetadataBuilder.java

            // When there may be no more than one configuration, don't cache the resolution state for reuse. Currently, this only applies to detached configurations, however
            // it might be better to skip caching when it's likely there is only one configuration defined, for example, for script class paths, as the meta-data is unlikely to be reused.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/StrictVersionConstraintsFeatureInteractionIntegrationTest.groovy

                }
            }
    
            buildFile << """
                configurations.conf.resolutionStrategy.dependencySubstitution {
                    substitute module("org:old") because "better foo than old" using module("org:foo:2.0")
                }
                dependencies {
                    conf('org:foo') {
                       version { strictly '1.0' }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 15K bytes
    - Viewed (0)
  8. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/Pmd.java

         *
         * This is only well supported for PMD 5.2.1 or better.
         *
         * @since 2.8
         */
        public void setClasspath(@Nullable FileCollection classpath) {
            this.classpath = classpath;
        }
    
        /**
         * Controls whether to use incremental analysis or not.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 19 14:14:11 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  9. pilot/pkg/xds/pcds.go

    	if !features.MultiRootMesh {
    		return false
    	}
    
    	if req == nil {
    		return true
    	}
    
    	if !req.Full {
    		return false
    	}
    
    	if len(req.ConfigsUpdated) == 0 {
    		// This needs to be better optimized
    		return true
    	}
    
    	return false
    }
    
    // Generate returns ProxyConfig protobuf containing TrustBundle for given proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 18:25:42 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/filters/routine.go

    // in a separate Goroutine and then serves the long running request in the main Goroutine. Doing so allows
    // freeing stack memory used in preparation Goroutine for better memory efficiency.
    func WithRoutine(handler http.Handler, longRunning request.LongRunningRequestCheck) http.Handler {
    	return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    		ctx := req.Context()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 10:22:16 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top