Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for Change (0.16 sec)

  1. src/runtime/proc.go

    	}
    
    	// Before we drop our P, make a snapshot of the allp slice,
    	// which can change underfoot once we no longer block
    	// safe-points. We don't need to snapshot the contents because
    	// everything up to cap(allp) is immutable.
    	allpSnapshot := allp
    	// Also snapshot masks. Value changes are OK, but we can't allow
    	// len to change out from under us.
    	idlepMaskSnapshot := idlepMask
    	timerpMaskSnapshot := timerpMask
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	nsec := int64(ft.HighDateTime)<<32 + int64(ft.LowDateTime)
    	// change starting time to the Epoch (00:00:00 UTC, January 1, 1970)
    	nsec -= 116444736000000000
    	// convert into nanoseconds
    	nsec *= 100
    	return nsec
    }
    
    func NsecToFiletime(nsec int64) (ft Filetime) {
    	// convert into 100-nanosecond
    	nsec /= 100
    	// change starting time to January 1, 1601
    	nsec += 116444736000000000
    	// split into high / low
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    // the variable <NAME>, run 'go env <NAME>'. To change the default setting,
    // run 'go env -w <NAME>=<VALUE>'. Defaults changed using 'go env -w'
    // are recorded in a Go environment configuration file stored in the
    // per-user configuration directory, as reported by os.UserConfigDir.
    // The location of the configuration file can be changed by setting
    // the environment variable GOENV, and 'go env GOENV' prints the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/crypto/sha512/sha512_test.go

    	},
    	{
    		"3b59c5e64b0da7bfc18d7017bf458d90f2c83601ff1afc6263ac0993",
    		"It's a tiny change to the code and not completely disgusting. - Bob Manchek",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:17:08 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  5. src/net/http/server.go

    //
    // # Compatibility
    //
    // The pattern syntax and matching behavior of ServeMux changed significantly
    // in Go 1.22. To restore the old behavior, set the GODEBUG environment variable
    // to "httpmuxgo121=1". This setting is read once, at program startup; changes
    // during execution will be ignored.
    //
    // The backwards-incompatible changes include:
    //   - Wildcards are just ordinary literal path segments in 1.21.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. src/reflect/value.go

    // allocating a new variable as needed.
    func copyVal(typ *abi.Type, fl flag, ptr unsafe.Pointer) Value {
    	if typ.IfaceIndir() {
    		// Copy result so future changes to the map
    		// won't change the underlying value.
    		c := unsafe_New(typ)
    		typedmemmove(typ, c, ptr)
    		return Value{typ, c, fl | flagIndir}
    	}
    	return Value{typ, *(*unsafe.Pointer)(ptr), fl}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. src/database/sql/sql.go

    		case <-t.C:
    		case <-db.cleanerCh: // maxLifetime was changed or db was closed.
    		}
    
    		db.mu.Lock()
    
    		d = db.shortestIdleTimeLocked()
    		if db.closed || db.numOpen == 0 || d <= 0 {
    			db.cleanerCh = nil
    			db.mu.Unlock()
    			return
    		}
    
    		d, closing := db.connectionCleanerRunLocked(d)
    		db.mu.Unlock()
    		for _, c := range closing {
    			c.Close()
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/load/pkg.go

    			root.Error = err
    			root.Incomplete = true
    		}
    		if p1.Error == nil {
    			walk(p1)
    		}
    	}
    	for _, root := range roots {
    		walk(root)
    		for _, path := range root.TestImports {
    			walkTest(root, path)
    		}
    		for _, path := range root.XTestImports {
    			walkTest(root, path)
    		}
    	}
    	return all
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/data.go

    	n := int16(1)
    
    	for _, sect := range Segtext.Sections {
    		sect.Extnum = n
    		n++
    	}
    	for _, sect := range Segrodata.Sections {
    		sect.Extnum = n
    		n++
    	}
    	for _, sect := range Segrelrodata.Sections {
    		sect.Extnum = n
    		n++
    	}
    	for _, sect := range Segdata.Sections {
    		sect.Extnum = n
    		n++
    	}
    	for _, sect := range Segdwarf.Sections {
    		sect.Extnum = n
    		n++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	if skip(qs) {
    		return nil
    	}
    	changed := false
    	qualifiers := make([]AST, len(qs.Qualifiers))
    	for i, q := range qs.Qualifiers {
    		qc := q.Copy(fn, skip)
    		if qc == nil {
    			qualifiers[i] = q
    		} else {
    			qualifiers[i] = qc
    			changed = true
    		}
    	}
    	if !changed {
    		return fn(qs)
    	}
    	qs = &Qualifiers{Qualifiers: qualifiers}
    	if r := fn(qs); r != nil {
    		return r
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
Back to top