Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Rodney (0.1 sec)

  1. src/cmd/go/internal/modload/init.go

    				// actually selected.
    				r := resolveReplacement(m)
    				keep[modkey(r)] = true
    			}
    		})
    
    		if which == addBuildListZipSums {
    			for _, m := range mg.BuildList() {
    				r := resolveReplacement(m)
    				if keepModSumsForZipSums {
    					keep[modkey(r)] = true // we need the go version from the go.mod file to do anything useful with the zipfile
    				}
    				keep[r] = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  2. src/time/time_test.go

    		}(i)
    	}
    	wg.Wait()
    }
    
    func TestTimeIsDST(t *testing.T) {
    	undo := DisablePlatformSources()
    	defer undo()
    
    	tzWithDST, err := LoadLocation("Australia/Sydney")
    	if err != nil {
    		t.Fatalf("could not load tz 'Australia/Sydney': %v", err)
    	}
    	tzWithoutDST, err := LoadLocation("Australia/Brisbane")
    	if err != nil {
    		t.Fatalf("could not load tz 'Australia/Brisbane': %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue.go

    // is found in the map. It returns nil otherwise.
    func (u *UnschedulablePods) get(pod *v1.Pod) *framework.QueuedPodInfo {
    	podKey := u.keyFunc(pod)
    	if pInfo, exists := u.podInfoMap[podKey]; exists {
    		return pInfo
    	}
    	return nil
    }
    
    // clear removes all the entries from the unschedulable podInfoMap.
    func (u *UnschedulablePods) clear() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
Back to top