Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 150 for DELETING (0.61 sec)

  1. pkg/controller/namespace/deletion/namespaced_resources_deleter.go

    }
    
    // Delete deletes all resources in the given namespace.
    // Before deleting resources:
    //   - It ensures that deletion timestamp is set on the
    //     namespace (does nothing if deletion timestamp is missing).
    //   - Verifies that the namespace is in the "terminating" phase
    //     (updates the namespace phase if it is not yet marked terminating)
    //
    // After deleting the resources:
    // * It removes finalizer token from the given namespace.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 07:34:23 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/IsolatingIncrementalAnnotationProcessingIntegrationTest.groovy

            when:
            a.text = "@Helper class A { public String bar() { return 0; } }"
            runAndFail "compileJava", "-d"
    
            then:
            outputs.noneRecompiled()
            outputContains("Deleting generated files: [${file("build/classes/java/main/AHelperResource.txt")}, " +
                "${file("build/generated/sources/annotationProcessor/java/main/AHelper.java")}]"
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/AggregatingIncrementalAnnotationProcessingIntegrationTest.groovy

            when:
            a.text = "@Service class A { public String foo() { return 0; } }"
            runAndFail "compileJava", "-d"
    
            then:
            outputs.noneRecompiled()
            outputContains("Deleting generated files: [${file("build/classes/java/main/ServiceRegistryResource.txt")}, " +
                "${file("build/generated/sources/annotationProcessor/java/main/ServiceRegistry.java")}]")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 29 15:12:07 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  4. pkg/controller/replicaset/replica_set.go

    	schema.GroupVersionKind
    
    	kubeClient clientset.Interface
    	podControl controller.PodControlInterface
    
    	eventBroadcaster record.EventBroadcaster
    
    	// A ReplicaSet is temporarily suspended after creating/deleting these many replicas.
    	// It resumes normal action after observing the watch events for them.
    	burstReplicas int
    	// To allow injection of syncReplicaSet for testing.
    	syncHandler func(ctx context.Context, rsKey string) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/service_injection.adoc

    5. <<workerexecutor,`WorkerExecutor`>> - Allows a task to run work in parallel.
    6. <<filesystemoperations,`FileSystemOperations`>> - Allows a task to run operations on the filesystem such as deleting files, copying files or syncing directories.
    7. <<archiveoperations,`ArchiveOperations`>> - Allows a task to run operations on archive files such as ZIP or TAR files.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. pkg/kubelet/clustertrustbundle/clustertrustbundle_manager_test.go

    			t.Fatalf("Bad bundle; diff (-got +want)\n%s", diff)
    		}
    	})
    
    	if err := kc.CertificatesV1alpha1().ClusterTrustBundles().Delete(ctx, ctb1.ObjectMeta.Name, metav1.DeleteOptions{}); err != nil {
    		t.Fatalf("Error while deleting the old CTB: %v", err)
    	}
    	if _, err := kc.CertificatesV1alpha1().ClusterTrustBundles().Create(ctx, ctb2, metav1.CreateOptions{}); err != nil {
    		t.Fatalf("Error while adding new CTB: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  7. tests/integration/operator/switch_cr_test.go

    			installWithCRFile(t, t, cs, istioCtl, "default", "v2")
    			installWithCRFile(t, t, cs, istioCtl, "default", "")
    
    			// istio control plane resources expected to be deleted after deleting CRs
    			cleanupInClusterCRs(t, cs)
    
    			// test operator remove command
    			scopes.Framework.Infof("checking operator remove command for default revision")
    			removeCmd := []string{
    				"operator", "remove",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  8. pkg/controller/tainteviction/taint_eviction.go

    	return func(ctx context.Context, fireAt time.Time, args *WorkArgs) error {
    		ns := args.NamespacedName.Namespace
    		name := args.NamespacedName.Name
    		klog.FromContext(ctx).Info("Deleting pod", "controller", controllerName, "pod", args.NamespacedName)
    		if emitEventFunc != nil {
    			emitEventFunc(args.NamespacedName)
    		}
    		var err error
    		for i := 0; i < retries; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_block.go

    	// Request to unpublish a block volume from publishPath.
    	// Expectation for driver is to remove block volume from the publishPath, by unmounting bind-mounted device file
    	// or deleting device file.
    	// Driver is responsible for deleting publishPath itself.
    	// If driver doesn't implement NodeUnstageVolume, detaching the block volume from the node may be done, here.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/graceful_termination_test.go

    		rs           *utilipvs.RealServer
    		existingIPVS *utilipvstest.FakeIPVS
    		expectedIPVS *utilipvstest.FakeIPVS
    		err          error
    	}{
    		{
    			name: "graceful delete, no connections results in deleting the real server immediatetly",
    			vs: &utilipvs.VirtualServer{
    				Address:  netutils.ParseIPSloppy("1.1.1.1"),
    				Protocol: "tcp",
    				Port:     uint16(80),
    			},
    			rs: &utilipvs.RealServer{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11K bytes
    - Viewed (0)
Back to top