Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 95 for lasta (0.19 sec)

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

    		listRoots: func(rs *Requirements) (roots []string) {
    			updateMatches(rs, nil)
    			for _, m := range matches {
    				roots = append(roots, m.Pkgs...)
    			}
    			return roots
    		},
    	})
    
    	// One last pass to finalize wildcards.
    	updateMatches(ld.requirements, ld)
    
    	// List errors in matching patterns (such as directory permission
    	// errors for wildcard patterns).
    	if !ld.SilencePackageErrors {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. src/time/time_test.go

    }{
    	{2011, 1, 31},  // January, first month, 31 days
    	{2011, 2, 28},  // February, non-leap year, 28 days
    	{2012, 2, 29},  // February, leap year, 29 days
    	{2011, 6, 30},  // June, 30 days
    	{2011, 12, 31}, // December, last month, 31 days
    }
    
    func TestDaysIn(t *testing.T) {
    	// The daysIn function is not exported.
    	// Test the daysIn function via the `var DaysIn = daysIn`
    	// statement in the internal_test.go file.
    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. src/internal/trace/order.go

    		q.buf = make([]T, 2)
    		return
    	}
    
    	// Create new buf and copy data over.
    	newBuf := make([]T, len(q.buf)*2)
    	pivot := q.start % len(q.buf)
    	first, last := q.buf[pivot:], q.buf[:pivot]
    	copy(newBuf[:len(first)], first)
    	copy(newBuf[len(first):], last)
    
    	// Update the queue state.
    	q.start = 0
    	q.end = len(q.buf)
    	q.buf = newBuf
    }
    
    // pop removes an event from the front of the queue. If the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  4. src/os/os_test.go

    			errormsg := fmt.Sprintf("AccessTime mismatch with values ATime:%q-MTime:%q\ngot:  %q\nwant: %q", tt.aTime, tt.mTime, got, want)
    			switch runtime.GOOS {
    			case "plan9":
    				// Mtime is the time of the last change of
    				// content.  Similarly, atime is set whenever
    				// the contents are accessed; also, it is set
    				// whenever mtime is set.
    			case "windows":
    				t.Error(errormsg)
    			default: // unix's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  5. src/runtime/mbitmap.go

    			tp.elem += tp.typ.Size_
    			tp.addr = tp.elem
    		} else {
    			tp.addr += ptrBits * goarch.PtrSize
    		}
    
    		// Check if we've exceeded the limit with the last update.
    		if tp.addr >= limit {
    			return typePointers{}, 0
    		}
    
    		// Grab more bits and try again.
    		tp.mask = readUintptr(addb(tp.typ.GCData, (tp.addr-tp.elem)/goarch.PtrSize/8))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/proxier.go

    type Proxier struct {
    	// the ipfamily on which this proxy is operating on.
    	ipFamily v1.IPFamily
    	// endpointsChanges and serviceChanges contains all changes to endpoints and
    	// services that happened since last syncProxyRules call. For a single object,
    	// changes are accumulated, i.e. previous is state from before all of them,
    	// current is state after applying all of those.
    	endpointsChanges *proxy.EndpointsChangeTracker
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    			if event.Type == watch.Bookmark {
    				if !expectedBookmarks {
    					t.Fatalf("Unexpected bookmark events received")
    				}
    
    				if rv < lastObservedRV {
    					t.Errorf("Unexpected bookmark event resource version %v (last %v)", rv, lastObservedRV)
    				}
    				return
    			}
    			lastObservedRV = rv
    		case <-timeoutCh:
    			if expectedBookmarks {
    				t.Fatal("Unexpected timeout to receive a bookmark event")
    			}
    			return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context.go

    	totalVirtualServices = monitoring.NewGauge(
    		"pilot_virt_services",
    		"Total virtual services known to pilot.",
    	)
    
    	// LastPushStatus preserves the metrics and data collected during lasts global push.
    	// It can be used by debugging tools to inspect the push event. It will be reset after each push with the
    	// new version.
    	LastPushStatus *PushContext
    	// LastPushMutex will protect the LastPushStatus
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/SetsTest.java

                    new TestStringSetGenerator() {
                      @Override
                      protected Set<String> create(String[] elements) {
                        int size = elements.length;
                        // Remove last element, if size > 1
                        Set<String> set1 =
                            (size > 1)
                                ? Sets.newHashSet(Arrays.asList(elements).subList(0, size - 1))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

     * <li>For each mutable property as set method is generated.</li>
     * <li>For each method whose last parameter is an {@link org.gradle.api.Action}, an override is generated that accepts a {@link groovy.lang.Closure} instead.</li>
     * <li>Coercion from string to enum property is mixed in.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
Back to top