Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 143 for mainIvy (0.18 sec)

  1. src/runtime/rand_test.go

    //go:linkname fastrandn runtime.fastrandn
    func fastrandn(uint32) uint32
    
    //go:linkname fastrand64 runtime.fastrand64
    func fastrand64() uint64
    
    func TestLegacyFastrand(t *testing.T) {
    	// Testing mainly that the calls work at all,
    	// but check that all three don't return the same number (1 in 2^64 chance)
    	{
    		x, y, z := fastrand(), fastrand(), fastrand()
    		if x == y && y == z {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 23:44:31 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/pjrt_base_device.h

    #include "tensorflow/core/framework/device_base.h"
    
    namespace tensorflow {
    
    // tensorflow::PjRtBaseDevice replaces the deprecated tensorflow::XlaDevice.
    // This accelerator agnostic device is mainly used to store metadata.
    class PjRtBaseDevice : public LocalDevice {
     public:
      // Stores metadata about the PjRtBaseDevice.
      class Metadata {
       public:
        Metadata(const DeviceType& jit_device_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. pkg/kubelet/server/metrics/metrics.go

    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"method", "path", "server_type", "long_running"},
    	)
    	// VolumeStatCalDuration tracks the duration in seconds to calculate volume stats.
    	// this metric is mainly for comparison between fsquota monitoring and `du` for disk usage.
    	VolumeStatCalDuration = metrics.NewHistogramVec(
    		&metrics.HistogramOpts{
    			Subsystem:      kubeletSubsystem,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 14:33:37 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  4. tensorflow/c/eager/gradients_internal.h

    namespace tensorflow {
    namespace gradients {
    namespace internal {
    
    // Helper functions which delegate to `AbstractOperation`, update
    // the state of the ForwardOperation and call the tape as appropriate.
    // These APIs are mainly to facilitate testing and are subject to change.
    
    // Records the op name in the `ForwardOperation`.
    Status Reset(AbstractOperation*, const char* op, const char* raw_device_name,
                 ForwardOperation*);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Oct 24 11:27:35 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  5. src/cmd/covdata/merge.go

    // utility, which abstracts away most of the grubby details of reading
    // coverage data files. Most of the heavy lifting for merging is done
    // using apis from 'metaMerge' (this is mainly a wrapper around that
    // functionality).
    type mstate struct {
    	mm *metaMerge
    }
    
    func (m *mstate) Usage(msg string) {
    	if len(msg) > 0 {
    		fmt.Fprintf(os.Stderr, "error: %s\n", msg)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:37 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/testcerts/gencerts.sh

    # limitations under the License.
    
    set -e
    
    # gencerts.sh generates the certificates for the generic webhook admission plugin tests.
    #
    # It is not expected to be run often (there is no go generate rule), and mainly
    # exists for documentation purposes.
    
    CN_BASE="generic_webhook_admission_plugin_tests"
    
    cat > server.conf << EOF
    [req]
    req_extensions = v3_req
    distinguished_name = req_distinguished_name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 24 05:55:09 UTC 2019
    - 3.5K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/ProducerGuard.java

            return new StripedProducerGuard<T>();
        }
    
        /**
         * Creates a {@link ProducerGuard} which limits concurrency to a single factory at a time,
         * ignoring the key. This is mainly useful for testing.
         */
        public static <T> ProducerGuard<T> serial() {
            return new SerialProducerGuard<T>();
        }
    
        private ProducerGuard() {
    
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:31 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/saved_model/core/revived_types/revived_objects.h

        return it == objects_by_id_.end() ? nullptr : it->second;
      }
    
     private:
      std::vector<std::unique_ptr<T>> objects_;
      absl::flat_hash_map<int, T*> objects_by_id_;
    };
    
    // RevivedObjects is mainly used as a container for all the "state" owned by
    // SavedModel. It stores all non-"user object" nodes from a SavedModel
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 05 23:10:04 UTC 2020
    - 4K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/Source.java

    import static org.apache.maven.api.services.BaseRequest.nonNull;
    
    /**
     * Provides access to the contents of a source independently of the
     * backing store (e.g. file system, database, memory).
     * <p>
     * This is mainly used to parse files into objects such as
     * {@link org.apache.maven.api.Project},
     * {@link org.apache.maven.api.model.Model},
     * {@link org.apache.maven.api.settings.Settings}, or
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/gencerts.sh

    # limitations under the License.
    
    set -e
    
    # gencerts.sh generates the certificates for the webhook authz plugin tests.
    #
    # It is not expected to be run often (there is no go generate rule), and mainly
    # exists for documentation purposes.
    
    cat > server.conf << EOF
    [req]
    req_extensions = v3_req
    distinguished_name = req_distinguished_name
    [req_distinguished_name]
    [ v3_req ]
    basicConstraints = CA:FALSE
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 23 02:28:04 UTC 2019
    - 3.4K bytes
    - Viewed (0)
Back to top