Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 395 for subTable (0.22 sec)

  1. subprojects/core/src/main/java/org/gradle/initialization/GradleApiSpecProvider.java

    import com.google.common.collect.ImmutableSet;
    
    import java.util.Set;
    
    /**
     * Extension point for Gradle modules to extend the set of packages and
     * resource prefixes exported by the Gradle API ClassLoader.
     *
     * A SPI suitable for use with Java's {@link java.util.ServiceLoader}.
     */
    public interface GradleApiSpecProvider {
    
        Spec get();
    
        interface Spec {
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 29 12:18:55 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  2. src/testing/testing_windows.go

    	}
    	return false
    }
    
    // highPrecisionTime represents a single point in time with query performance counter.
    // time.Time on Windows has low system granularity, which is not suitable for
    // measuring short time intervals.
    //
    // TODO: If Windows runtime implements high resolution timing then highPrecisionTime
    // can be removed.
    type highPrecisionTime struct {
    	now int64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/services/LoggingServiceRegistry.java

        protected final OutputEventListenerManager outputEventListenerManager = new OutputEventListenerManager(renderer);
    
        /**
         * Creates a set of logging services which are suitable to use globally in a process. In particular:
         *
         * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/types/nodename.go

    //	Hostname, and thus it makes sense also to use it as the Node.Name.  But that is GCE specific, and it is up
    //	to the cloudprovider how to do this mapping.
    //
    //	For AWS, the InstanceID is not yet suitable for use as a Node.Name, so we actually use the
    //	PrivateDnsName for the Node.Name.  And this is _not_ always the same as the hostname: if
    //	we are using a custom DHCP domain it won't be.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v1/tf_dialect_to_executor.h

    // for replication and parallel execution ops, which may slow performance.
    // Prefer to use the v2 of this API.
    //
    // This also converts the Tensorflow Dialect MLIR into the Tensorflow Executor
    // dialect that is suitable to be exported to GraphDef. Graph -> MLIR -> Graph
    // is not perfectly round trippable, so this API will attempt to make the module
    // exportable and verify some properties of the Tensorflow Executor MLIR that
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 11 18:45:46 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/api/v1/cluster_tf.h

    #include "tensorflow/core/lib/core/status.h"
    
    namespace tensorflow {
    namespace tf2xla {
    namespace v1 {
    
    // Run all the passes involved in transforming the graph before execution so
    // that it is suitable for targeting devices when called via the TF1 Session
    // API.
    // These transformations take as input a Tensorflow Graph as an MLIR Module
    // and transforms the module in place to cluster the given ops for compilation
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 14:08:41 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/net/HostSpecifier.java

    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import java.net.InetAddress;
    import java.text.ParseException;
    import javax.annotation.CheckForNull;
    
    /**
     * A syntactically valid host specifier, suitable for use in a URI. This may be either a numeric IP
     * address in IPv4 or IPv6 notation, or a domain name.
     *
     * <p>Because this class is intended to represent host specifiers which can reasonably be used in a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 05 09:18:40 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. src/compress/bzip2/move_to_front.go

    package bzip2
    
    // moveToFrontDecoder implements a move-to-front list. Such a list is an
    // efficient way to transform a string with repeating elements into one with
    // many small valued numbers, which is suitable for entropy encoding. It works
    // by starting with an initial list of symbols and references symbols by their
    // index into that list. When a symbol is referenced, it's moved to the front
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.8K bytes
    - Viewed (0)
  9. lib/time/mkzip.go

    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    // Mkzip writes a zoneinfo.zip with the content of the current directory
    // and its subdirectories, with no compression, suitable for package time.
    //
    // Usage:
    //
    //	go run ../../mkzip.go ../../zoneinfo.zip
    //
    // We use this program instead of 'zip -0 -r ../../zoneinfo.zip *' to get
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:32:07 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/tac/transforms/device_transform_nnapi.cc

      llvm::StringRef getArgument() const final {
        return "tfl-device-transform-nnapi";
      }
      llvm::StringRef getDescription() const final {
        return "Suitable transformation for nnapi only.";
      }
      void getDependentDialects(DialectRegistry& registry) const override {
        registry.insert<TF::TensorFlowDialect>();
      }
      void runOnOperation() override;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 18:43:51 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top