Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. android/guava-testlib/test/com/google/common/testing/AbstractPackageSanityTestsTest.java

       *
       * We'd just use PackageSanityTests directly, saving us from needing this separate type, but we're
       * currently skipping MediumTests on Android, and we skip them by not making them present at
       * runtime at all. I could just make _this_ test a MediumTest, but then it wouldn't run on
       * Android.... The right long-term fix is probably to get MediumTests running under Android by
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 21:37:55 UTC 2019
    - 5.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/links/ClassLinkMetaData.java

        public ClassLinkMetaData(ClassMetaData classMetaData) {
            this.className = classMetaData.getClassName();
            this.simpleName = classMetaData.getSimpleName();
            this.packageName = classMetaData.getPackageName();
            this.style = LinkMetaData.Style.Javadoc;
            for (MethodMetaData method : classMetaData.getDeclaredMethods()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 7.4K bytes
    - Viewed (0)
  6. guava-testlib/test/com/google/common/testing/AbstractPackageSanityTestsTest.java

       *
       * We'd just use PackageSanityTests directly, saving us from needing this separate type, but we're
       * currently skipping MediumTests on Android, and we skip them by not making them present at
       * runtime at all. I could just make _this_ test a MediumTest, but then it wouldn't run on
       * Android.... The right long-term fix is probably to get MediumTests running under Android by
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 21:37:55 UTC 2019
    - 5.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/g3doc/space_to_depth.md

    dehao@
    
    ## TL;DR
    
    _This document describes an automatic space to depth transform for the first
    convolution in the new MLIR bridge to improve MXU efficiency of low batch size
    convolutions._
    
    ## Background
    
    For image models, the first layer is usually not MXU friendly as it has a
    feature size of 3. This results in poor performance especially with small batch.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Oct 24 02:51:43 UTC 2020
    - 8.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top