Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 114 for Everything (0.14 sec)

  1. Makefile.core.mk

    # Create targets for TARGET_OUT_LINUX/binary
    # There are two use cases here:
    # * Building all docker images (generally in CI). In this case we want to build everything at once, so they share work
    # * Building a single docker image (generally during dev). In this case we just want to build the single binary alone
    BUILD_ALL ?= true
    define build-linux
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/policy/v1/types.go

    	// the deletion didn't occur and a pod is still there it will be removed from
    	// the list automatically by PodDisruptionBudget controller after some time.
    	// If everything goes smooth this map should be empty for the most of the time.
    	// Large number of entries in the map may indicate problems with pod deletions.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. pkg/webhooks/validation/controller/controller.go

    		if wh.FailurePolicy != nil && *wh.FailurePolicy != kubeApiAdmission.Fail {
    			return true
    		}
    	}
    	return false
    }
    
    func (c *Controller) syncAll() {
    	for _, whc := range c.webhooks.List("", klabels.Everything()) {
    		c.queue.AddObject(whc)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 16:52:19 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. internal/ioutil/ioutil.go

    		}
    
    		if totalSize > 0 && written == totalSize {
    			// we have written the entire stream, return right here.
    			return written, nil
    		}
    
    		if eof {
    			// We reached EOF prematurely but we did not write everything
    			// that we promised that we would write.
    			if totalSize > 0 && written != totalSize {
    				return written, io.ErrUnexpectedEOF
    			}
    			return written, nil
    		}
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. src/net/url/url.go

    			// that too.
    			return c == '@' || c == '/' || c == '?' || c == ':'
    
    		case encodeQueryComponent: // §3.4
    			// The RFC reserves (so we must escape) everything.
    			return true
    
    		case encodeFragment: // §4.1
    			// The RFC text is silent but the grammar allows
    			// everything, so escape nothing.
    			return false
    		}
    	}
    
    	if mode == encodeFragment {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  6. src/crypto/rsa/rsa.go

    		if err != nil {
    			// Unset previous values, so we either have everything or nothing
    			priv.Precomputed.n = nil
    			return
    		}
    		priv.Precomputed.q, err = bigmod.NewModulusFromBig(priv.Primes[1])
    		if err != nil {
    			// Unset previous values, so we either have everything or nothing
    			priv.Precomputed.n, priv.Precomputed.p = nil, nil
    			return
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/pv_controller_base.go

    func (ctrl *PersistentVolumeController) initializeCaches(logger klog.Logger, volumeLister corelisters.PersistentVolumeLister, claimLister corelisters.PersistentVolumeClaimLister) {
    	volumeList, err := volumeLister.List(labels.Everything())
    	if err != nil {
    		logger.Error(err, "PersistentVolumeController can't initialize caches")
    		return
    	}
    	for _, volume := range volumeList {
    		volumeClone := volume.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_volumes.go

    			}
    		}
    
    		// Rmdir the pod dir, which should be empty if everything above was successful
    		klog.V(3).InfoS("Orphaned pod found, removing", "podUID", uid)
    		if err := syscall.Rmdir(podDir); err != nil {
    			cleanupFailed = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/rbac/v1/types.go

    	// +optional
    	// +listType=atomic
    	Resources []string `json:"resources,omitempty" protobuf:"bytes,3,rep,name=resources"`
    	// ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.
    	// +optional
    	// +listType=atomic
    	ResourceNames []string `json:"resourceNames,omitempty" protobuf:"bytes,4,rep,name=resourceNames"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. src/runtime/stack.go

    		// released channel locks, so other goroutines could
    		// be writing to gp's stack. Find the highest such
    		// pointer so we can handle everything there and below
    		// carefully. (This shouldn't be far from the bottom
    		// of the stack, so there's little cost in handling
    		// everything below it carefully.)
    		adjinfo.sghi = findsghi(gp, old)
    
    		// Synchronize with channel ops and copy the part of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
Back to top