Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for Advance (0.56 sec)

  1. src/runtime/mgcmark.go

    	//
    	// In the tracer, this is just before we call gcAssistAlloc1
    	// *regardless* of whether tracing is enabled. This is because
    	// the tracer allows for tracing to begin (and advance
    	// generations) in the middle of a GC mark phase, so we need to
    	// record some state so that the tracer can pick it up to ensure
    	// a consistent trace result.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    				ResourceVersion: fmt.Sprintf("%d", i),
    			},
    		}
    	}
    
    	if err := cacher.watchCache.Add(makePod(1000)); err != nil {
    		t.Errorf("error: %v", err)
    	}
    	// Advance RV by 10.
    	startVersion := uint64(1010)
    
    	watcher, err := cacher.Watch(context.TODO(), "pods/ns/foo", storage.ListOptions{ResourceVersion: strconv.FormatUint(startVersion, 10), Predicate: storage.Everything})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modget/get.go

    		// after applying changes so far, not the initial build list.
    		// This is for two reasons:
    		//
    		// 	- The "-u" flag intentionally applies to transitive dependencies,
    		// 	  which may not be known or even resolved in advance of applying
    		// 	  other version changes.
    		//
    		// 	- The "-u" flag, unlike other arguments, does not cause version
    		// 	  conflicts with other queries. (The other query always wins.)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  4. src/runtime/mheap.go

    						// lock and we don't want to get stale
    						// pointers from the spans array.
    						inUseUnmarked = atomic.Load8(&inUse[i]) &^ marked[i]
    					}
    				}
    			}
    		}
    
    		// Advance.
    		pageIdx += uintptr(len(inUse) * 8)
    		n -= uintptr(len(inUse) * 8)
    	}
    	sweep.active.end(sl)
    	trace := traceAcquire()
    	if trace.ok() {
    		unlock(&h.lock)
    		// Account for pages scanned but not reclaimed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  5. src/reflect/type.go

    // The whySafe string is ignored, so that the function still inlines
    // as efficiently as p+x, but all call sites should use the string to
    // record why the addition is safe, which is to say why the addition
    // does not cause x to advance to the very end of p's allocation
    // and therefore point incorrectly at the next block in memory.
    //
    // add should be an internal detail (and is trivially copyable),
    // but widely used packages access it using linkname.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_messages.go

    func addUint64(b *cryptobyte.Builder, v uint64) {
    	b.AddUint32(uint32(v >> 32))
    	b.AddUint32(uint32(v))
    }
    
    // readUint64 decodes a big-endian, 64-bit value into out and advances over it.
    // It reports whether the read was successful.
    func readUint64(s *cryptobyte.String, out *uint64) bool {
    	var hi, lo uint32
    	if !s.ReadUint32(&hi) || !s.ReadUint32(&lo) {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. fastapi/param_functions.py

        Read more about it in the
        [FastAPI docs for Security](https://fastapi.tiangolo.com/tutorial/security/) and
        in the
        [FastAPI docs for OAuth2 scopes](https://fastapi.tiangolo.com/advanced/security/oauth2-scopes/).
    
        **Example**
    
        ```python
        from typing import Annotated
    
        from fastapi import Depends, FastAPI
    
        from .db import User
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/CacheBuilder.java

       * uncommon to specify {@code concurrencyLevel(1)} in order to achieve more deterministic eviction
       * behavior.
       *
       * <p>Note that future implementations may abandon segment locking in favor of more advanced
       * concurrency controls.
       *
       * @return this {@code CacheBuilder} instance (for chaining)
       * @throws IllegalArgumentException if {@code concurrencyLevel} is nonpositive
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

    import java.util.logging.Level;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * An abstract implementation of {@link ListenableFuture}, intended for advanced users only. More
     * common ways to create a {@code ListenableFuture} include instantiating a {@link SettableFuture},
     * submitting a task to a {@link ListeningExecutorService}, and deriving a {@code Future} from an
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  10. guava/src/com/google/common/util/concurrent/AbstractFuture.java

    import java.util.logging.Level;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * An abstract implementation of {@link ListenableFuture}, intended for advanced users only. More
     * common ways to create a {@code ListenableFuture} include instantiating a {@link SettableFuture},
     * submitting a task to a {@link ListeningExecutorService}, and deriving a {@code Future} from an
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
Back to top