Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,069 for cleaning (0.15 sec)

  1. cni/pkg/nodeagent/net.go

    func (s *NetServer) RemovePodFromMesh(ctx context.Context, pod *corev1.Pod) error {
    	log := log.WithLabels("ns", pod.Namespace, "name", pod.Name)
    	log.Debugf("Pod is now opt out... cleaning up.")
    
    	openNetns := s.currentPodSnapshot.Take(string(pod.UID))
    	if openNetns == nil {
    		log.Warn("failed to find pod netns during removal")
    		return fmt.Errorf("failed to find pod netns during removal")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/configmap.go

    				scopes.Framework.Debugf("cleanup patched %s injection configmap:\n%s", c.Name(), cfgMap.Data["config"])
    				return nil
    			})
    		}
    		if err := errG.Wait().ErrorOrNil(); err != nil {
    			scopes.Framework.Errorf("failed cleaning up cluster-local config: %v", err)
    		}
    	})
    	return errG.Wait().ErrorOrNil()
    }
    
    func (ic *injectConfig) ValuesConfig() (*inject.ValuesConfig, error) {
    	ic.mu.Lock()
    	myic := ic.values
    	ic.mu.Unlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/memorymanager/state/state_checkpoint_test.go

    }
    
    func TestCheckpointStateClear(t *testing.T) {
    	testCases := []struct {
    		description  string
    		machineState NUMANodeMap
    		assignments  ContainerMemoryAssignments
    	}{
    		{
    			description: "Valid state cleaning",
    			assignments: ContainerMemoryAssignments{
    				"pod": map[string][]Block{
    					"container1": {
    						{
    							NUMAAffinity: []int{0},
    							Type:         v1.ResourceMemory,
    							Size:         1024,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 30 03:35:26 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/table_test.go

    		t.Fatal(err)
    	}
    	t.Logf("columns crd patched: %#v", crd)
    }
    
    // TestPatchCleanTopLevelColumns tests the case that a CRD was created with top-level columns.
    // One should be able to PATCH the CRD cleaning the top-level columns and setting per-version
    // columns.
    func TestPatchCleanTopLevelColumns(t *testing.T) {
    	tearDown, config, _, err := fixtures.StartDefaultServer(t)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 02 19:34:41 UTC 2021
    - 18.9K bytes
    - Viewed (0)
  5. cni/pkg/nodeagent/net_test.go

    	netns := fixture.podNsMap.Take(string(pod.UID))
    	assert.Equal(t, nil, netns)
    
    	// run gc to clean up ns:
    
    	//revive:disable-next-line:call-to-gc Just a test that we are cleaning up the netns
    	runtime.GC()
    	assertNSClosed(t, closed)
    }
    
    func TestServerDeletePod(t *testing.T) {
    	ctx, cancel := context.WithCancel(context.Background())
    	defer cancel()
    	setupLogging()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  6. tests/integration/operator/switch_cr_test.go

    				return nil
    			}, retry.Timeout(retryTimeOut), retry.Delay(retryDelay))
    		})
    }
    
    func cleanupIstioResources(t framework.TestContext, cs cluster.Cluster, istioCtl istioctl.Instance) {
    	scopes.Framework.Infof("cleaning up resources")
    	// clean up Istio control plane
    	unInstallCmd := []string{
    		"uninstall", "--purge", "--skip-confirmation",
    	}
    	out, _ := istioCtl.InvokeOrFail(t, unInstallCmd)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. src/syscall/zerrors_windows.go

    	ETOOMANYREFS - APPLICATION_ERROR:    "too many references: cannot splice",
    	ETXTBSY - APPLICATION_ERROR:         "text file busy",
    	EUCLEAN - APPLICATION_ERROR:         "structure needs cleaning",
    	EUNATCH - APPLICATION_ERROR:         "protocol driver not attached",
    	EUSERS - APPLICATION_ERROR:          "too many users",
    	EWOULDBLOCK - APPLICATION_ERROR:     "resource temporarily unavailable",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 10K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/execution/commandline/CommandLineIntegrationTest.groovy

            def result = executer.usingExecutable(script.absolutePath).withTasks("help").run()
    
            then:
            result.output.contains("my app")
    
            // Don't follow links when cleaning up test files
            testDirectory.usingNativeTools().deleteDir()
        }
    
        @Requires(IntegTestPreconditions.NotEmbeddedExecutor)
        def "uses script basename as application name for use in log messages"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:22 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. pkg/controller/deployment/rolling.go

    		newReplicasCount := *(targetRS.Spec.Replicas) - scaledDownCount
    		if newReplicasCount > *(targetRS.Spec.Replicas) {
    			return nil, 0, fmt.Errorf("when cleaning up unhealthy replicas, got invalid request to scale down %s/%s %d -> %d", targetRS.Namespace, targetRS.Name, *(targetRS.Spec.Replicas), newReplicasCount)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/multicluster.go

    	if k.workloadEntryController != nil {
    		k.MeshServiceController.DeleteRegistry(clusterID, provider.External)
    	}
    	if err := k.Controller.Cleanup(); err != nil {
    		log.Warnf("failed cleaning up services in %s: %v", clusterID, err)
    	}
    	if k.opts.XDSUpdater != nil {
    		k.opts.XDSUpdater.ConfigUpdate(&model.PushRequest{Full: true, Reason: model.NewReasonStats(model.ClusterUpdate)})
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top