Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 336 for broken3 (0.19 sec)

  1. test/fixedbugs/issue5910.go

    // 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 5910: parsing of unnamed struct types
    // in inlined bodies was broken.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 05 20:09:53 UTC 2013
    - 272 bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/go/testdata/script/build_cc_cache_issue64423.txt

    env GOCACHE=$WORK${/}.cache
    mkdir $GOCACHE
    
    go build -x runtime/cgo
    
    	# Tell our fake clang to stop working.
    	# Previously, 'go build -x runtime/cgo' would continue to
    	# succeed because both the broken clang and the non-broken one
    	# resulted in a cache key with no clang version information.
    env GO_BREAK_CLANG=1
    ! go build -x runtime/cgo
    stderr '# runtime/cgo\nGO_BREAK_CLANG is set'
    
    -- go.mod --
    module example/issue64423
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:13:29 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top