Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 476 for especially (0.15 sec)

  1. src/go/doc/comment/testdata/doclink.txt

    See also the [comment] package,
    especially [comment.Doc] and [comment.Parser.Parse].
    -- gofmt --
    In this package, see [Doc] and [Parser.Parse].
    There is no [Undef] or [Undef.Method].
    See also the [comment] package,
    especially [comment.Doc] and [comment.Parser.Parse].
    -- text --
    In this package, see Doc and Parser.Parse. There is no [Undef] or
    [Undef.Method]. See also the comment package, especially comment.Doc and
    comment.Parser.Parse.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  2. test/fixedbugs/issue10486.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 10486.
    // Check stack walk during div by zero fault,
    // especially on software divide systems.
    
    package main
    
    import "runtime"
    
    var A, B int
    
    func divZero() int {
    	defer func() {
    		if p := recover(); p != nil {
    			var pcs [512]uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 518 bytes
    - Viewed (0)
  3. test/strength.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Generate test of strength reduction for multiplications
    // with constants. Especially useful for amd64/386.
    
    package main
    
    import "fmt"
    
    func testMul(fact, bits int) string {
    	n := fmt.Sprintf("testMul_%d_%d", fact, bits)
    	fmt.Printf("func %s(s int%d) {\n", n, bits)
    
    	want := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 08 17:28:20 UTC 2019
    - 1K bytes
    - Viewed (0)
  4. releasenotes/notes/new_lb_algorithm_default.yaml

    kind: feature
    area: traffic-management
    
    releaseNotes:
      - |
        **Updated** Istio's default load balancing algorithm from `ROUND_ROBIN` to `LEAST_REQUEST`.
        The `ROUND_ROBIN` algorithm can lead to overburdened endpoints, especially when weights
        are used. The `LEAST_REQUEST` algorithm, distributes more evenly across and is far less
        likely to overburden endpoints. A number of experiments (by both the Istio and
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 09 20:55:01 UTC 2022
    - 856 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/list_overlay.txt

    # TODO(#39958): assembly files, C files, files that require cgo preprocessing
    
    -- want-list.txt --
    m
    m/dir
    m/dir2
    m/dir3
    -- go.mod --
    // TODO(#39958): Support and test overlays including go.mod itself (especially if mod=readonly)
    module m
    
    go 1.16
    
    -- dir2/h.go --
    package dir2
    
    -- dir3/good.go --
    package dir3
    -- dir3/bad.go --
    // no package statement
    -- overlay.json --
    {
        "Replace": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 12 21:13:04 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/DevelocityPluginUnsafeConfigurationService.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.util.function.Supplier;
    
    /**
     * Service to allow the Develocity plugin to do things considered "Unsafe" during configuration.
     * <p>
     * This is currently especially for ignoring configuration inputs that are handled differently in the
     * Develocity plugin.
     */
    @ServiceScope(Scope.BuildTree.class)
    public interface DevelocityPluginUnsafeConfigurationService {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/stablehlo/stablehlo.py

    This setup only exports the the StableHLO Portable C++ APIs, which have
    signatures that do not rely on MLIR classes.
    
    Exporting all of MLIR Python bindings to TF OSS has high maintenance
    implications, especially given the frequency that TF updates the revision of
    LLVM used.
    """
    
    # pylint: disable=wildcard-import
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 16 19:48:21 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. src/cmd/internal/bio/buf_mmap.go

    	if runtime.GOOS == "linux" {
    		mmapLimit = 30000
    	}
    }
    
    func (r *Reader) sliceOS(length uint64) ([]byte, bool) {
    	// For small slices, don't bother with the overhead of a
    	// mapping, especially since we have no way to unmap it.
    	const threshold = 16 << 10
    	if length < threshold {
    		return nil, false
    	}
    
    	// Have we reached the mmap limit?
    	if atomic.AddInt32(&mmapLimit, -1) < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:20:31 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/testing_coverage.txt

    go test -c -o t.exe -cover
    exec ./t.exe
    
    -- go.mod --
    module hello
    
    go 1.20
    -- hello.go --
    package hello
    
    func Hello() {
    	println("hello")
    }
    
    // contents not especially interesting, just need some code
    func foo(n int) int {
    	t := 0
    	for i := 0; i < n; i++ {
    		for j := 0; j < i; j++ {
    			t += i ^ j
    			if t == 1010101 {
    				break
    			}
    		}
    	}
    	return t
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:37:31 UTC 2023
    - 941 bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/plugin-exec-merging/wo-plugin-mgmt/sub/pom.xml

      </parent>
    
      <artifactId>child</artifactId>
    
      <name>Maven Integration Test :: MNG-3938</name>
      <description>
        Test that plugin executions with the same id are merged during inheritance, especially executions using the
        default id, regardless whether the id is given explicitly by the user or implicitly assumed from defaults.
      </description>
    
      <build>
        <plugins>
          <plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.9K bytes
    - Viewed (0)
Back to top