Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 45 of 45 for someFile (0.26 sec)

  1. src/runtime/mbitmap.go

    			}
    		}
    
    		// Select the heap mask to return. We may not have a type mask.
    		mask = maskFromHeap
    
    		// Make sure we keep ep alive. We may have stopped referencing
    		// ep's data pointer sometime before this point and it's possible
    		// for that memory to get freed.
    		KeepAlive(ep)
    		return
    	}
    
    	// stack
    	if gp := getg(); gp.m.curg.stack.lo <= uintptr(p) && uintptr(p) < gp.m.curg.stack.hi {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller.go

    	pods, err := jm.podStore.Pods(j.Namespace).List(labels.Everything())
    	if err != nil {
    		return nil, err
    	}
    	// If any adoptions are attempted, we should first recheck for deletion
    	// with an uncached quorum read sometime after listing Pods (see #42639).
    	canAdoptFunc := controller.RecheckDeletionTimestamp(func(ctx context.Context) (metav1.Object, error) {
    		fresh, err := jm.kubeClient.BatchV1().Jobs(j.Namespace).Get(ctx, j.Name, metav1.GetOptions{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  3. cmd/xl-storage.go

    		s.RUnlock()
    		return diskID, nil
    	}
    	s.RUnlock()
    
    	fi, err := s.checkFormatJSON()
    	if err != nil {
    		return "", err
    	}
    
    	if xioutil.SameFile(fi, fileInfo) && diskID != "" {
    		s.Lock()
    		// If the file has not changed, just return the cached diskID information.
    		s.formatLastCheck = time.Now()
    		s.Unlock()
    		return diskID, nil
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

      udevadm control --reload-rules
      udevadm trigger
      udevadm settle
    
      # find uuid for actual_device
      local myuuid
      myuuid=$(find -L /dev/disk/by-uuid -maxdepth 1 -samefile /dev/"${actual_device}" -printf '%P')
      # myuuid should be the uuid of the device as found in /dev/disk/by-uuid/
      if [[ -z "${myuuid}" ]]; then
        echo "Failed to get a uuid for device ${actual_device} when mounting." >&2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. cmd/site-replication.go

    	for id, rl := range newRMap {
    		// if rule is already in original list update non tranisition details with latest
    		// else simply add to the map. This may happen if ILM expiry replication
    		// was disabled for sometime and rules were updated independently in different
    		// sites. Latest changes would get applied but merge only the non transition details
    		if existingRl, ok := rMap[id]; ok {
    			clonedRl := rl.CloneNonTransition()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
Back to top