Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 102 for broken3 (0.31 sec)

  1. android/guava/src/com/google/common/util/concurrent/AggregateFutureState.java

        // Log after all static init is finished; if an installed logger uses any Futures methods, it
        // shouldn't break in cases where reflection is missing/broken.
        if (thrownReflectionFailure != null) {
          log.get().log(Level.SEVERE, "SafeAtomicHelper is broken!", thrownReflectionFailure);
        }
      }
    
      AggregateFutureState(int remainingFutures) {
        this.remaining = remainingFutures;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 20:40:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CommandLineTaskExecutionIntegrationTest.groovy

    class CommandLineTaskExecutionIntegrationTest extends AbstractIntegrationSpec {
        def "fails with badly formed task name"() {
            createDirs("a")
            settingsFile """
                rootProject.name = 'broken'
                include("a")
            """
            buildFile """
            """
    
            when:
            fails(taskName)
    
            then:
            failure.assertHasDescription(message)
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:35 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/cache/CacheConfigurationsCompositeBuildTest.groovy

            def currentDist = createDistributionChecksumDir(GradleVersion.current()).parentFile
    
            def initDir = gradleUserHomeDir.createDir('init.d')
            initDir.createFile('broken.gradle') << """
                throw new Exception('BOOM!')
            """
    
            file('foo').createDir().createFile('settings.gradle')
            file('bar').createDir().createFile('settings.gradle')
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 20:02:29 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcIdentityIntegrationTest.groovy

            buildSrc << """
                classes.doLast {
                    throw new RuntimeException("broken")
                }
            """
    
            when:
            fails()
    
            then:
            failure.assertHasDescription("Execution failed for task ':buildSrc:classes'.")
            failure.assertHasCause("broken")
    
            where:
            settings                     | display
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. testing/integ-test/src/integTest/groovy/org/gradle/integtests/AntProjectIntegrationTest.groovy

        @Test
        @ToBeFixedForConfigurationCache(because = "AntTarget task")
        void reportsAntTaskExecutionFailure() {
            testFile('build.xml') << """
    <project>
        <target name='target1'>
            <fail>broken</fail>
        </target>
    </project>
    """
            TestFile buildFile = testFile('build.gradle')
            buildFile << """
    ant.importBuild('build.xml')
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ComponentArtifactResolveState.java

     *
     * <p>Resolution happens in multiple steps. The first is to calculate the dependency graph, and the subsequent steps select artifacts. Artifact resolution is broken down into 3 main steps:</p>
     * <ul>
     *     <li>Select a variant of the component instance. The variant selected for artifact resolution may be different to that used for graph resolution,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/AggregateFutureState.java

        // Log after all static init is finished; if an installed logger uses any Futures methods, it
        // shouldn't break in cases where reflection is missing/broken.
        if (thrownReflectionFailure != null) {
          log.get().log(Level.SEVERE, "SafeAtomicHelper is broken!", thrownReflectionFailure);
        }
      }
    
      AggregateFutureState(int remainingFutures) {
        this.remaining = remainingFutures;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 20:40:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/MissingFileSnapshot.java

    import org.gradle.internal.file.FileType;
    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.hash.Hashing;
    
    import java.util.Optional;
    
    /**
     * A snapshot of a missing file or a broken symbolic link or a named pipe.
     */
    public class MissingFileSnapshot extends AbstractFileSystemLocationSnapshot implements FileSystemLeafSnapshot {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGroovyClosureIntegrationTest.groovy

        def "from-cache build fails when task action closure sets a project property"() {
            given:
            buildFile << """
                tasks.register("some") {
                    doFirst {
                        description = "broken" // task property is ok
                        $expression = 1.2
                    }
                }
            """
    
            when:
            configurationCacheFails ":some"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. pilot/pkg/config/aggregate/config_test.go

    	g := NewWithT(t)
    
    	store1 := memory.Make(collection.SchemasFor(schemaFor("SomeConfig", "broken message name")))
    
    	stores := []model.ConfigStore{store1}
    
    	store, err := makeStore(stores, nil)
    	g.Expect(err).To(MatchError(ContainSubstring("not found: broken message name")))
    	g.Expect(store).To(BeNil())
    }
    
    func TestAggregateStoreGet(t *testing.T) {
    	g := NewWithT(t)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top