Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 862 for broken3 (0.23 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/JavaCompileAvoidanceWithIncrementalCompilationIntegrationTest.groovy

            buildFile << """
                apply plugin: '${language.name}'
                dependencies {
                    implementation files("broken.jar")
                }
            """
            file("broken.jar").text = "this is not a jar"
            file("src/main/${language.name}/Main.${language.name}") << "public class Main {}"
    
            expect:
            fails(language.compileTaskName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. pkg/config/analysis/local/context.go

    		cfgs := store.List(colschema.GroupVersionKind(), "")
    		broken := false
    		for _, cfg := range cfgs {
    			k := key{
    				col, resource.FullName{
    					Name:      resource.LocalName(cfg.Name),
    					Namespace: resource.Namespace(cfg.Namespace),
    				}, id,
    			}
    			if res, ok := i.found[k]; ok {
    				if !broken && !fn(res) {
    					broken = true
    				}
    				cache[k] = res
    				continue
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/cross-project-output-sharing/README.adoc

    This would lead to builds that are either totally broken, or worse, broken is a way that is subtle, flaky, and difficult to debug.
    
    [source,groovy]
    dependencies {
      // This publication model can make your build flaky and broken!
      implementation project(":other").tasks.someOtherJar
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/queue/AbstractQueueTest.groovy

    import java.util.concurrent.locks.Lock
    
    abstract class AbstractQueueTest extends Specification {
        final Condition broken = Stub() {
            await() >> { throw new UnsupportedOperationException("should not be waiting") }
        }
        final Lock lock = Stub() {
            newCondition() >> broken
        }
    
        def unicast() {
            InterHubMessage message = Stub() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. cni/pkg/repair/repair_test_helpers.go

    		PodName: "broken-pod-terminating",
    		Annotations: map[string]string{
    			"sidecar.istio.io/status": "something",
    		},
    		Labels: map[string]string{
    			"testlabel": "true",
    		},
    		NodeName:            "test-node",
    		InitContainerStatus: &brokenInitContainerTerminating,
    	})
    
    	brokenPodWaiting = makePod(makePodArgs{
    		PodName: "broken-pod-waiting",
    		Annotations: map[string]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 12 17:39:53 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/shell_test.go

    	f.Add([]byte(`"broken\"" \\\a "a"`))
    
    	// Example negative inputs from TestSplitPkgConfigOutput.
    	f.Add([]byte(`"     \r\n      `))
    	f.Add([]byte(`"-r:foo" "-L/usr/white space/lib "-lfoo bar" "-lbar baz"`))
    	f.Add([]byte(`"-lextra fun arg\\`))
    	f.Add([]byte(`broken flag\`))
    	f.Add([]byte(`extra broken flag \`))
    	f.Add([]byte(`\`))
    	f.Add([]byte(`"broken\"" "extra" \`))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 15 15:30:05 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r18/BuildActionCrossVersionSpec.groovy

        }
    
        @TargetGradleVersion(">=3.0 <7.3")
        def "does not run action when configuration fails"() {
            given:
            buildFile << 'throw new RuntimeException("broken")'
    
            when:
            withConnection {
                it.action(new ActionShouldNotBeCalled()).run()
            }
    
            then:
            BuildException e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. cni/pkg/repair/repaircontroller.go

    	})
    	if err != nil {
    		c.events.Write(pod, corev1.EventTypeWarning, ReasonDeleteBrokenPod, "pod detected as broken, but failed to delete: %v", err)
    		m.With(resultLabel.Value(resultFail)).Increment()
    		return err
    	}
    	c.events.Write(pod, corev1.EventTypeWarning, ReasonDeleteBrokenPod, "pod detected as broken, deleted")
    	m.With(resultLabel.Value(resultSuccess)).Increment()
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceTest.groovy

            server.expect("/cache/${key.hashCode}", false, [method], new HttpServer.ActionSupport("return ${httpCode} broken") {
                @Override
                void handle(HttpServletRequest request, HttpServletResponse response) {
                    //noinspection GrDeprecatedAPIUsage
                    response.setStatus(httpCode, "broken")
                }
            })
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppIncrementalBuildIntegrationTest.groovy

            def unused = file("app/src/main/headers/ignore1.h") << "broken!"
            def unusedPrivate = file("app/src/main/cpp/ignore2.h") << "broken!"
    
            run installApp
            libObjects.snapshot()
            appObjects.snapshot()
    
            when:
            unused << "even more broken"
            unusedPrivate << "even more broken"
            file("src/main/headers/ignored3.h") << "broken"
            file("src/main/headers/some-dir").mkdirs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 40.4K bytes
    - Viewed (0)
Back to top