Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 409 for broken1 (0.23 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheValueSourceIntegrationTest.groovy

                    @Override String obtain() {
                        if (Boolean.getBoolean("should.fail")) {
                            throw new RuntimeException("Broken!")
                        }
                        return "not broken"
                    }
                }
    
                providers.of(SometimesBrokenValueSource) {}.get()
            """)
    
            when:
            configurationCacheRun()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/annotations/DefaultTypeMetadataStoreTest.groovy

                context.visitPropertyProblem {
                    it
                        .forProperty(metadata.propertyName)
                        .id("test-problem", "is broken", GradleCoreProblemGroup.validation())
                        .documentedAt(userManual("id", "section"))
                        .severity(Severity.WARNING)
                        .details("Test")
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolvedArtifactsApiIntegrationTest.groovy

    dependencies {
        compile files { throw new RuntimeException('broken') }
        compile files('lib.jar')
    }
    
    ${showFailuresTask(expression)}
    """
            when:
            fails 'show'
    
            then:
            failure.assertHasCause("Could not resolve all artifacts for configuration ':compile'.")
            failure.assertHasCause("broken")
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  4. cni/pkg/constants/constants.go

    	RepairDeletePods         = "repair-delete-pods"
    	RepairRepairPods         = "repair-repair-pods"
    	RepairLabelPods          = "repair-label-pods"
    	RepairLabelKey           = "repair-broken-pod-label-key"
    	RepairLabelValue         = "repair-broken-pod-label-value"
    	RepairNodeName           = "repair-node-name"
    	RepairSidecarAnnotation  = "repair-sidecar-annotation"
    	RepairInitContainerName  = "repair-init-container-name"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginEndOfBuildCallbackIntegrationTest.groovy

            then:
            plugin.assertEndOfBuildWithFailure(output, null)
            failure.assertHasDescription("broken")
    
            when:
            fails succeedingTaskName, "-Dbuild-listener-failure"
    
            then:
            plugin.assertEndOfBuildWithFailure(output, null)
            failure.assertHasDescription("broken")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryChainComponentMetaDataResolverTest.groovy

    import org.gradle.internal.service.ServiceRegistry
    import spock.lang.Specification
    
    class RepositoryChainComponentMetaDataResolverTest extends Specification {
        final org.gradle.internal.Factory<String> broken = { "broken" }
        final metaData = metaData("1.2")
        final componentState = Stub(ModuleComponentGraphResolveState) {
            getLegacyMetadata() >> metaData
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/cc/io_test.cc

                                        tsl::FileSystem** result) override {
        return absl::InternalError("Broken file system");
      }
    
     private:
      void GetLocalTempDirectories(std::vector<tsl::string>* list) override {
        list->push_back("/tmp");
      }
    };
    
    // Represents an environment with broken file system and no available local tmp
    // directories.
    class TestEnvBrokenFileSystemAndNoLocalTempDirs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 03:28:15 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. cni/pkg/config/config.go

    	// The node name that the CNI DaemonSet runs on
    	NodeName string
    
    	// Key and value for broken pod label
    	LabelKey   string
    	LabelValue string
    
    	// Whether to fix race condition by repairing them
    	RepairPods bool
    
    	// Whether to fix race condition by delete broken pods
    	DeletePods bool
    
    	// Whether to label broken pods
    	LabelPods bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedConfigurationIntegrationTest.groovy

            settingsFile << "include 'child'"
            def m1 = mavenHttpRepo.module('org.foo', 'hiphop').publish()
            def m2 = mavenHttpRepo.module('org.foo', 'unknown')
            def m3 = mavenHttpRepo.module('org.foo', 'broken')
            def m4 = mavenHttpRepo.module('org.foo', 'rock').dependsOn(m3).publish()
    
            buildFile << """
                dependencies {
                    implementation 'org.foo:hiphop:1.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskTimeoutIntegrationTest.groovy

            given:
            buildFile << """
                task broken() {
                    doLast {
                        println "Hello"
                    }
                    timeout = Duration.ofMillis(-1)
                }
                """
    
            expect:
            2.times {
                fails "broken"
                failure.assertHasDescription("Execution failed for task ':broken'.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top