- Sort Score
- Result 10 results
- Languages All
Results 1791 - 1800 of 6,918 for RETURN (0.05 sec)
-
src/main/java/jcifs/smb/SmbPipeHandleInternal.java
*/ public interface SmbPipeHandleInternal extends SmbPipeHandle { /** * @return the pipe type */ int getPipeType (); /** * @return session key of the underlying smb session * @throws CIFSException */ byte[] getSessionKey () throws CIFSException; /** * * @return this pipe's input stream * @throws SmbException */ @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/TransTransactNamedPipe.java
return 0; } System.arraycopy( pipeData, pipeDataOff, dst, dstIndex, pipeDataLen ); return pipeDataLen; } int readParametersWireFormat( byte[] buffer, int bufferIndex, int len ) { return 0; } int readDataWireFormat( byte[] buffer, int bufferIndex, int len ) { return 0; } public String toString() {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.5K bytes - Viewed (0) -
internal/http/request-recorder.go
func (r *RequestRecorder) Size() int { return r.bytesRead } // Data returns the bytes that were recorded. func (r *RequestRecorder) Data() []byte { // If body logging is enabled then we return the actual body if r.LogBody { return r.buf.Bytes() } // ... otherwise we return <BLOB> placeholder return blobBody
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Apr 12 21:37:19 UTC 2023 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/text/Tokenizer.java
return ttype; } if (processQuote()) { return ttype; } if (processOrdinary()) { return ttype; } ttype = peekc; return ttype; } /** * 既に読み込んだ文字列を返します。 * * @return 既に読み込んだ文字列 */ public String getReadString() { return str.substring(0, colno - 1);
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 8.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthentication.java
* though they may be. */ } return true; } return false; } /** * @return whether the hashes are externally supplied */ public boolean areHashesExternal () { return this.hashesExternal; } /** * {@inheritDoc} *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 8.5K bytes - Viewed (0) -
internal/crypto/sse-s3.go
if h.Get(xhttp.AmzServerSideEncryption) != xhttp.AmzEncryptionAES { return ErrInvalidEncryptionMethod } return nil } // IsEncrypted returns true if the object metadata indicates // that the object was uploaded using SSE-S3. func (sses3) IsEncrypted(metadata map[string]string) bool { if _, ok := metadata[MetaSealedKeyS3]; ok { return true } return false }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue May 07 23:55:37 UTC 2024 - 7.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ForwardingSortedSetTest.java
protected SortedSet<T> delegate() { return backingSortedSet; } @Override public boolean equals(@Nullable Object object) { return standardEquals(object); } @Override public int hashCode() { return standardHashCode(); } @Override public boolean addAll(Collection<? extends T> collection) { return standardAddAll(collection); } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 5K bytes - Viewed (0) -
internal/s3select/sql/record.go
case simdjson.TypeString: v, err := iter.String() if err != nil { return nil, err } return v, nil case simdjson.TypeFloat: v, err := iter.Float() if err != nil { return nil, err } return v, nil case simdjson.TypeInt: v, err := iter.Int() if err != nil { return nil, err } return v, nil case simdjson.TypeUint: v, err := iter.Int() if err != nil {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jun 01 21:59:40 UTC 2021 - 3.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/reflect/ClassPathTest.java
return classInfo(cls, cls.getClassLoader()); } private static ClassInfo classInfo(Class<?> cls, ClassLoader classLoader) { String resource = cls.getName().replace('.', '/') + ".class"; return new ClassInfo(FILE, resource, classLoader); } private static Manifest manifestClasspath(String classpath) throws IOException { return manifest("Class-Path: " + classpath + "\n"); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 24 22:09:38 UTC 2024 - 25K bytes - Viewed (0) -
src/test/java/jcifs/tests/KerberosTest.java
builder.destroy(); return Krb5Util.credsToTicket(creds); } public static Subject getInitiatorSubject ( KerberosPrincipal principal, String password, Long expire ) throws Exception { KerberosTicket ticket = getKerberosTicket(principal, password, expire); Set<Object> privCreds = new HashSet<>(); privCreds.add(ticket);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Mar 01 09:46:04 UTC 2020 - 11.5K bytes - Viewed (0)