Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 409 for broken2 (0.34 sec)

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

            failure.assertThatDescription(CoreMatchers.startsWith("A problem occurred evaluating project ':other'"))
            failure.assertHasCause('broken')
        }
    
        def reportsBuildSrcFailure() {
            when:
            file('buildSrc/src/main/java/Broken.java') << 'broken!'
    
            then:
            fails()
    
            and:
            failure.assertHasDescription("Execution failed for task ':buildSrc:compileJava'.")
        }
    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. android/guava-tests/test/com/google/common/collect/AbstractSequentialIteratorTest.java

        }
      }
    
      public void testBroken() {
        Iterator<Object> broken = new BrokenAbstractSequentialIterator();
        assertTrue(broken.hasNext());
        // We can't retrieve even the known first element:
        try {
          broken.next();
          fail();
        } catch (MyException expected) {
        }
        try {
          broken.next();
          fail();
        } catch (MyException expected) {
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 17:19:08 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/BuildScriptErrorIntegrationTest.groovy

    """
            buildFile << """
        evaluationDependsOn 'child'
        task t
    """
            final childBuildFile = file("child/build.gradle")
            childBuildFile << """
        def broken = { ->
            throw new RuntimeException('failure')
        }
        broken()
    """
    
            when:
            fails()
    
            then:
            failure.assertHasDescription("A problem occurred evaluating project ':child'.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 17:01:37 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/integtests/JavaProjectIntegrationTest.groovy

        @Test
        void compilationFailureBreaksBuild() {
            TestFile buildFile = testFile("build.gradle")
            buildFile.writelns("apply plugin: 'java'")
            testFile("src/main/java/org/gradle/broken.java") << "broken"
    
            ExecutionFailure failure = executer.withTasks("build").runWithFailure()
    
            failure.assertHasDescription("Execution failed for task ':compileJava'.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. docs/bucket/notifications/README.md

    ```
    KEY:
    notify_kafka[:name]  publish bucket notifications to Kafka endpoints
    
    ARGS:
    brokers*         (csv)       comma separated list of Kafka broker addresses
    topic            (string)    Kafka topic used for bucket notifications
    sasl_username    (string)    username for SASL/PLAIN or SASL/SCRAM authentication
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-selectionRule/groovy/build.gradle

                        if (selection.candidate.group == 'org.sample' && selection.candidate.module == 'api' && selection.candidate.version == '1.5') {
                            selection.reject("version 1.5 is broken for 'org.sample:api'")
                        }
                    }
                }
            }
        }
    }
    
    dependencies {
        rejectConfig "org.sample:api:1.+"
    }
    // end::reject-version-1-1[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-selectionRule/kotlin/build.gradle.kts

                    all {
                        if (candidate.group == "org.sample" && candidate.module == "api" && candidate.version == "1.5") {
                            reject("version 1.5 is broken for 'org.sample:api'")
                        }
                    }
                }
            }
        }
    }
    
    dependencies {
        "rejectConfig"("org.sample:api:1.+")
    }
    // end::reject-version-1-1[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. src/internal/platform/zosarch.go

    // maps in cmd/dist/build.go, then run 'go generate internal/platform'.
    
    package platform
    
    // List is the list of all valid GOOS/GOARCH combinations,
    // including known-broken ports.
    var List = []OSArch{
    	{"aix", "ppc64"},
    	{"android", "386"},
    	{"android", "amd64"},
    	{"android", "arm"},
    	{"android", "arm64"},
    	{"darwin", "amd64"},
    	{"darwin", "arm64"},
    	{"dragonfly", "amd64"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:19:16 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. manifests/charts/istio-cni/values.yaml

          # This defines the action the controller will take when a pod is detected as broken.
    
          # labelPods will label all pods with <brokenPodLabelKey>=<brokenPodLabelValue>.
          # This is only capable of identifying broken pods; the user is responsible for fixing them (generally, by deleting them).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ConfigurationBuildDependenciesIntegrationTest.groovy

                    }
                }
    """
    
            expect:
            executer.withArgument("--dry-run")
            fails("useCompileConfiguration")
            failure.assertHasDescription("Could not determine the dependencies of task ':useCompileConfiguration'.")
            failure.assertHasCause('broken')
    
            fails("useCompileConfiguration")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top