Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for DELETING (0.13 sec)

  1. cluster/gce/util.sh

      if gcloud compute instance-templates describe "${template_name}" --project "${PROJECT}" &>/dev/null; then
        echo "Instance template ${1} already exists; deleting." >&2
        if ! gcloud compute instance-templates delete "${template_name}" --project "${PROJECT}" --quiet &>/dev/null; then
          echo -e "${color_yellow}Failed to delete existing instance template${color_norm}" >&2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller_test.go

    			succeededPods:      2,
    			expectedActive:     2,
    			expectedSucceeded:  2,
    			expectedPodPatches: 2,
    			expectedReady:      ptr.To[int32](0),
    		},
    		"deleting job": {
    			parallelism:        2,
    			completions:        5,
    			backoffLimit:       6,
    			deleting:           true,
    			pendingPods:        1,
    			activePods:         1,
    			succeededPods:      1,
    			expectedActive:     2,
    			expectedSucceeded:  1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  3. pkg/scheduler/schedule_one_test.go

    				t.Fatal(err)
    			}
    			createPodIndex++
    		}
    	}
    
    	// Following we start 2 goroutines asynchronously to detect potential racing issues:
    	// 1) One is responsible for deleting several nodes in each round;
    	// 2) Another is creating several pods in each round to trigger scheduling;
    	// Those two goroutines will stop until ctx.Done() is called, which means all waiting pods are scheduled at least once.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_control_test.go

    	// for client state to sync. In fact, because the client is not updated during tests, informer updates will break tests
    	// by unexpectedly deleting objects.
    	//
    	// TODO: It might be better to rewrite all these tests manipulate the client an explicitly sync to ensure consistent
    	// state, or to create a fake client that does not use a local cache.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    	// by other components that need to see the set of desired pods. Note that not all desired pods are
    	// running, and not all running pods are in the podManager - for instance, force deleting a pod
    	// from the apiserver will remove it from the podManager, but the pod may still be terminating and
    	// tracked by the podWorkers. Components that need to know the actual consumed resources of the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: Installing {0} plugin. */
        public static final String SUCCESS_install_plugin = "{success.install_plugin}";
    
        /** The key of the message: Deleting {0} plugin. */
        public static final String SUCCESS_delete_plugin = "{success.delete_plugin}";
    
        /** The key of the message: Uploaded {0} */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. cmd/object-handlers_test.go

    	// set of byte data for PutObject.
    	// object has to be created before running tests for Deleting the object.
    	bytesData := []struct {
    		byteData []byte
    	}{
    		{generateBytesData(6 * humanize.MiByte)},
    	}
    
    	// set of inputs for uploading the objects before tests for deleting them is done.
    	putObjectInputs := []struct {
    		bucketName    string
    		objectName    string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	REG_NOTIFY_CHANGE_ATTRIBUTES = 0x00000002
    
    	// REG_NOTIFY_CHANGE_LAST_SET notifies the caller of changes to a value of the key. This can include adding or deleting a value, or changing an existing value.
    	REG_NOTIFY_CHANGE_LAST_SET = 0x00000004
    
    	// REG_NOTIFY_CHANGE_SECURITY notifies the caller of changes to the security descriptor of the key.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue_test.go

    			"node1": {medPriorityPodInfo},
    			"node5": {unschedulablePodInfo},
    		},
    	}
    	if diff := cmp.Diff(q.nominator, expectedNominatedPods, nominatorCmpOpts...); diff != "" {
    		t.Errorf("Unexpected diff after deleting pods (-want, +got):\n%s", diff)
    	}
    }
    
    func TestPriorityQueue_NewWithOptions(t *testing.T) {
    	ctx, cancel := context.WithCancel(context.Background())
    	defer cancel()
    	q := NewTestQueue(ctx,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. pkg/registry/batch/job/strategy_test.go

    					ManualSelector: ptr.To(true),
    					Parallelism:    ptr.To[int32](1),
    				},
    			},
    			update: func(job *batch.Job) {
    				job.Annotations["foo"] = "bar"
    			},
    		},
    		"deleting user annotation": {
    			job: &batch.Job{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:            "myjob",
    					Namespace:       metav1.NamespaceDefault,
    					ResourceVersion: "0",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
Back to top