Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 1,782 for better (0.12 sec)

  1. src/math/j1.go

    //         for x in (2,inf)
    //              j1(x) = sqrt(2/(pi*x))*(p1(x)*cos(x1)-q1(x)*sin(x1))
    //              y1(x) = sqrt(2/(pi*x))*(p1(x)*sin(x1)+q1(x)*cos(x1))
    //         where x1 = x-3*pi/4. It is better to compute sin(x1),cos(x1)
    //         as follow:
    //              cos(x1) =  cos(x)cos(3pi/4)+sin(x)sin(3pi/4)
    //                      =  1/sqrt(2) * (sin(x) - cos(x))
    //              sin(x1) =  sin(x)cos(3pi/4)-cos(x)sin(3pi/4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 13.3K bytes
    - Viewed (0)
  2. pkg/util/sets/set.go

    	result := New[T]()
    	for key := range s {
    		if !s2.Contains(key) {
    			result.Insert(key)
    		}
    	}
    	return result
    }
    
    // DifferenceInPlace similar to Difference, but has better performance.
    // Note: This function modifies s in place.
    func (s Set[T]) DifferenceInPlace(s2 Set[T]) Set[T] {
    	for key := range s {
    		if s2.Contains(key) {
    			delete(s, key)
    		}
    	}
    	return s
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/AbstractUserInputRenderer.java

            // This does leave a small window where some text may be captured prior to the prompt being fully displayed, however this is
            // better than doing things in the other order, where there will be a small window where text may not be captured after prompt is fully displayed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 05:02:18 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/language/match.go

    	if !beaten && m.origLang != origLang {
    		if m.origLang {
    			return
    		}
    		beaten = true
    	}
    
    	// We prefer if the pre-maximized region was specified and identical.
    	origReg := have.tag.RegionID == tag.RegionID && tag.RegionID != 0
    	if !beaten && m.origReg != origReg {
    		if m.origReg {
    			return
    		}
    		beaten = true
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

                                resolved = conflictResolver.resolveConflict(previous, node);
                            }
    
                            if (resolved == null) {
                                // TODO add better exception that can detail the two conflicting artifacts
                                ArtifactResolutionException are = new ArtifactResolutionException(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 36.7K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/internal/deprecation/DeprecatableConfiguration.java

     * <ul>
     *     <li>{@link #preventUsageMutation()}</li>
     *     <li>{@link #setCanBeDeclared(boolean)}</li>
     *     <li>{@link #isCanBeDeclared()}</li>
     * </ul>
     * These methods would be better suited for the base {@link Configuration} interface, or the (inaccessible from this project)
     * {@link org.gradle.api.internal.artifacts.configurations.ConfigurationInternal ConfigurationInternal}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 07 03:39:06 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  7. pkg/test/framework/features/README.md

    dashboard.
    
    To write a stub, simply create a test object and call NotImplementedYet, passing the label of any features this test should cover.  This test gap will now appear in our feature coverage dashboards, which give release managers a better understanding of what is and isn't tested in a given release.  If you are implementing a test stub with no immediate plans to implement the test, it's a best practice to create a tracking issue as well.  If your test stub uses a new feature constant,...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/dependencies/stub.go

    )
    
    var DryRunFilePath = env.Register("DRY_RUN_FILE_PATH", "", "If provided, StdoutStubDependencies will write the input from stdin to the given file.")
    
    // TODO BML replace DIY mocks/state with something better
    type DependenciesStub struct {
    	ExecutedNormally []string
    	ExecutedQuietly  []string
    	ExecutedStdin    []string
    	ExecutedAll      []string
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/hash/BloomFilterStrategies.java

     *
     * @author Dimitris Andreou
     * @author Kurt Alfred Kluever
     */
    @ElementTypesAreNonnullByDefault
    enum BloomFilterStrategies implements BloomFilter.Strategy {
      /**
       * See "Less Hashing, Same Performance: Building a Better Bloom Filter" by Adam Kirsch and Michael
       * Mitzenmacher. The paper argues that this trick doesn't significantly deteriorate the
       * performance of a Bloom filter (yet only needs two 32bit hash functions).
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/profile/legacy_java_profile.go

    	if b, locs, err = parseCPUSamples(b, parse, false, p); err != nil {
    		return nil, err
    	}
    
    	if err = parseJavaLocations(b, locs, p); err != nil {
    		return nil, err
    	}
    
    	// Strip out addresses for better merge.
    	if err = p.Aggregate(true, true, true, true, false, false); err != nil {
    		return nil, err
    	}
    
    	return p, nil
    }
    
    // parseJavaProfile returns a new profile from heapz or contentionz
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top