Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 409 for broken3 (0.18 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/ParallelActionExecutionCrossVersionSpec.groovy

            then:
            def e = thrown(BuildActionFailureException)
            e.cause instanceof RuntimeException
            TextUtil.normaliseLineSeparators(e.cause.message) == """Multiple build operations failed.
        broken: one
        broken: two"""
        }
    
        def setupBuildWithDependencyResolution() {
            server.start()
    
            settingsFile << """
                rootProject.name = 'root'
                include 'a', 'b'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DaemonStateCoordinatorTest.groovy

            when:
            coordinator.runCommand(command, "command")
    
            then:
            DaemonUnavailableException unavailableException = thrown()
            unavailableException.message == 'This daemon is in a broken state and will stop.'
        }
    
        def "cannot run command after finish command action has failed"() {
            Runnable command = Mock()
            RuntimeException failure = new RuntimeException()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/DefaultGradleDistribution.groovy

            return new NoDaemonGradleExecuter(this, testDirectoryProvider, version, buildContext).withWarningMode(null);
        }
    
        @Override
        boolean worksWith(Jvm jvm) {
            // Milestone 4 was broken on the IBM jvm
            if (jvm.isIbmJvm() && isVersion("1.0-milestone-4")) {
                return false;
            }
    
            JavaVersion javaVersion = jvm.getJavaVersion();
            if (javaVersion == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileMetadataAccessor.java

         * then the file type of the file metadata is of type
         * {@link org.gradle.internal.file.FileType#Missing}.
         * <p>
         * Such cases include:
         * <ul>
         *     <li>actual missing files</li>
         *     <li>broken symlinks</li>
         *     <li>circular symlinks</li>
         *     <li>named pipes</li>
         * </ul>
         */
        FileMetadata stat(File f);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:55 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. internal/logger/config.go

    				break
    			}
    			brokers = append(brokers, *host)
    		}
    		if err != nil {
    			return cfg, err
    		}
    
    		clientAuthCfgVal := getCfgVal(EnvKafkaTLSClientAuth, k, kv.Get(KafkaTLSClientAuth))
    		clientAuth, err := strconv.Atoi(clientAuthCfgVal)
    		if err != nil {
    			return cfg, err
    		}
    
    		kafkaArgs := kafka.Config{
    			Enabled: enabled,
    			Brokers: brokers,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/internal/exceptions/ContextAwareExceptionTest.groovy

        }
    
        def "visitor visits causes of multi-cause exception"() {
            def childCause1 = new RuntimeException()
            def childCause2 = new RuntimeException()
            def cause = new DefaultMultiCauseException("broken", childCause1, childCause2)
            def e = new ContextAwareException(cause)
    
            when:
            e.accept(visitor)
    
            then:
            1 * visitor.visitCause(cause)
            1 * visitor.endVisiting()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 13:32:53 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/gradle/FileSpec.groovy

        String name
        // Url written in the Gradle Module Metadata
        String url
        // Url where this file will be published.
        // Normally publishUrl is the same as url, but it can be set differently for testing some broken behavior.
        String publishUrl
        String ext = 'jar'
    
        FileSpec(String name) {
            this(name, name, name)
        }
    
        FileSpec(String name, String url) {
            this(name, url, url)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModuleStateModificationListener.kt

         * The [KtModule] is being removed. Because this event is published before the removal, the [KtModule] can still be accessed to clear
         * caches. It should be removed from any caches managed by the subscriber to avoid stale or broken keys/values.
         */
        REMOVAL,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/result/DefaultResolutionResultTest.groovy

                Stub(Path),
                Stub(Path),
                'test project'
            )
            def mid = DefaultModuleVersionIdentifier.newId("foo", "bar", "1.0")
            org.gradle.internal.Factory<String> broken = { "too bad" }
            def dep = new DefaultUnresolvedDependencyResult(
                Stub(ComponentSelector), false,
                Stub(ComponentSelectionReason),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/MissingTaskDependenciesIntegrationTest.groovy

      - A Directory instance.
      - A RegularFile instance.
      - A URI or URL instance.
      - A TextResource instance."""
    
            when:
            fails "broken"
            then:
            executedAndNotSkipped ":broken"
            failureDescriptionContains("Execution failed for task ':broken'.")
            failureCauseContains(cause)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 08:14:44 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top