- Sort Score
- Result 10 results
- Languages All
Results 631 - 640 of 3,265 for Type (0.04 sec)
-
tests/scanner_valuer_test.go
return append([]byte("***"), data...), nil } type Num int64 func (i *Num) Scan(src interface{}) error { switch s := src.(type) { case []byte: n, _ := strconv.Atoi(string(s)) *i = Num(n) case int64: *i = Num(s) default: return errors.New("Cannot scan NamedInt from " + reflect.ValueOf(src).String()) } return nil } type StringsSlice []string
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Wed Jun 07 07:02:07 UTC 2023 - 10.6K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/NtlmFlags.java
* client workstation has membership is supplied in the Type-1 message. * This is used in the negotation of local authentication. */ public static final int NTLMSSP_NEGOTIATE_OEM_DOMAIN_SUPPLIED = 0x00001000; /** * Indicates whether the OEM-formatted workstation name is supplied * in the Type-1 message. This is used in the negotiation of local * authentication. */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/ArtifactTransferEvent.java
} /** * Returns the request type. * * @return Returns the request type. The Request type is one of * <code>TransferEvent.REQUEST_GET</code> or <code>TransferEvent.REQUEST_PUT</code> */ public int getRequestType() { return requestType; } /** * Sets the request type * * @param requestType The requestType to set.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.7K bytes - Viewed (0) -
internal/bucket/lifecycle/transition.go
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jan 10 17:07:49 UTC 2022 - 5.1K bytes - Viewed (0) -
migrator.go
Unique() (unique bool, ok bool) ScanType() reflect.Type Comment() (value string, ok bool) DefaultValue() (value string, ok bool) } type Index interface { Table() string Name() string Columns() []string PrimaryKey() (isPrimaryKey bool, ok bool) Unique() (unique bool, ok bool) Option() string } // TableType table type interface type TableType interface { Schema() string Name() string
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Mon Oct 30 09:15:49 UTC 2023 - 3.1K bytes - Viewed (0) -
internal/kms/kms.go
} // KMS is a connection to a key management system. // It implements various cryptographic operations, // like data key generation and decryption. type KMS struct { // Type identifies the KMS implementation. Either, // MinKMS, MinKES or Builtin. Type Type // The default key, used for generating new data keys // if no explicit GenerateKeyRequest.Name is provided. DefaultKey string
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Aug 18 06:43:03 UTC 2024 - 11.5K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/index.jsp
<jsp:include page="footer.jsp" /> </la:form> <input type="hidden" id="contextPath" value="${contextPath}" /> <script type="text/javascript" src="${fe:url('/js/jquery-3.7.1.min.js')}"></script> <script type="text/javascript" src="${fe:url('/js/bootstrap.min.js')}"></script> <script type="text/javascript" src="${fe:url('/js/suggestor.js')}"></script> <script type="text/javascript" src="${fe:url('/js/index.js')}"></script> </body>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:07:52 UTC 2024 - 6.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/ntlmssp/Type2Message.java
} /** * Creates a Type-2 message using default values from the current * environment. */ public Type2Message() { this(getDefaultFlags(), null, null); } /** * Creates a Type-2 message in response to the given Type-1 message * using default values from the current environment. * * @param type1 The Type-1 message which this represents a response to.
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 12.6K bytes - Viewed (0) -
api/go1.14.txt
pkg syscall (freebsd-arm64), type Flock_t struct, Pad_cgo_0 [4]uint8 pkg syscall (freebsd-arm64), type Flock_t struct, Pid int32 pkg syscall (freebsd-arm64), type Flock_t struct, Start int64 pkg syscall (freebsd-arm64), type Flock_t struct, Sysid int32 pkg syscall (freebsd-arm64), type Flock_t struct, Type int16 pkg syscall (freebsd-arm64), type Flock_t struct, Whence int16 pkg syscall (freebsd-arm64), type Fsid struct
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Feb 17 20:31:46 UTC 2023 - 508.9K bytes - Viewed (0) -
internal/s3select/sql/value_test.go
package sql import ( "fmt" "math" "strconv" "testing" "time" ) // valueBuilders contains one constructor for each value type. // Values should match if type is the same. var valueBuilders = []func() *Value{ FromNull, func() *Value { return FromBool(true) }, func() *Value { return FromBytes([]byte("byte contents")) }, func() *Value {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Mar 06 16:56:10 UTC 2023 - 12.5K bytes - Viewed (0)