Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 862 for broken3 (0.24 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CHelloWorldApp.groovy

                   tests      1      1      1      0        0
                 asserts      3      3      3      0      n/a
    """
            }
        }
    
        SourceFile getBrokenFile() {
            return sourceFile("c", "broken.c", """'broken""")
        }
    
        @Override
        String getSourceSetType() {
            return "CSourceSet"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/ObjectiveCHelloWorldApp.groovy

                }
            """
        }
    
        @Override
        List<String> getPluginList() {
            ['objective-c']
        }
    
        SourceFile getBrokenFile() {
            return sourceFile("objc", "broken.m", """'broken""")
        }
    
        @Override
        String getSourceSetType() {
            return "ObjectiveCSourceSet"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/legacy/BuildScanEndOfBuildNotifierIntegrationTest.groovy

            file("child/build.gradle") << """
                gradle.buildFinished {
                    throw new RuntimeException("broken")
                }
                task t
            """
    
            runAndFail("t")
    
            then:
            output.matches("""(?s).*
    1 actionable task: 1 executed.*
    failure message: broken
    .*""")
        }
    
        def "can only register one listener"() {
            when:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ModelRuleBindingFailureIntegrationTest.groovy

            throw new RuntimeException("broken")
        }
    
        @Validate
        void checkName(@Path("person.parent.parent") Person grandParent, @Path("person.parent.parent.parent.parent") Person ancestor) {
            throw new RuntimeException("broken")
        }
    }
    
    apply plugin: MyPlugin
    
    model {
        person.parent.name {
            throw new RuntimeException("broken")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/AbstractSwiftIntegrationTest.groovy

        }
    
        def "build fails when compilation fails"() {
            given:
            makeSingleProject()
    
            and:
            file("src/main/swift/broken.swift") << "broken!"
    
            expect:
            fails "assemble"
            failure.assertHasDescription("Execution failed for task '$developmentBinaryCompileTask'.")
            failure.assertHasCause("A build operation failed.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. releasenotes/notes/revision-install-create-istiod-service.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    releaseNotes:
      - |
        **Fixed** a bug resulting in broken resource validation when a fresh Istio installation specified a revision. Note that
        this fix applies only when using the `istioctl` installation method, the manual steps from the [canary upgrade documentation](https://istio.io/latest/docs/setup/upgrade/canary/)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 07 19:41:33 UTC 2021
    - 453 bytes
    - Viewed (0)
  7. cluster/addons/addon-manager/kube-addons-test.sh

      EDITOR="sed -i 's/50m/600m/'" kubectl edit limits/limits -n ${TEST_NS}
      if kubectl get limits/limits -n ${TEST_NS} -o yaml | grep --silent "50m"; then
        error "failed to edit resource with sed -- test is broken"
        return 1
      fi
      create_resource_from_string "${limitrange}" "10" "1" "limitrange.yaml" "${TEST_NS}"
      if ! ( kubectl get limits/limits -n ${TEST_NS} -o yaml | grep --silent "50m"); then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 25 02:46:18 UTC 2021
    - 9.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SimpleJavaContinuousIntegrationTest.groovy

            then:
            succeeds("test")
    
            when:
            testSourceFile << " broken "
    
            then:
            buildTriggeredAndFailed()
            failureDescriptionStartsWith("Execution failed for task ':compileTestJava'.")
    
            when:
            sourceFile << " broken "
    
            then:
            buildTriggeredAndFailed()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  9. test/fixedbugs/issue9432.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // gc used to recurse infinitely when dowidth is applied
    // to a broken recursive type again.
    // See golang.org/issue/9432.
    package p
    
    type foo struct { // ERROR "invalid recursive type|cycle"
    	bar  foo
    	blah foo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 04 21:22:23 UTC 2020
    - 390 bytes
    - Viewed (0)
  10. test/fixedbugs/issue5172.go

    // errorcheck
    
    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // issue 5172: spurious warn about type conversion on broken type inside go and defer
    
    package main
    
    type foo struct {
    	x bar // ERROR "undefined"
    }
    
    type T struct{}
    
    func (t T) Bar() {}
    
    func main() {
    	var f foo
    	go f.bar()    // ERROR "undefined"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 28 02:31:54 UTC 2020
    - 506 bytes
    - Viewed (0)
Back to top