Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 766 for AbTest (0.1 sec)

  1. src/cmd/vendor/golang.org/x/tools/cmd/bisect/go120.go

    	"os/exec"
    	"time"
    )
    
    func cmdInterrupt(cmd *exec.Cmd) {
    	cmd.Cancel = func() error {
    		// On timeout, send interrupt,
    		// in hopes of shutting down process tree.
    		// Ignore errors sending signal; it's all best effort
    		// and not even implemented on Windows.
    		// TODO(rsc): Maybe use a new process group and kill the whole group?
    		cmd.Process.Signal(os.Interrupt)
    		return nil
    	}
    	cmd.WaitDelay = 2 * time.Second
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:10 UTC 2023
    - 628 bytes
    - Viewed (0)
  2. src/runtime/pprof/pe.go

    // Copyright 2022 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.
    
    package pprof
    
    import "os"
    
    // peBuildID returns a best effort unique ID for the named executable.
    //
    // It would be wasteful to calculate the hash of the whole file,
    // instead use the binary name and the last modified time for the buildid.
    func peBuildID(file string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 20 00:18:04 UTC 2022
    - 536 bytes
    - Viewed (0)
  3. src/cmd/dist/notgo120.go

    // Building Go cmd/dist using /Users/rsc/sdk/go1.16. (go1.16 darwin/amd64)
    // found packages main (build.go) and building_Go_requires_Go_1_20_6_or_later (notgo120.go) in /Users/rsc/go/src/cmd/dist
    // %
    //
    // which is the best we can do under the circumstances.
    //
    // See go.dev/issue/44505 for more background on
    // why Go moved on from Go 1.4 for bootstrap.
    
    //go:build !go1.20
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 829 bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/attributes/AttributeDisambiguationRule.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.attributes;
    
    import org.gradle.api.Action;
    
    /**
     * A rule that selects the best value out of a set of candidates.
     *
     * @since 4.0
     * @param <T> The attribute value type.
     */
    public interface AttributeDisambiguationRule<T> extends Action<MultipleCandidatesDetails<T>> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 11 17:38:57 UTC 2022
    - 912 bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/main/java/org/gradle/platform/base/ToolChainRegistry.java

     * @param <P> the Platform type
     * @param <T> the ToolChain type
     */
    @Incubating
    public interface ToolChainRegistry<P extends Platform, T extends ToolChain> {
        /**
         * Returns the best tool chain to build for the target platform.
         */
        T getForPlatform(P targetPlatform);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1014 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/authoring_maintainable_build_scripts.adoc

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[authoring_maintainable_build_scripts]]
    = Best practices for authoring maintainable builds
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 761 bytes
    - Viewed (0)
  7. pkg/registry/core/service/portallocator/operation.go

    // Encapsulates the semantics of a port allocation 'transaction':
    // It is better to leak ports than to double-allocate them,
    // so we allocate immediately, but defer release.
    // On commit we best-effort release the deferred releases.
    // On rollback we best-effort release any allocations we did.
    //
    // Pattern for use:
    //
    //	op := StartPortAllocationOperation(...)
    //	defer op.Finish
    //	...
    //	write(updatedOwner)
    //
    // /  op.Commit()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  8. src/cmd/go/proxy_test.go

    				} else {
    					hash = findHash(m)
    				}
    				if strings.HasPrefix(hash, vers) || strings.HasPrefix(vers, hash) {
    					best = m.Version
    				}
    			}
    		}
    		if best != "" {
    			vers = best
    		}
    	}
    
    	a, err := readArchive(path, vers)
    	if err != nil {
    		if testing.Verbose() {
    			fmt.Fprintf(os.Stderr, "go proxy: no archive %s %s: %v\n", path, vers, err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 03 09:56:24 UTC 2023
    - 12K bytes
    - Viewed (0)
  9. samples/builder/README.md

    When updating images, increment the version for the image in the `tags` config.
    You will also want to update the sample YAMLs
    
    ## Building official images
    
    Set `HUB=docker.io/istio` for official image builds.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 928 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/readme-templates/common-summary.adoc.template

    == Publish a Build Scan
    
    The best way to learn more about what your build is doing behind the scenes, is to publish a link:https://scans.gradle.com[build scan].
    To do so, just run Gradle with the `--scan` flag.
    
    [listing.terminal.sample-command]
    ----
    \$ ./gradlew build --scan
    
    BUILD SUCCESSFUL in 0s
    ${tasksExecuted.raw} actionable tasks: ${tasksExecuted.raw} executed
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 997 bytes
    - Viewed (0)
Back to top