Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 669 for broken1 (0.16 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                    maxParallelUsages = 1
                }
    
                task broken(type: Consumer) {
                    // reference will be set by name
                }
            """
            enableStableConfigurationCache()
            executer.expectDocumentedDeprecationWarning(
                "Build service 'counter' is being used by task ':broken' without the corresponding declaration via 'Task#usesService'. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  2. src/internal/platform/supported.go

    func FirstClass(goos, goarch string) bool {
    	return distInfo[OSArch{goos, goarch}].FirstClass
    }
    
    // Broken reportsr whether goos/goarch is considered a broken port.
    // (See https://go.dev/wiki/PortingPolicy#broken-ports.)
    func Broken(goos, goarch string) bool {
    	return distInfo[OSArch{goos, goarch}].Broken
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:50:22 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/ModelMapDslIntegrationTest.groovy

        tasks {
            show(Task) {
                doLast {
                    println "value = " + $.things.test.value
                }
            }
        }
        broken(Thing) {
            throw new RuntimeException('broken')
        }
        things {
            main(Thing) {
                value = $.broken.value
            }
            test(Thing) {
                value = "12"
            }
        }
    }
    '''
            when:
            succeeds "show"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  4. tests/integration/pilot/cni_race_test.go

    			cniDaemonSet := getCNIDaemonSet(t, c)
    			deleteCNIDaemonset(t, c)
    
    			// Rollout restart instances in the echo namespace, and wait for a broken instance.
    			t.Log("Rollout restart echo instance to get a broken instance")
    			rolloutCmd := fmt.Sprintf("kubectl rollout restart deployment -n %s", ns.Name())
    			if _, err := shell.Execute(true, rolloutCmd); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildTaskExecutionIntegrationTest.groovy

            "unknown"            | "Task 'unknown' not found in root project 'broken' and its subprojects."
            "unknown:help"       | "Cannot locate tasks that match 'unknown:help' as project 'unknown' not found in root project 'broken'."
            ":unknown:help"      | "Cannot locate tasks that match ':unknown:help' as project 'unknown' not found in root project 'broken'."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top