Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,484 for Norman (0.18 sec)

  1. RELEASE.md

    `tf.keras`:
    
    Plain Text
    - Registered: 2023-11-28 12:39
    - Last Modified: 2023-11-16 21:19
    - 716.9K bytes
    - Viewed (2)
  2. gradle/verification-keyring.keys

    BMzNvi2XKm+ctDzgrXRKzp92VX6rvr6Xhe+ovqBVXwbIRnvakO7dwwuZEwARAQAB
    tCZUaWJvciBEaWdhxYhhIDx0aWJvcmRpZ2FuYUBhcGFjaGUub3JnPg==
    =02t4
    -----END PGP PUBLIC KEY BLOCK-----
    
    pub    056ACA74D46000BF
    uid    Norman Maurer <norman@apache.org>
    
    sub    064AC25270668162
    -----BEGIN PGP PUBLIC KEY BLOCK-----
    Version: BCPG v1.68
    
    mQGiBEoo3BYRBACXE2oGRA58Ml6s+kvfk6n/AJ+5OFeRT/Xelco/cpdxOVF5LkRk
    Plain Text
    - Registered: 2023-09-27 11:36
    - Last Modified: 2023-09-14 23:27
    - 490.9K bytes
    - Viewed (0)
  3. src/archive/tar/format.go

    	FormatGNU
    
    	// Schily's tar format, which is incompatible with USTAR.
    	// This does not cover STAR extensions to the PAX format; these fall under
    	// the PAX format.
    	formatSTAR
    
    	formatMax
    )
    
    func (f Format) has(f2 Format) bool   { return f&f2 != 0 }
    func (f *Format) mayBe(f2 Format)     { *f |= f2 }
    func (f *Format) mayOnlyBe(f2 Format) { *f &= f2 }
    func (f *Format) mustNotBe(f2 Format) { *f &^= f2 }
    
    Go
    - Registered: 2023-11-28 11:13
    - Last Modified: 2023-10-13 18:36
    - 11.3K bytes
    - Viewed (0)
  4. scripts/format.sh

    #!/bin/sh -e
    set -x
    
    ruff fastapi tests docs_src scripts --fix
    Shell Script
    - Registered: 2023-11-26 07:19
    - Last Modified: 2023-10-24 20:26
    - 106 bytes
    - Viewed (0)
  5. .clang-format

    # Run manually to reformat a file:
    # clang-format -i --style=file <file>
    BasedOnStyle: Google
    Plain Text
    - Registered: 2023-11-28 12:39
    - Last Modified: 2021-12-07 04:00
    - 124 bytes
    - Viewed (0)
  6. cmd/format-erasure.go

    	format := &formatErasureV3{}
    	format.Version = formatMetaVersionV1
    	format.Format = formatBackendErasure
    	if setLen == 1 {
    		format.Format = formatBackendErasureSingle
    	}
    	format.ID = mustGetUUID()
    	format.Erasure.Version = formatErasureVersionV3
    	format.Erasure.DistributionAlgo = formatErasureVersionV3DistributionAlgoV3
    	format.Erasure.Sets = make([][]string, numSets)
    
    Go
    - Registered: 2023-11-26 19:28
    - Last Modified: 2023-11-24 17:07
    - 27.2K bytes
    - Viewed (0)
  7. cmd/format-meta.go

    package cmd
    
    // Format related consts
    const (
    	// Format config file carries backend format specific details.
    	formatConfigFile = "format.json"
    )
    
    const (
    	// Version of the formatMetaV1
    	formatMetaVersionV1 = "1"
    )
    
    // format.json currently has the format:
    // {
    //   "version": "1",
    //   "format": "XXXXX",
    //   "XXXXX": {
    //
    //   }
    // }
    Go
    - Registered: 2023-11-26 19:28
    - Last Modified: 2021-04-23 18:58
    - 1.7K bytes
    - Viewed (0)
  8. tensorflow/.clang-format

    # Run manually to reformat a file:
    # clang-format -i --style=file <file>
    BasedOnStyle: Google
    Plain Text
    - Registered: 2023-11-28 12:39
    - Last Modified: 2017-01-12 22:28
    - 124 bytes
    - Viewed (0)
  9. cmd/format_string.go

    var _format_index = [...]uint8{0, 7, 11, 15, 18, 20, 23}
    
    func (i format) String() string {
    	if i < 0 || i >= format(len(_format_index)-1) {
    		return "format(" + strconv.FormatInt(int64(i), 10) + ")"
    	}
    	return _format_name[_format_index[i]:_format_index[i+1]]
    Go
    - Registered: 2023-11-26 19:28
    - Last Modified: 2021-04-23 18:58
    - 737 bytes
    - Viewed (0)
  10. tensorflow/c/experimental/ops/gen/common/case_format.h

    limitations under the License.
    ==============================================================================*/
    #ifndef TENSORFLOW_C_EXPERIMENTAL_OPS_GEN_COMMON_CASE_FORMAT_H_
    #define TENSORFLOW_C_EXPERIMENTAL_OPS_GEN_COMMON_CASE_FORMAT_H_
    
    #include "tensorflow/core/platform/str_util.h"
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    
    C
    - Registered: 2023-11-28 12:39
    - Last Modified: 2021-06-15 18:23
    - 1.8K bytes
    - Viewed (0)
Back to top