Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 215 for livable (0.09 sec)

  1. src/runtime/metrics_test.go

    	// is very heavy-weight and not easy to stop, so we could end up
    	// confusing the benchmarking framework for small b.N.
    	b.StopTimer()
    	stop()
    
    	// Disable the default */op metrics.
    	// ns/op doesn't mean anything because it's an average, but we
    	// have a sleep in our b.N loop above which skews this significantly.
    	b.ReportMetric(0, "ns/op")
    	b.ReportMetric(0, "B/op")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/switch.go

    	width := constant.BinaryOp(constant.BinaryOp(max, token.SUB, min), token.ADD, constant.MakeInt64(1))
    	limit := constant.MakeInt64(int64(len(cc)) * minDensity)
    	if constant.Compare(width, token.GTR, limit) {
    		// We disable jump tables if we use less than a minimum fraction of the entries.
    		// i.e. for switch x {case 0: case 1000: case 2000:} we don't want to use a jump table.
    		return false
    	}
    	jt := ir.NewJumpTableStmt(base.Pos, s.exprname)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  3. src/net/splice_linux_test.go

    	defer clientDown.Close()
    	defer serverDown.Close()
    
    	serverUp.Close()
    
    	// We'd like to call net.spliceFrom here and check the handled return
    	// value, but we disable splice on old Linux kernels.
    	//
    	// In that case, poll.Splice and net.spliceFrom return a non-nil error
    	// and handled == false. We'd ideally like to see handled == true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/init.go

    			base.Fatalf("go: modules disabled by GO111MODULE=off; see 'go help modules'")
    		}
    		mustUseModules = false
    		return
    	}
    
    	if err := fsys.Init(base.Cwd()); err != nil {
    		base.Fatal(err)
    	}
    
    	// Disable any prompting for passwords by Git.
    	// Only has an effect for 2.3.0 or later, but avoiding
    	// the prompt in earlier versions is just too hard.
    	// If user has explicitly set GIT_TERMINAL_PROMPT=1, keep
    	// prompting.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/obj6.go

    // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package x86
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/compile.go

    				p.addDump(valString)
    			default:
    				return fmt.Sprintf("Did not find a flag matching %s in -d=ssa/%s debug option", flag, phase)
    			}
    			if p.disabled && p.required {
    				return fmt.Sprintf("Cannot disable required SSA phase %s using -d=ssa/%s debug option", phase, phase)
    			}
    			passes[i] = p
    			matchedOne = true
    		}
    	}
    	if matchedOne {
    		return ""
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. src/runtime/gc_test.go

    	// is very heavy-weight and not easy to stop, so we could end up
    	// confusing the benchmarking framework for small b.N.
    	b.StopTimer()
    	stop()
    
    	// Disable the default */op metrics.
    	// ns/op doesn't mean anything because it's an average, but we
    	// have a sleep in our b.N loop above which skews this significantly.
    	b.ReportMetric(0, "ns/op")
    	b.ReportMetric(0, "B/op")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. src/encoding/base64/base64.go

    		}
    		e.decodeMap[encoder[i]] = uint8(i)
    	}
    	return e
    }
    
    // WithPadding creates a new encoding identical to enc except
    // with a specified padding character, or [NoPadding] to disable padding.
    // The padding character must not be '\r' or '\n',
    // must not be contained in the encoding's alphabet,
    // must not be negative, and must be a rune equal or below '\xff'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  9. src/runtime/mgcscavenge_test.go

    				{^uintptr(0), 0},
    			},
    			afterScav: map[ChunkIdx][]BitRange{
    				BaseChunkIdx:       {{0, PallocChunkPages}},
    				BaseChunkIdx + 0xe: {{0, PallocChunkPages}},
    			},
    		},
    	}
    	// Disable these tests on iOS since we have a small address space.
    	// See #46860.
    	if PageAlloc64Bit != 0 && goos.IsIos == 0 {
    		tests["ScavAllVeryDiscontiguous"] = setup{
    			beforeAlloc: map[ChunkIdx][]BitRange{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  10. src/runtime/extern.go

    GOTRACEBACK=crash is like “system” but crashes in an operating system-specific
    manner instead of exiting. For example, on Unix systems, the crash raises
    SIGABRT to trigger a core dump.
    GOTRACEBACK=wer is like “crash” but doesn't disable Windows Error Reporting (WER).
    For historical reasons, the GOTRACEBACK settings 0, 1, and 2 are synonyms for
    none, all, and system, respectively.
    The [runtime/debug.SetTraceback] function allows increasing the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top