Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 6,743 for OTHER (0.58 sec)

  1. testing/integ-test/src/integTest/groovy/org/gradle/integtests/BuildAggregationIntegrationTest.groovy

        }
    
        def reportsNestedBuildFailure() {
            when:
            file('other/settings.gradle') << "rootProject.name = 'other'"
            TestFile other = file('other/build.gradle') << '''
                throw new ArithmeticException('broken')
    '''
    
            buildFile << '''
                task build(type: GradleBuild) {
                    dir = 'other'
                }
    '''
    
            then:
            fails "build"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocToolchainIntegrationTest.groovy

            "executable"     | "when configured"                    | null     | "other"        | null              | "other"
            "assigned tool"  | "when configured"                    | "other"  | null           | null              | "other"
            "executable"     | "over java extension"                | null     | "other"        | "current"         | "other"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/contracts/description/booleans/KtLogicalCombinators.kt

        override fun equals(other: Any?): Boolean {
            return this === other ||
                    other is KaContractBinaryLogicExpression &&
                    other.backingLeft == backingLeft &&
                    other.backingRight == backingRight &&
                    other.backingOperation == backingOperation
        }
    
        public enum class KaLogicOperation {
            AND, OR
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-development/src/integTest/resources/org/gradle/compile/daemon/ParallelCompilerDaemonIntegrationTest/shared/GroovyClass.groovy

            return urls;
        }
    
        public GroovyClass plus(GroovyClass other) {
            if (files.isEmpty()) {
                return other;
            }
            if (other.isEmpty()) {
                return this;
            }
            return new GroovyClass(concat(files, other.getAsFiles()));
        }
    
        public GroovyClass plus(Collection<File> other) {
            if (other.isEmpty()) {
                return this;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/contracts/description/KtValues.kt

            NULL, TRUE, FALSE;
        }
    
        public val constantType: KaContractConstantType get() = withValidityAssertion { backingConstantType }
    
        override fun equals(other: Any?): Boolean {
            return this === other || other is KaContractConstantValue && other.backingConstantType == backingConstantType
        }
    
        override fun hashCode(): Int = backingConstantType.hashCode()
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/lockedfile/internal/filelock/filelock_test.go

    	defer remove()
    
    	other := mustOpen(t, f.Name())
    	defer other.Close()
    
    	lock(t, f)
    	lockOther := mustBlock(t, "Lock", other)
    	unlock(t, f)
    	lockOther(t)
    	unlock(t, other)
    }
    
    func TestLockExcludesRLock(t *testing.T) {
    	t.Parallel()
    
    	f, remove := mustTempFile(t)
    	defer remove()
    
    	other := mustOpen(t, f.Name())
    	defer other.Close()
    
    	lock(t, f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 22:37:50 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryOutgoingVariantsIntegrationTest.groovy

            when:
            resolve()
    
            then:
            result.assertTasksExecuted(":other-java:compileJava", ":other-java:processResources", ":other-java:classes", ":other-java:jar", ":java:compileJava", ":java:processResources", ":java:classes", ":java:jar", ":consumer:resolve")
            assertResolveOutput("""
                files: [java.jar, file-dep.jar, api-1.0.jar, other-java.jar, implementation-1.0.jar, runtime-only-1.0.jar]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-development/src/integTest/resources/org/gradle/compile/daemon/ParallelCompilerDaemonIntegrationTest/shared/JavaClass.java

            return urls;
        }
    
        public JavaClass plus(JavaClass other) {
            if (files.isEmpty()) {
                return other;
            }
            if (other.isEmpty()) {
                return this;
            }
            return new JavaClass(concat(files, other.getAsFiles()));
        }
    
        public JavaClass plus(Collection<File> other) {
            if (other.isEmpty()) {
                return this;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/contracts/description/booleans/KtContractBooleanExpression.kt

        override fun hashCode(): Int = backingParameterSymbol.hashCode()
        override fun equals(other: Any?): Boolean {
            return this === other || other is KaContractBooleanValueParameterExpression && other.backingParameterSymbol == backingParameterSymbol
        }
    }
    
    public typealias KtContractBooleanValueParameterExpression = KaContractBooleanValueParameterExpression
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecToolchainIntegrationTest.groovy

            "executable"     | "when configured"                    | null     | "other"        | null              | "other"
            "assigned tool"  | "when configured"                    | "other"  | null           | null              | "other"
            "executable"     | "over java extension"                | null     | "other"        | "current"         | "other"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top