Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 696 for cleaned (0.2 sec)

  1. src/cmd/go/internal/clean/clean.go

    distinct from those stored in testdata directory; clean does not remove
    those files.
    
    For more about build flags, see 'go help build'.
    
    For more about specifying packages, see 'go help packages'.
    	`,
    }
    
    var (
    	cleanI         bool // clean -i flag
    	cleanR         bool // clean -r flag
    	cleanCache     bool // clean -cache flag
    	cleanFuzzcache bool // clean -fuzzcache flag
    	cleanModcache  bool // clean -modcache flag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. pilot/pkg/model/typed_xds_cache_test.go

    	}
    	req = &PushRequest{Start: zeroTime.Add(time.Duration(2))}
    	// after adding an entry with the same key, previous indexes are correctly cleaned
    	c.Add(secondEntry.Key(), secondEntry, req, res)
    
    	assert.Equal(t, cache.store.Len(), 1)
    
    	// Flush the cache and validate the index is cleaned.
    	cache.Flush()
    	assert.Equal(t, cache.indexLength(), 1)
    
    	assert.Equal(t, cache.configIndexSnapshot(), map[ConfigHash]sets.Set[uint64]{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 29 20:35:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_volumes.go

    		// TODO: getMountedVolumePathListFromDisk() call may be redundant with
    		// kl.getPodVolumePathListFromDisk(). Can this be cleaned up?
    		if podVolumesExist := kl.podVolumesExist(uid); podVolumesExist {
    			errorPods++
    			klog.V(3).InfoS("Orphaned pod found, but volumes are not cleaned up", "podUID", uid)
    			continue
    		}
    
    		// Attempt to remove the pod volumes directory and its subdirs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. pkg/controller/deployment/rolling_test.go

    		{ // expect unhealthy replicas from old replica sets been cleaned up
    			deploymentReplicas:  10,
    			maxUnavailable:      intstr.FromInt32(2),
    			oldReplicas:         10,
    			newReplicas:         0,
    			readyPodsFromOldRS:  8,
    			readyPodsFromNewRS:  0,
    			scaleExpected:       true,
    			expectedOldReplicas: 8,
    		},
    		{ // expect 1 unhealthy replica from old replica sets been cleaned up, and 1 ready pod been scaled down
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 11K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/reconciler/reconstruct_test.go

    	}{
    		{
    			name:                        "volume is in DSW and is not cleaned",
    			podInfos:                    []podInfo{defaultPodInfo},
    			volumesFailedReconstruction: []podVolume{defaultVolume},
    			expectedUnmounts:            0,
    		},
    		{
    			name:                        "volume is not in DSW and is cleaned",
    			podInfos:                    []podInfo{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. build-logic/buildquality/src/test/kotlin/gradlebuild/testcleanup/TestFilesCleanupServiceTest.kt

            assertEquals(TaskOutcome.FAILED, result.task(":failed-test-with-leftover:test")!!.outcome)
    
            // leftover files failed tests are reported but not counted as an exception, but cleaned up eventually
            assertEquals(1, StringUtils.countMatches(result.output, "Found non-empty test files dir"))
            assertEquals(1, StringUtils.countMatches(result.output, "Failed to stop service 'testFilesCleanupBuildService'"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 14 12:35:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/devicemanager/topology_hints.go

    // ensures the Device Manager is consulted when Topology Aware Hints for each
    // container are created.
    func (m *ManagerImpl) GetTopologyHints(pod *v1.Pod, container *v1.Container) map[string][]topologymanager.TopologyHint {
    	// The pod is during the admission phase. We need to save the pod to avoid it
    	// being cleaned before the admission ended
    	m.setPodPendingAdmission(pod)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. cni/test/install_cni.go

    			t.Logf("installer complete: %v", err)
    		} else {
    			t.Errorf("installer failed: %v", err)
    		}
    	}
    
    	if cleanErr := installer.Cleanup(); cleanErr != nil {
    		t.Errorf("Error during test CNI installer cleanup, error was: %s", cleanErr)
    	}
    }
    
    // checkResult checks if resultFile is equal to expectedFile at each tick until timeout
    func checkResult(result, expected string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. pilot/test/xds/fake.go

    		},
    		InitialDiscoveryRequests: initialWatch,
    	})
    	if err != nil {
    		f.t.Fatalf("Error connecting: %v", err)
    	}
    	f.t.Cleanup(func() {
    		adscConn.Close()
    	})
    	return adscConn
    }
    
    // Connect starts an ADS connection to the server using adsc. It will automatically be cleaned up when the test ends
    // watch can be configured to determine the resources to watch initially, and wait can be configured to determine what
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/memorymanager/memory_manager.go

    func (m *manager) Allocate(pod *v1.Pod, container *v1.Container) error {
    	// The pod is during the admission phase. We need to save the pod to avoid it
    	// being cleaned before the admission ended
    	m.setPodPendingAdmission(pod)
    
    	// Garbage collect any stranded resources before allocation
    	m.removeStaleState()
    
    	m.Lock()
    	defer m.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 00:50:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
Back to top