Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 518 for numeric (0.19 sec)

  1. test/const1.go

    // errorcheck
    
    // Copyright 2009 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.
    
    // Verify overflow is detected when using numeric constants.
    // Does not compile.
    
    package main
    
    import "unsafe"
    
    type I interface{}
    
    const (
    	// assume all types behave similarly to int8/uint8
    	Int8   int8  = 101
    	Minus1 int8  = -1
    	Uint8  uint8 = 102
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 01 21:49:31 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  2. internal/s3select/sql/parser.go

    type CastFunc struct {
    	Expr     *Expression `parser:" \"CAST\" \"(\" @@ "`
    	CastType string      `parser:" \"AS\" @(\"BOOL\" | \"INT\" | \"INTEGER\" | \"STRING\" | \"FLOAT\" | \"DECIMAL\" | \"NUMERIC\" | \"TIMESTAMP\") \")\" "`
    }
    
    // SubstringFunc represents SUBSTRING sql function
    type SubstringFunc struct {
    	Expr *PrimaryTerm `parser:" \"SUBSTRING\" \"(\" @@ "`
    	From *Operand     `parser:" ( \"FROM\" @@ "`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/mutation/typeprovider.go

    // a mutation operation.
    type TypeProvider struct {
    	typeResolver           common.TypeResolver
    	underlyingTypeProvider types.Provider
    }
    
    var _ types.Provider = (*TypeProvider)(nil)
    
    // EnumValue returns the numeric value of the given enum value name.
    // This TypeProvider does not have special handling for EnumValue and thus directly delegate
    // to its underlying type provider.
    func (p *TypeProvider) EnumValue(enumName string) ref.Val {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 21:02:36 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. pkg/test/util/structpath/instance.go

    // converts proto.Any and proto.Struct to the serialized JSON forms which can then be evaluated
    // over. The downside is the loss of type fidelity for numeric types as JSON can only represent
    // floats.
    func ForProto(proto proto.Message) *Instance {
    	if proto == nil {
    		return newErrorInstance(errors.New("expected non-nil proto"))
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/saved_model/core/test_utils.cc

    #undef CASE
        default:
          CHECK(false) << "Unsupported data type: " << DataTypeString(dtype);
          break;
      }
    }
    
    // Checks the underlying data is equal for the buffers for two numeric tensors.
    // Note: The caller must ensure to check that the dtypes and sizes of the
    // underlying buffers are the same before calling this.
    void CheckBufferDataIsEqual(DataType dtype, int64_t num_elements, void* a,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 08 20:13:32 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/response-status-code.md

    ## About HTTP status codes
    
    !!! note
        If you already know what HTTP status codes are, skip to the next section.
    
    In HTTP, you send a numeric status code of 3 digits as part of the response.
    
    These status codes have a name associated to recognize them, but the important part is the number.
    
    In short:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 29 14:02:58 UTC 2020
    - 4K bytes
    - Viewed (0)
  7. src/time/format_test.go

    	{"DayOfWeek", "Mon Monday", "Wed Wednesday"},
    	{"Hour", "15 3 03 _3", "21 9 09 _9"},
    	{"Minute", "4 04 _4", "0 00 _0"},
    	{"Second", "5 05 _5", "57 57 _57"},
    }
    
    func TestFormat(t *testing.T) {
    	// The numeric time represents Thu Feb  4 21:00:57.012345600 PST 2009
    	time := Unix(0, 1233810057012345600)
    	for _, test := range formatTests {
    		result := time.Format(test.format)
    		if result != test.result {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SID.java

    import jcifs.RuntimeCIFSException;
    import jcifs.dcerpc.rpc;
    import jcifs.internal.util.SMBUtil;
    import jcifs.util.Hexdump;
    
    
    /**
     * Internal representation of SIDs
     * 
     * A Windows SID is a numeric identifier used to represent Windows
     * accounts. SIDs are commonly represented using a textual format such as
     * <tt>S-1-5-21-1496946806-2192648263-3843101252-1029</tt> but they may
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.9K bytes
    - Viewed (0)
  9. internal/auth/credentials.go

    	// is used when autogenerating new credentials.
    	// There is no max length enforcement for secret keys
    	secretKeyMaxLen = 40
    
    	// Alpha numeric table used for generating access keys.
    	alphaNumericTable = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
    
    	// Total length of the alpha numeric table.
    	alphaNumericTableLen = byte(len(alphaNumericTable))
    
    	reservedChars = "=,"
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:14:16 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    	return interactive(p, o)
    }
    
    // generateRawReport is allowed to modify p.
    func generateRawReport(p *profile.Profile, cmd []string, cfg config, o *plugin.Options) (*command, *report.Report, error) {
    	// Identify units of numeric tags in profile.
    	numLabelUnits := identifyNumLabelUnits(p, o.UI)
    
    	// Get report output format
    	c := pprofCommands[cmd[0]]
    	if c == nil {
    		panic("unexpected nil command")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top