Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 330 for broke (0.04 sec)

  1. test/fixedbugs/bug070.go

    				panic("i not zero")
    			} // loop breaks every time
    			r += fmt.Sprintln("inner loop top i", i)
    			if true {
    				r += "do break\n"
    				break outer
    			}
    		}
    	}
    	r += "broke\n"
    	expect := `outer loop top k 0
    inner loop top i 0
    do break
    broke
    `
    	if r != expect {
    		panic(r)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 715 bytes
    - Viewed (0)
  2. test/fixedbugs/issue8947.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.
    
    // Some uses of zeroed constants in non-assignment
    // expressions broke with our more aggressive zeroing
    // of assignments (internal compiler errors).
    
    package main
    
    func f1() {
    	type T [2]int
    	p := T{0, 1}
    	switch p {
    	case T{0, 0}:
    		panic("wrong1")
    	case T{0, 1}:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 751 bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/bootstrap/DaemonGreeterTest.groovy

            ex.message.contains(DaemonMessages.UNABLE_TO_START_DAEMON)
            ex.message.concat("Process command line: [foo, bar]")
            ex.message.contains("hey joe!")
        }
    
        def "shouts if daemon broke completely..."() {
            when:
            new DaemonGreeter(registry).parseDaemonOutput("", args)
    
            then:
            def ex = thrown(GradleException)
            ex.message.contains(DaemonMessages.UNABLE_TO_START_DAEMON)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/ListValueSnapshot.java

            for (int i = 0; i < pos; i++) {
                newElements.add(elements.get(i));
            }
            if (pos < list.size()) {
                // If we broke out of the comparison because there was a difference, we can reuse the snapshot of the new element
                if (newElement != null) {
                    newElements.add(newElement);
                    pos++;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-groovy/src/crossVersionTest/groovy/org/gradle/integtests/StaticGroovyTaskSubclassingBinaryCompatibilityCrossVersionSpec.groovy

     * Thus the first version we test with is Gradle 2.1 that shipped with Groovy 2.3.6 which fixed that issue.
     *
     * <b>Update for 7.0:</b> the FileOperations interface was finally removed from `DefaultProject`. Unfortunately that
     * broke compatibility with plugins compiled with Gradle 4.x. And that's why the first version we test with now is
     * Gradle 5.0.
     */
    @TargetVersions("5.0+")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 12:37:02 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ConcurrentDerivationStrategyIntegTest.groovy

        @ToBeFixedForConfigurationCache
        @Issue("https://github.com/gradle/gradle/issues/13555")
        @Unroll("consistent resolution using rules=#displayName")
        // If this test becomes flaky it means we broke the code which prevents mutation of in-memory cached module metadata
        def "selected variants are consistent using concurrent resolution of graphs from cache having different derivation strategies"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/options/csrsigningcontroller.go

    		return fmt.Errorf("cannot specify key without cert")
    	case (len(config.CertFile) != 0) && (len(config.KeyFile) == 0):
    		return fmt.Errorf("cannot specify cert without key")
    	}
    
    	return fmt.Errorf("math broke")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 03 06:47:49 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  8. hack/testdata/recursive/deployment/deployment/nginx-broken.yaml

    Davanum Srinivas <******@****.***> 1652185809 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 370 bytes
    - Viewed (0)
  9. hack/testdata/recursive/rc/rc/busybox-broken.yaml

    Mike Metral <******@****.***> 1460671240 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 02 03:27:37 UTC 2016
    - 423 bytes
    - Viewed (0)
  10. hack/testdata/recursive/pod-modify/pod/busybox-broken.yaml

    Mike Metral <******@****.***> 1460671240 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 02 03:27:37 UTC 2016
    - 257 bytes
    - Viewed (0)
Back to top