Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 389 for broken (0.05 sec)

  1. cni/pkg/repair/repair_test.go

    			},
    			workingPodDiedPreviously,
    			false,
    		},
    		{
    			"Testing broken pod (in waiting state) with only ExitCode check",
    			config.RepairConfig{
    				SidecarAnnotation: "sidecar.istio.io/status",
    				InitContainerName: constants.ValidationContainerName,
    				InitExitCode:      126,
    			},
    			brokenPodWaiting,
    			true,
    		},
    		{
    			"Testing broken pod (in terminating state) with only ExitCode check",
    			config.RepairConfig{
    Registered: 2025-05-28 22:53
    - Last Modified: 2023-10-24 03:31
    - 10.6K bytes
    - Viewed (0)
  2. 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: 2025-05-28 22:53
    - Last Modified: 2025-03-03 21:55
    - 8.1K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/AbstractSequentialIteratorTest.java

      }
    
      public void testBroken() {
        Iterator<Object> broken = new BrokenAbstractSequentialIterator();
        assertTrue(broken.hasNext());
        // We can't retrieve even the known first element:
        assertThrows(SomeUncheckedException.class, broken::next);
        assertThrows(SomeUncheckedException.class, broken::next);
      }
    
      private static Iterator<Integer> newDoubler(int first, int last) {
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-05-13 18:46
    - 4.7K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/AbstractSequentialIteratorTest.java

      }
    
      public void testBroken() {
        Iterator<Object> broken = new BrokenAbstractSequentialIterator();
        assertTrue(broken.hasNext());
        // We can't retrieve even the known first element:
        assertThrows(SomeUncheckedException.class, broken::next);
        assertThrows(SomeUncheckedException.class, broken::next);
      }
    
      private static Iterator<Integer> newDoubler(int first, int last) {
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-05-13 18:46
    - 4.7K 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: 2025-05-28 22:53
    - Last Modified: 2023-05-12 17:39
    - 4.7K bytes
    - Viewed (0)
  6. build-logic/documentation/src/test/groovy/gradlebuild/docs/FindBrokenInternalLinksTest.groovy

                    samplesRoot = project.layout.buildDirectory.dir('working/samples/docs');
                }
            """
        }
    
        def "finds broken section links"() {
            given:
            sampleDoc << """
    === Dead Section Links
    This section doesn't exist: <<missing_section>>
    Also see this one, which is another dead link: <<other_missing_section>>
            """
    
    Registered: 2025-05-28 11:36
    - Last Modified: 2024-12-10 07:56
    - 10.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/SmbTransportPool.java

         * <p>
         * See also the <tt>jcifs.smb.client.logonShare</tt> property.
         * 
         * @param dc
         * @param tc
         * @throws CIFSException
         * @deprecated functionality is broken and will be removed at some point,
         *             use actual Active Directory authentication instead
         */
        @Deprecated
        void logon ( CIFSContext tc, Address dc ) throws CIFSException;
    
    
        /**
    Registered: 2025-05-25 00:10
    - Last Modified: 2020-05-17 09:02
    - 6.3K bytes
    - Viewed (0)
  8. 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: 2025-05-28 22:53
    - Last Modified: 2025-05-07 01:49
    - 6.2K bytes
    - Viewed (0)
  9. cni/pkg/config/config.go

    	// The node name that the CNI DaemonSet runs on
    	NodeName string
    
    	// Key and value for broken pod label
    	LabelKey   string
    	LabelValue string
    
    	// Whether to fix race condition by repairing them
    	RepairPods bool
    
    	// Whether to fix race condition by delete broken pods
    	DeletePods bool
    
    	// Whether to label broken pods
    	LabelPods bool
    
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-05-06 05:38
    - 6.3K bytes
    - Viewed (2)
  10. doc/next/7-ports.md

    ### Windows
    
    <!-- go.dev/issue/71671 -->
    Registered: 2025-05-27 11:13
    - Last Modified: 2025-04-07 18:04
    - 426 bytes
    - Viewed (0)
Back to top