Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 337 for broken1 (0.14 sec)

  1. manifests/charts/istio-cni/values.yaml

          # This defines the action the controller will take when a pod is detected as broken.
    
          # labelPods will label all pods with <brokenPodLabelKey>=<brokenPodLabelValue>.
          # This is only capable of identifying broken pods; the user is responsible for fixing them (generally, by deleting them).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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