Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for _this6 (0.19 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_capability_conflict.adoc

    This is particularly common with logging frameworks, where multiple bindings are available, and that one library chooses a binding when another transitive dependency chooses another.
    Because those implementations live at different GAV coordinates, the build tool has usually no way to find out that there's a conflict between those libraries.
    To solve this, Gradle provides the concept of _capability_.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/GroovyInteroperability.kt

     * @param action the function to be adapted.
     *
     * @see [KotlinClosure1]
     */
    fun <T> Any.closureOf(action: T.() -> Unit): Closure<Any?> =
        KotlinClosure1(action, this, this)
    
    
    /**
     * Adapts a Kotlin function to a Groovy [Closure] that operates on the
     * configured Closure delegate.
     *
     * @param T the expected type of the delegate argument to the closure.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/UsageDescriberSpec.groovy

            expect:
            UsageDescriber.describeRole(role) == "\tResolvable - this configuration can be resolved by this project to a set of files\n" +
                    "\tDeclarable - this configuration can have dependencies added to it (but this behavior is marked deprecated)"
        }
    
        def "can describe usage for role which allows nothing"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/worker/ForkingTestClassProcessor.java

            DocumentationRegistry documentationRegistry
        ) {
            this.workerThreadRegistry = workerThreadRegistry;
            this.workerFactory = workerFactory;
            this.processorFactory = processorFactory;
            this.options = options;
            this.classpath = classpath;
            this.buildConfigAction = buildConfigAction;
            this.documentationRegistry = documentationRegistry;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 12:13:32 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonGreeter.java

            return startupCommunication.readDiagnostics(lastLine);
        }
    
        private String prepareMessage(String output, List<String> startupArgs) {
            return DaemonMessages.UNABLE_TO_START_DAEMON +
                "\nThis problem might be caused by incorrect configuration of the daemon." +
                "\nFor example, an unrecognized jvm option is used." +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/instances.go

    	return i.Contains(t.Instances()...)
    }
    
    func (i Instances) Contains(instances ...Instance) bool {
    	for _, thatI := range instances {
    		found := false
    		for _, thisI := range i {
    			if thisI == thatI {
    				found = true
    				break
    			}
    		}
    		if !found {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 18:26:17 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/discovery/v1beta1/types_swagger_doc_generated.go

    	"nodeName":   "nodeName represents the name of the Node hosting this endpoint. This can be used to determine endpoints local to a Node.",
    	"hints":      "hints contains information associated with how an endpoint should be consumed.",
    }
    
    func (Endpoint) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:26:19 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/policy/v1beta1/types_swagger_doc_generated.go

    regardless of whether the criteria in a PDB is met. This means perspective running pods of a disrupted application might not get a chance to become healthy. Healthy pods will be subject to the PDB for eviction.\n\nAdditional policies may be added in the future. Clients making eviction decisions should disallow eviction of unhealthy pods if they encounter an unrecognized policy in this field.\n\nThis field is beta-level. The eviction API uses this field when the feature gate PDBUnhealthyPodEvictionPolicy...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/KtFe10AnalysisSession.kt

        override val expressionTypeProviderImpl: KaExpressionTypeProvider = KaFe10ExpressionTypeProvider(this)
        override val psiTypeProviderImpl: KaPsiTypeProvider = KaFe10PsiTypeProvider(this)
        override val typeProviderImpl: KaTypeProvider = KaFe10TypeProvider(this)
        override val typeInfoProviderImpl: KaTypeInfoProvider = KaFe10TypeInfoProvider(this)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 08:30:49 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/TestProjectGeneratorConfiguration.groovy

            this(projectName, projectName, language)
        }
    
        TestProjectGeneratorConfigurationBuilder(String projectName, String templateName, Language language = Language.JAVA) {
            this.projectName = projectName
            this.templateName = templateName
            this.language = language
            this.dsl = GradleDsl.GROOVY
            this.buildSrc = true
            this.fileToChangeByScenario = [:]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 13:08:21 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top