Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 118 for Sitemap (0.27 sec)

  1. src/runtime/mgcmark.go

    	// gcw.dispose will flush any remaining work to scanWork.
    
    	return workFlushed + gcw.heapScanWork
    }
    
    // scanblock scans b as scanobject would, but using an explicit
    // pointer bitmap instead of the heap bitmap.
    //
    // This is used to scan non-heap roots, so it does not update
    // gcw.bytesMarked or gcw.heapScanWork.
    //
    // If stk != nil, possible stack pointers are also reported to stk.putPtr.
    //
    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. src/runtime/mgcscavenge_test.go

    		}
    		for i := 0; i < 1000; i++ {
    			// Try a pseudo-random numbers.
    			check(rand.Uint64(), m)
    
    			if m > 1 {
    				// For m != 1, let's construct a slightly more interesting
    				// random test. Generate a bitmap which is either 0 or
    				// randomly set bits for each m-aligned group of m bits.
    				val := uint64(0)
    				for n := uint(0); n < 64; n += m {
    					// For each group of m bits, flip a coin:
    					// * Leave them as zero.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/route/address.go

    		case *Inet6Addr:
    			_, ll := a.lenAndSpace()
    			l += ll
    		case *DefaultAddr:
    			_, ll := a.lenAndSpace()
    			l += ll
    		}
    	}
    	return l
    }
    
    // marshalAddrs marshals as and returns a bitmap indicating which
    // address is stored in b.
    func marshalAddrs(b []byte, as []Addr) (uint, error) {
    	var attrs uint
    	for i, a := range as {
    		switch a := a.(type) {
    		case *LinkAddr:
    			l, err := a.marshal(b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/pgen.go

    	}
    
    	// Sort used before unused (so AllocFrame can truncate unused
    	// variables).
    	if a.Used() != b.Used() {
    		return a.Used()
    	}
    
    	// Sort pointer-typed before non-pointer types.
    	// Keeps the stack's GC bitmap compact.
    	ap := a.Type().HasPointers()
    	bp := b.Type().HasPointers()
    	if ap != bp {
    		return ap
    	}
    
    	// Group variables that need zeroing, so we can efficiently zero
    	// them altogether.
    	ap = a.Needzero()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/HashBiMap.java

       */
      @GwtIncompatible // java.io.ObjectOutputStream
      @J2ktIncompatible
      private void writeObject(ObjectOutputStream stream) throws IOException {
        stream.defaultWriteObject();
        Serialization.writeMap(this, stream);
      }
    
      @GwtIncompatible // java.io.ObjectInputStream
      @J2ktIncompatible
      private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  6. docs/en/docs/release-notes.md

        * Updated database docs [SQL (Relational) Databases: Main **FastAPI** app](https://fastapi.tiangolo.com/tutorial/sql-databases/#main-fastapi-app).
        * PR [#595](https://github.com/tiangolo/fastapi/pull/595).
    * Fix `sitemap.xml` in website. PR [#598](https://github.com/tiangolo/fastapi/pull/598) by [@samuelcolvin](https://github.com/samuelcolvin).
    
    ## 0.41.0
    
    * Upgrade required Starlette to `0.12.9`, the new range is `>=0.12.9,<=0.12.9`.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  7. test-site/activator-launch-1.3.2.jar

    transient int tableSize; private transient int threshold; private transient int[] sizemap; private transient int seedvalue; public final int _loadFactor(); public final void _loadFactor_$eq(int); public final Object[] table(); public final void table_$eq(Object[]); public final int tableSize(); public final void tableSize_$eq(int); public final int threshold(); public final void threshold_$eq(int); public final int[] sizemap(); public final void sizemap_$eq(int[]); public final int seedvalue(); public...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
  8. pkg/proxy/ipvs/ipset/ipset.go

    		if err := validateHashFamily(set.HashFamily); err != nil {
    			return err
    		}
    	}
    	// check set type
    	if err := validateIPSetType(set.SetType); err != nil {
    		return err
    	}
    	// check port range for bitmap type set
    	if set.SetType == BitmapPort {
    		if err := validatePortRange(set.PortRange); err != nil {
    			return err
    		}
    	}
    	// check hash size value of ipset
    	if set.HashSize <= 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/walk/complit.go

    	return n
    }
    
    func isSimpleName(nn ir.Node) bool {
    	if nn.Op() != ir.ONAME || ir.IsBlank(nn) {
    		return false
    	}
    	n := nn.(*ir.Name)
    	return n.OnStack()
    }
    
    // initGenType is a bitmap indicating the types of generation that will occur for a static value.
    type initGenType uint8
    
    const (
    	initDynamic initGenType = 1 << iota // contains some dynamic values, for which init code will be generated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:03:54 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  10. src/runtime/metrics.go

    	gcStatsDep                  // corresponds to gcStatsAggregate
    	numStatsDeps
    )
    
    // statDepSet represents a set of statDeps.
    //
    // Under the hood, it's a bitmap.
    type statDepSet [1]uint64
    
    // makeStatDepSet creates a new statDepSet from a list of statDeps.
    func makeStatDepSet(deps ...statDep) statDepSet {
    	var s statDepSet
    	for _, d := range deps {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top