Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 696 for cleaned (0.14 sec)

  1. pkg/controller/ttlafterfinished/ttlafterfinished_controller.go

    	if err != nil {
    		return err
    	}
    
    	// Ignore the Jobs that are already deleted or being deleted, or the ones that don't need clean up.
    	job, err := tc.jLister.Jobs(namespace).Get(name)
    
    	logger := klog.FromContext(ctx)
    	logger.V(4).Info("Checking if Job is ready for cleanup", "job", klog.KRef(namespace, name))
    
    	if errors.IsNotFound(err) {
    		return nil
    	}
    	if err != nil {
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 23:59:28 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. tests/integration/ambient/waypoint_test.go

    						if !errors.Is(err, kubetest.ErrNoPodsFetched) {
    							return fmt.Errorf("failed to check gateway status: %v", err)
    						}
    					} else {
    						return fmt.Errorf("failed to delete multiple gateways: %s not cleaned up", name)
    					}
    				}
    				return nil
    			}, retry.Timeout(15*time.Second), retry.BackoffDelay(time.Millisecond*100))
    
    			// delete all waypoints in namespace, so w3 should be deleted
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/Daemon.java

                            daemonRegistry.remove(connectorAddress);
                        } catch (Exception e) {
                            LOGGER.debug("VM shutdown hook was unable to remove the daemon address from the registry. It will be cleaned up later.", e);
                        }
                    }
                });
    
                Runnable onStartCommand = new Runnable() {
                    @Override
                    public void run() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. cmd/object-api-utils.go

    			// multiple / elements
    			return true
    		case path[r] == '.' && (r+1 == n || path[r+1] == '/'):
    			// . element - assume it has to be cleaned.
    			return true
    		case path[r] == '.' && path[r+1] == '.' && (r+2 == n || path[r+2] == '/'):
    			// .. element: remove to last / - assume it has to be cleaned.
    			return true
    		default:
    			// real path element.
    			// add slash if needed
    			if rooted && w != 1 || !rooted && w != 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/join_test.go

    					data.cfg.ControlPlane.LocalAPIEndpoint.BindPort != 1234 {
    					t.Error("Invalid ControlPlane")
    				}
    			},
    		},
    		{
    			name: "control plane setting are cleaned up if --control-plane flag is not set",
    			flags: map[string]string{
    				options.ControlPlane:              "false",
    				options.APIServerAdvertiseAddress: "1.2.3.4",
    				options.APIServerBindPort:         "1.2.3.4",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 12:26:20 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. pkg/kubelet/prober/prober_manager.go

    	// deleting cached results.
    	RemovePod(pod *v1.Pod)
    
    	// CleanupPods handles cleaning up pods which should no longer be running.
    	// It takes a map of "desired pods" which should not be cleaned up.
    	CleanupPods(desiredPods map[types.UID]sets.Empty)
    
    	// UpdatePodStatus modifies the given PodStatus with the appropriate Ready state for each
    	// container based on container running status, cached probe results and worker states.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 11K bytes
    - Viewed (0)
  7. pkg/controller/endpointslicemirroring/endpointslicemirroring_controller_test.go

    			}},
    		},
    		endpointSlices:     []*discovery.EndpointSlice{},
    		expectedNumActions: 0,
    		expectedNumSlices:  0,
    	}, {
    		testName: "Existing EndpointSlices that need to be cleaned up",
    		service:  &v1.Service{},
    		endpoints: &v1.Endpoints{
    			Subsets: []v1.EndpointSubset{{
    				Ports: []v1.EndpointPort{{Port: 80}},
    			}},
    		},
    		endpointSlices: []*discovery.EndpointSlice{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  8. cmd/prepare-storage.go

    			pathJoin(diskPath, minioMetaTmpBucket),
    			err))
    	}
    
    	// Delete all temporary files created for DirectIO write check
    	files, _ := filepath.Glob(filepath.Join(diskPath, ".writable-check-*.tmp"))
    	for _, file := range files {
    		go removeAll(file)
    	}
    
    	// Remove the entire folder in case there are leftovers that didn't get cleaned up before restart.
    	go removeAll(pathJoin(diskPath, minioMetaTmpBucket+"-old"))
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun May 19 08:06:49 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. pkg/kubelet/token/token_manager_test.go

    	cases := []struct {
    		name              string
    		relativeExp       time.Duration
    		expectedCacheSize int
    	}{
    		{
    			name:              "don't cleanup unexpired tokens",
    			relativeExp:       -1 * time.Hour,
    			expectedCacheSize: 0,
    		},
    		{
    			name:              "cleanup expired tokens",
    			relativeExp:       time.Hour,
    			expectedCacheSize: 1,
    		},
    	}
    	for _, c := range cases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 04 00:16:47 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  10. common/scripts/kind_provisioner.sh

    # This function returns 0 when everything goes well, or 1 otherwise
    # If Kind cluster was already created then it would be cleaned up in case of errors
    function setup_kind_cluster() {
      local NAME="${1:-istio-testing}"
      local IMAGE="${2:-"${DEFAULT_KIND_IMAGE}"}"
      local CONFIG="${3:-}"
      local NOMETALBINSTALL="${4:-}"
      local CLEANUP="${5:-true}"
    
      check_default_cluster_yaml
    
      # Delete any previous KinD cluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 19:12:55 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top