Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 88 for deleteRS (0.26 sec)

  1. pkg/kubelet/kubelet_pods_test.go

    				# TYPE kubelet_orphaned_runtime_pods_total counter
    				kubelet_orphaned_runtime_pods_total 0
    				`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

          delete-firewall-rules \
          "${NETWORK}-default-ssh" \
          "${NETWORK}-default-rdp" \
          "${NETWORK}-default-internal"  # Pre-1.5 clusters
          delete-cloud-nat-router
          # Delete all remaining firewall rules in the network.
          delete-all-firewall-rules || true
          delete-subnetworks || true
          delete-network || true  # might fail if there are leaked resources that reference the network
        fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    			// unless there is a major API violation
    			restartCount++
    		}
    	}
    	metrics.RestartedPodTotal.WithLabelValues("true").Add(float64(restartCountStatic))
    	metrics.RestartedPodTotal.WithLabelValues("").Add(float64(restartCount))
    
    	// Complete termination of deleted pods that are not runtime pods (don't have
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. src/database/sql/sql.go

    			// on it after removing.
    			db.mu.Lock()
    			deleted := db.connRequests.Delete(delHandle)
    			db.mu.Unlock()
    
    			db.waitDuration.Add(int64(time.Since(waitStart)))
    
    			// If we failed to delete it, that means something else
    			// grabbed it and is about to send on it.
    			if !deleted {
    				// TODO(bradfitz): rather than this best effort select, we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller_test.go

    			expectedConditionReason: "JobResumed",
    			expectedReady:           ptr.To[int32](0),
    		},
    		"suspending a deleted job": {
    			// We would normally expect the active pods to be deleted (see a few test
    			// cases above), but since this job is being deleted, we don't expect
    			// anything changed here from before the job was suspended. The
    			// JobSuspended condition is also missing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  6. cmd/server_test.go

    	// Delete policy.
    	request, err = newTestSignedRequest(http.MethodDelete, getDeletePolicyURL(s.endPoint, bucketName), 0, nil,
    		s.accessKey, s.secretKey, s.signer)
    	c.Assert(err, nil)
    
    	response, err = s.client.Do(request)
    	c.Assert(err, nil)
    	c.Assert(response.StatusCode, http.StatusNoContent)
    
    	// Verify if the policy was indeed deleted.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	}
    
    	// Attempt to nominate a pod that was deleted from the informer cache.
    	// Nothing should change.
    	q.AddNominatedPod(logger, nonExistentPodInfo, &framework.NominatingInfo{NominatingMode: framework.ModeOverride, NominatedNodeName: "node1"})
    	if diff := cmp.Diff(q.nominator, expectedNominatedPods, nominatorCmpOpts...); diff != "" {
    		t.Errorf("Unexpected diff after nominating a deleted pod (-want, +got):\n%s", diff)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Delete */
        public static final String LABELS_search_list_button_delete = "{labels.search_list_button_delete}";
    
        /** The key of the message: Do you really want to delete? */
        public static final String LABELS_search_list_delete_confirmation = "{labels.search_list_delete_confirmation}";
    
        /** The key of the message: Delete all with this query */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/proxier_test.go

    		t.Errorf("expected service map length 1, got %v", fp.svcPortMap)
    	}
    
    	// All services but one were deleted. While you'd expect only the ClusterIPs
    	// from the three deleted services here, we still have the ClusterIP for
    	// the not-deleted service, because one of it's ServicePorts was deleted.
    	expectedStaleUDPServices := []string{"172.16.55.10", "172.16.55.4", "172.16.55.11", "172.16.55.12"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  10. cmd/data-usage-cache_gen.go

    			if err != nil {
    				err = msgp.WrapError(err, "Tiers")
    				return
    			}
    			if z.Tiers == nil {
    				z.Tiers = make(map[string]tierStats, zb0002)
    			} else if len(z.Tiers) > 0 {
    				for key := range z.Tiers {
    					delete(z.Tiers, key)
    				}
    			}
    			for zb0002 > 0 {
    				zb0002--
    				var za0001 string
    				var za0002 tierStats
    				za0001, err = dc.ReadString()
    				if err != nil {
    					err = msgp.WrapError(err, "Tiers")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 100.8K bytes
    - Viewed (0)
Back to top