Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,782 for better (0.22 sec)

  1. guava/src/com/google/common/collect/Streams.java

       * stream is empty.
       *
       * <p>Equivalent to {@code stream.reduce((a, b) -> b)}, but may perform significantly better. This
       * method's runtime will be between O(log n) and O(n), performing better on <a
       * href="http://gee.cs.oswego.edu/dl/html/StreamParallelGuidance.html">efficiently splittable</a>
       * streams.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  2. pkg/kubectl/doc.go

    limitations under the License.
    */
    
    // Package kubectl provides the functions used by the kubectl command line tool
    // under k8s.io/kubernetes/cmd. The functions are kept in this package to better
    // support unit testing. The main() method for kubectl is only an entry point
    // and should contain no functionality.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 23 16:49:30 UTC 2017
    - 908 bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/WorkerThreadRegistry.java

         *
         * <p>Note that the caller must call {@link WorkerLeaseRegistry.WorkerLeaseCompletion#leaseFinish()} to mark the completion of the lease and to release the lease for other threads to use.
         *
         * <p>It is generally better to use {@link WorkerThreadRegistry#runAsWorkerThread(Runnable)} instead of this method.</p>
         */
        WorkerLeaseRegistry.WorkerLeaseCompletion startWorker();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/SignatureTree.java

                    // TODO better diagnostics reporting
                    throw new IllegalStateException("vararg overloads are not supported yet");
                }
                current = current.childrenByMatchEntry.computeIfAbsent(matchEntry, key -> new SignatureTree());
            }
            if (current.leaf != null) {
                // TODO better diagnostics reporting
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. src/crypto/internal/bigmod/nat_asm.go

    // unrolls loops. arm64 processes four words at a time.
    //
    // It's unclear why the assembly for all other architectures, as well as for
    // amd64 without ADX, perform better than the compiler output.
    // TODO(filippo): file cmd/compile performance issue.
    
    var supportADX = cpu.X86.HasADX && cpu.X86.HasBMI2
    
    //go:noescape
    func addMulVVW1024(z, x *uint, y uint) (c uint)
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 07:52:41 UTC 2023
    - 942 bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/mmap/mmap.go

    // on different platforms.
    package mmap
    
    import (
    	"os"
    )
    
    // The backing file is never closed, so Data
    // remains valid for the lifetime of the process.
    type Data struct {
    	// TODO(pjw): might be better to define versions of Data
    	// for the 3 specializations
    	f    *os.File
    	Data []byte
    	// Some windows magic
    	Windows interface{}
    }
    
    // Mmap maps the given file into memory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 21:40:49 UTC 2024
    - 1002 bytes
    - Viewed (0)
  7. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/ListenerService.java

    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Attached to a service implementation to indicate that the instance should be registered as a listener.
     *
     * <p>Generally, it is better to use {@link StatefulListener}, which is lazy and applies some validation to ensure no events are missed.
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.TYPE)
    @Inherited
    public @interface ListenerService {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/utils/topological_sort.cc

        }
    
        // Find the "best" operation to emit. We
        // (a) emit the terminator last.
        // (b) honor the priority function (as far as possible).
        // (c) preserve order within the ops of one dialect.
        auto better = [&](Operation* a, Operation* b) {
          if (a->hasTrait<OpTrait::IsTerminator>() !=
              b->hasTrait<OpTrait::IsTerminator>()) {
            return b->hasTrait<OpTrait::IsTerminator>();
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 08 17:01:11 UTC 2022
    - 5K bytes
    - Viewed (0)
  9. src/internal/bytealg/index_arm64.go

    // Copyright 2018 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 bytealg
    
    // Empirical data shows that using Index can get better
    // performance when len(s) <= 16.
    const MaxBruteForce = 16
    
    func init() {
    	// Optimize cases where the length of the substring is less than 32 bytes
    	MaxLen = 32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 05:45:33 UTC 2019
    - 706 bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/artifact/DependencyResolutionRequiredException.java

     * under the License.
     */
    package org.apache.maven.artifact;
    
    /**
     * Exception that occurs when an artifact file is used, but has not been resolved.
     *
     * TODO it may be better for artifact.getFile() to throw it - perhaps it is a runtime exception?
     */
    public class DependencyResolutionRequiredException extends Exception {
        public DependencyResolutionRequiredException(Artifact artifact) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top