Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 781 for beust (0.04 sec)

  1. src/image/png/writer.go

    		sum += abs8(cdat0[i])
    		if sum >= best {
    			break
    		}
    	}
    	if sum < best {
    		best = sum
    		filter = ftNone
    	}
    
    	// The sub filter.
    	sum = 0
    	for i := 0; i < bpp; i++ {
    		cdat1[i] = cdat0[i]
    		sum += abs8(cdat1[i])
    	}
    	for i := bpp; i < n; i++ {
    		cdat1[i] = cdat0[i] - cdat0[i-bpp]
    		sum += abs8(cdat1[i])
    		if sum >= best {
    			break
    		}
    	}
    	if sum < best {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. 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)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/fixture/TestNGCoverage.groovy

        private static final String BEFORE_BROKEN_PRESERVE_ORDER = '6.1.1' // Latest version before introduction of cbeust/testng#639 bug
        private static final String FIXED_BROKEN_PRESERVE_ORDER = '6.9.4'  // Fixes cbeust/testng#639 for preserve-order
    
        private static final Set<String> VERSIONS = [
            '5.12.1', // Newest version without TestNG#setConfigFailurePolicy method (Added in 5.13)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4K 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. 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)
  8. 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)
  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