Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 766 for AbTest (0.12 sec)

  1. src/cmd/go/internal/modcmd/why.go

    			}
    		}
    		sep := ""
    		for _, m := range mods {
    			best := ""
    			bestDepth := 1000000000
    			for _, path := range byModule[m.Path] {
    				d := modload.WhyDepth(path)
    				if d > 0 && d < bestDepth {
    					best = path
    					bestDepth = d
    				}
    			}
    			why := modload.Why(best)
    			if why == "" {
    				vendoring := ""
    				if *whyVendor {
    					vendoring = " to vendor"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 21:32:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. src/html/template/transition_test.go

    	r := struct {
    		Name, Gift string
    	}{"Aunt Mildred", "bone china tea set"}
    
    	h1 := "<textarea> Hello Hello Hello </textarea> "
    	h2 := "<textarea> <p> Dear {{.Name}},\n{{with .Gift}}Thank you for the lovely {{.}}. {{end}}\nBest wishes. </p>\n</textarea>"
    	html := strings.Repeat(h1, 100) + h2 + strings.Repeat(h1, 100) + h2
    
    	var buf bytes.Buffer
    	for i := 0; i < b.N; i++ {
    		tmpl := Must(New("foo").Parse(html))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 30 16:22:29 UTC 2015
    - 1.7K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/BasicProjectConfigurationProgressCrossVersionSpec.groovy

            file("buildSrc/b/src/main/java/B.java") << "public class B {}"
            file("buildSrc/b/src/test/java/BTest.java") << "public class BTest { @org.junit.Test public void ok() { } }"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. pilot/pkg/networking/telemetry/telemetry.go

    	// Note: This is best effort; this may be empty if generated by Sidecar config, and there may be multiple
    	// Services that make up the filter chain.
    	InstanceHostname host.Name
    	// KubernetesServiceNamespace is the namespace the service is defined in, if it is for a Kubernetes Service.
    	// Note: This is best effort; this may be empty if generated by Sidecar config, and there may be multiple
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 02:38:43 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. Development.md

    # Development best practices
    
    This is a collection of best practices for Gradle implementation.
    Should and should not do's.
    
    ## Error messages and suggestions
    
    Traditionally, if an error occurred, the error message and the possible solution were provided to the console via a single String in the corresponding exception.
    That meant possible solutions for Problems could be scattered all over the console output.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 22:54:40 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/ModelContainer.java

     * Encapsulates some mutable model, and provides synchronized access to the model.
     */
    public interface ModelContainer<T> {
    
        /**
         * Runs the given function to calculate a value from the public mutable model. Applies best effort synchronization to prevent concurrent access to a particular project from multiple threads.
         * However, it is currently easy for state to leak from one project to another so this is not a strong guarantee.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/lockedfile/lockedfile.go

    		if _, err := f.WriteAt(new[len(old):], int64(len(old))); err != nil {
    			// Make a best effort to remove the incomplete tail.
    			f.Truncate(int64(len(old)))
    			return err
    		}
    	}
    
    	// We're about to overwrite the old contents. In case of failure, make a best
    	// effort to roll back before we close the file.
    	defer func() {
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 5.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DynamicVersionResolver.java

            // A first pass to do local resolves only
            RepositoryChainModuleResolution best = findLatestModule(queue, failures, missing);
            if (hasCriticalFailure(failures)) {
                return null;
            }
            if (best != null) {
                return best;
            }
    
            // Nothing found - do a second pass
            queue.addAll(missing);
            missing.clear();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 17:41:33 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/install_modcacherw_issue64282.txt

    # Regression test for https://go.dev/issue/64282.
    #
    # 'go install' and 'go run' with pkg@version arguments should make
    # a best effort to parse flags relevant to downloading modules
    # (currently only -modcacherw) before actually downloading the module
    # to identify which toolchain version to use.
    #
    # However, the best-effort flag parsing should not interfere with
    # actual flag parsing if we don't switch toolchains. In particular,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 17:53:43 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. CONTRIBUTING.md

    API changes
    -----------
    
    We make changes to Guava's public [APIs][], including adding new APIs, very
    carefully. Because of this, if you're interested in seeing a new feature in
    Guava, the best approach is to create an [issue][] (or comment on an existing
    issue if there is one) requesting the feature and describing specific use cases
    for it.
    
    If the feature has merit, it will go through a thorough process of API design
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top