Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 73 for lasta (2.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    		if c != '\t' {
    			break
    		}
    		prefix = append(prefix, byte('\t'))
    	}
    	// Remove prefix from all tabs, fail otherwise.
    	for i := range lines {
    		line := lines[i]
    		// It's OK for the last line to be blank (trailing \n)
    		if i == len(lines)-1 && len(line) <= len(prefix) && bytes.TrimSpace(line) == nil {
    			lines[i] = []byte{}
    			break
    		}
    		if !bytes.HasPrefix(line, prefix) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  8. cmd/erasure-healing_test.go

    			er := z.serverPools[0].getHashedSet(object)
    
    			disks := er.getDisks()
    			distribution := hashOrder(pathJoin(bucket, object), nDisks)
    			shuffledDisks := shuffleDisks(disks, distribution)
    
    			// remove last data shard
    			err = removeAll(pathJoin(shuffledDisks[11].String(), bucket, object))
    			if err != nil {
    				t.Fatalf("Failed to delete a file - %v", err)
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/lib.go

    		argv = append(argv, fmt.Sprintf("-Wl,--minor-subsystem-version=%d", PeMinimumTargetMinorVersion))
    	case objabi.Haix:
    		argv = append(argv, "-pthread")
    		// prevent ld to reorder .text functions to keep the same
    		// first/last functions for moduledata.
    		argv = append(argv, "-Wl,-bnoobjreorder")
    		// mcmodel=large is needed for every gcc generated files, but
    		// ld still need -bbigtoc in order to allow larger TOC.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  10. pkg/proxy/nftables/proxier.go

    func (proxier *Proxier) SyncLoop() {
    	// Update healthz timestamp at beginning in case Sync() never succeeds.
    	if proxier.healthzServer != nil {
    		proxier.healthzServer.Updated(proxier.ipFamily)
    	}
    
    	// synthesize "last change queued" time as the informers are syncing.
    	metrics.SyncProxyRulesLastQueuedTimestamp.SetToCurrentTime()
    	proxier.syncRunner.Loop(wait.NeverStop)
    }
    
    func (proxier *Proxier) setInitialized(value bool) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
Back to top