Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for uint64_t (0.23 sec)

  1. tensorflow/c/c_api.cc

    TF_DEVICELIST_METHOD(const char*, TF_DeviceListType, device_type().c_str(),
                         nullptr);
    TF_DEVICELIST_METHOD(int64_t, TF_DeviceListMemoryBytes, memory_limit(), -1);
    TF_DEVICELIST_METHOD(uint64_t, TF_DeviceListIncarnation, incarnation(), 0);
    
    #undef TF_DEVICELIST_METHOD
    
    }  // end extern "C"
    
    // --------------------------------------------------------------------------
    // New Graph and Session API
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
  2. api/go1.3.txt

    pkg debug/pe, type OptionalHeader64 struct, SizeOfHeapCommit uint64
    pkg debug/pe, type OptionalHeader64 struct, SizeOfHeapReserve uint64
    pkg debug/pe, type OptionalHeader64 struct, SizeOfImage uint32
    pkg debug/pe, type OptionalHeader64 struct, SizeOfInitializedData uint32
    pkg debug/pe, type OptionalHeader64 struct, SizeOfStackCommit uint64
    pkg debug/pe, type OptionalHeader64 struct, SizeOfStackReserve uint64
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jun 02 02:45:00 GMT 2014
    - 117K bytes
    - Viewed (0)
  3. cmd/metrics-v2.go

    		})
    
    		var (
    			clusterSize               uint64
    			clusterBuckets            uint64
    			clusterObjectsCount       uint64
    			clusterVersionsCount      uint64
    			clusterDeleteMarkersCount uint64
    		)
    
    		clusterObjectSizesHistogram := map[string]uint64{}
    		clusterVersionsHistogram := map[string]uint64{}
    		for _, usage := range dataUsageInfo.BucketsUsage {
    			clusterBuckets++
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
  4. cmd/admin-handlers.go

    	SQSARN       []string `json:"sqsARN"`
    }
    
    // serverConnStats holds transferred bytes from/to the server
    type serverConnStats struct {
    	internodeInputBytes  uint64
    	internodeOutputBytes uint64
    	s3InputBytes         uint64
    	s3OutputBytes        uint64
    }
    
    // ServerHTTPAPIStats holds total number of HTTP operations from/to the server,
    // including the average duration the call was spent.
    type ServerHTTPAPIStats struct {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 29 17:39:04 GMT 2024
    - 97.8K bytes
    - Viewed (2)
  5. cmd/bucket-replication.go

    	h := xxh3.HashString(bucket + object)
    	p.mu.RLock()
    	defer p.mu.RUnlock()
    	if len(p.workers) == 0 {
    		return nil
    	}
    	return p.workers[h%uint64(len(p.workers))]
    }
    
    func (p *ReplicationPool) queueReplicaTask(ri ReplicateObjectInfo) {
    	if p == nil {
    		return
    	}
    	// if object is large, queue it to a static set of large workers
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  6. doc/go1.17_spec.html

    // A struct corresponding to a TimeStamp protocol buffer.
    // The tag strings define the protocol buffer field numbers;
    // they follow the convention outlined by the reflect package.
    struct {
    	microsec  uint64 `protobuf:"1"`
    	serverIP6 uint64 `protobuf:"2"`
    }
    </pre>
    
    <h3 id="Pointer_types">Pointer types</h3>
    
    <p>
    A pointer type denotes the set of all pointers to <a href="#Variables">variables</a> of a given
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  7. cmd/storage-datatypes_gen.go

    				return
    			}
    			if z.APICalls == nil {
    				z.APICalls = make(map[string]uint64, zb0003)
    			} else if len(z.APICalls) > 0 {
    				for key := range z.APICalls {
    					delete(z.APICalls, key)
    				}
    			}
    			for zb0003 > 0 {
    				zb0003--
    				var za0003 string
    				var za0004 uint64
    				za0003, err = dc.ReadString()
    				if err != nil {
    					err = msgp.WrapError(err, "APICalls")
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 23 17:15:52 GMT 2024
    - 127.5K bytes
    - Viewed (0)
Back to top