Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 776 for broke (0.48 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/internal/concurrent/hashtriemap.go

    			// What we saw is still true, so we can continue with the insert.
    			break
    		}
    		// We have to start over.
    		i.mu.Unlock()
    	}
    	// N.B. This lock is held from when we broke out of the outer loop above.
    	// We specifically break this out so that we can use defer here safely.
    	// One option is to break this out into a new function instead, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. 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)
  10. src/internal/testenv/testenv.go

    			//
    			// (It might not be: for example, the user may have explicitly set GOROOT
    			// to the wrong directory. But this case is
    			// rare, and if that happens the user can fix what they broke.)
    			return
    		}
    
    		// runtime.GOROOT doesn't know where GOROOT is (perhaps because the test
    		// binary was built with -trimpath).
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top