Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 62 for orphaned (0.25 sec)

  1. src/database/sql/sql_test.go

    		select {
    		case err := <-errs:
    			if got, want := err, errOffline; got != want {
    				t.Errorf("unexpected err: got %v, want %v", got, want)
    			}
    		case <-to.C:
    			t.Fatalf("orphaned connection request(s), still waiting after %v", timeout)
    		}
    	}
    
    	// Wait a reasonable time for the database to close all connections.
    	tick := time.NewTicker(3 * time.Millisecond)
    	defer tick.Stop()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  2. build/pause/Makefile

    	touch $@
    
    # Useful for testing, not automatically included in container image
    orphan: bin/orphan-linux-$(ARCH)
    bin/orphan-linux-$(ARCH): linux/orphan.c
    	mkdir -p bin
    	docker run --rm -u $$(id -u):$$(id -g) -v $$(pwd):/build \
    		$(KUBE_CROSS_IMAGE):$(KUBE_CROSS_VERSION) \
    		/bin/bash -c "\
    			cd /build && \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 19:31:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.27.md

    - Fix: After a Node is down and take some time to get back to up again, the mount point of the evicted Pods cannot be cleaned up successfully. (#111933) Meanwhile Kubelet will print the log `Orphaned pod "xxx" found, but error not a directory occurred when trying to remove the volumes dir` every 2 seconds. (#105536) ([#116134](https://github.com/kubernetes/kubernetes/pull/116134), [@cvvz](https://github.com/cvvz)) [SIG Node and Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  4. pkg/registry/batch/job/storage/storage_test.go

    		},
    		{
    			description:   "deletion: orphan dependents, no warnings",
    			expectWarning: false,
    			deleteOptions: &metav1.DeleteOptions{OrphanDependents: &orphanDependents},
    			requestInfo:   &genericapirequest.RequestInfo{APIGroup: "batch", APIVersion: "v1"},
    		},
    		{
    			description:   "deletion: orphan deletion, no warnings",
    			expectWarning: false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/reconciler/reconciler.go

    	// that is still needed, but it did not reach DSW yet.
    	if readyToUnmount {
    		// Ensure devices that should be detached/unmounted are detached/unmounted.
    		rc.unmountDetachDevices()
    
    		// Clean up any orphan volumes that failed reconstruction.
    		rc.cleanOrphanVolumes()
    	}
    
    	if len(rc.volumesNeedUpdateFromNodeStatus) != 0 {
    		rc.updateReconstructedFromNodeStatus()
    	}
    	if len(rc.volumesNeedUpdateFromNodeStatus) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller_test.go

    			}
    			orphanPod := podBuilder.Pod
    			orphanPod, err := clientset.CoreV1().Pods("default").Create(ctx, orphanPod, metav1.CreateOptions{})
    			if err != nil {
    				t.Fatalf("Creating orphan pod: %v", err)
    			}
    			err = manager.syncOrphanPod(ctx, cache.MetaObjectToName(orphanPod).String())
    			if err != nil {
    				t.Fatalf("Failed sync orphan pod: %v", err)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  7. pkg/controller/servicecidrs/servicecidrs_controller.go

    		return err
    	}
    
    	return nil
    }
    
    // canDeleteCIDR checks that the ServiceCIDR can be safely deleted and not leave orphan IPAddresses
    func (c *Controller) canDeleteCIDR(ctx context.Context, serviceCIDR *networkingapiv1alpha1.ServiceCIDR) (bool, error) {
    	// TODO(aojea) Revisit the lock usage and if we need to keep it only for the tree operations
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.25.md

      - PreemptionByKubeScheduler (Pod preempted by kube-scheduler)
      - DeletionByTaintManager (Pod deleted by taint manager due to NoExecute taint)
      - EvictionByEvictionAPI (Pod evicted by Eviction API)
      - DeletionByPodGC (an orphaned Pod deleted by PodGC) ([#110959](https://github.com/kubernetes/kubernetes/pull/110959), [@mimowo](https://github.com/mimowo))
    - Kube-Scheduler ComponentConfig is graduated to GA, `kubescheduler.config.k8s.io/v1` is available now.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.28.md

    - Fix: After a Node is down and take some time to get back to up again, the mount point of the evicted Pods cannot be cleaned up successfully. (#111933) Meanwhile Kubelet will print the log `Orphaned pod "xxx" found, but error not a directory occurred when trying to remove the volumes dir` every 2 seconds. (#105536) ([#116134](https://github.com/kubernetes/kubernetes/pull/116134), [@cvvz](https://github.com/cvvz)) [SIG Node and Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  10. src/net/http/request_test.go

    	}
    	if prio := req.FormValue("prio"); prio != "2" {
    		t.Errorf(`req.FormValue("prio") = %q, want "2" (from body)`, prio)
    	}
    	if orphan := req.Form["orphan"]; !reflect.DeepEqual(orphan, []string{"", "nope"}) {
    		t.Errorf(`req.FormValue("orphan") = %q, want "" (from body)`, orphan)
    	}
    	if empty := req.Form["empty"]; !reflect.DeepEqual(empty, []string{"", "not"}) {
    		t.Errorf(`req.FormValue("empty") = %q, want "" (from body)`, empty)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
Back to top