Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 852 for broke (0.18 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. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTestKitIntegrationTest.groovy

        }
    
        /**
         * This test check that Jacoco works with TestKit when configuration cache is DISABLED.
         * We don't have support for that case when configuration cache is enabled yet.
         *
         * But we broke --no-configuration-cache case already twice in the past, so it's worth testing it.
         */
        @Issue(["https://github.com/gradle/gradle/issues/13614", "https://github.com/gradle/gradle/issues/28729"])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. 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)
  9. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcIncludedBuildIntegrationTest.groovy

                plugins {
                    id("test-plugin")
                }
            """
    
            writePluginTo(file("included"))
            file("included/src/main/java/Broke.java") << "does not compile!"
    
            buildFile << """
                plugins {
                    id "apply-test-plugin"
                }
            """
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 13 02:04:28 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  10. internal/rest/client.go

    				r := snapshot
    				return io.NopCloser(&r), nil
    			}
    		default:
    			// This is where we'd set it to -1 (at least
    			// if body != NoBody) to mean unknown, but
    			// that broke people during the Go 1.8 testing
    			// period. People depend on it being 0 I
    			// guess. Maybe retry later. See Issue 18117.
    		}
    		// For client requests, Request.ContentLength of 0
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top