- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 781 for fnames (0.19 sec)
-
compat/maven-resolver-provider/src/test/resources/META-INF/sisu/javax.inject.Named
Guillaume Nodet <******@****.***> 1729859506 +0200
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 838 bytes - Viewed (0) -
src/main/java/jcifs/http/NetworkExplorer.java
return f1.isDirectory() ? -1 : 1; } f2name = f2.getName(); if ( f1.isDirectory() ) { return f1name.compareToIgnoreCase(f2name); } i = f1name.lastIndexOf('.'); t1 = i == -1 ? "" : f1name.substring(i + 1); i = f2name.lastIndexOf('.'); t2 = i == -1 ? "" : f2name.substring(i + 1); i = t1.compareToIgnoreCase(t2);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 21.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NetworkExplorer.java
return f1.isDirectory() ? -1 : 1; } f2name = f2.getName(); if( f1.isDirectory() ) { return f1name.compareToIgnoreCase( f2name ); } i = f1name.lastIndexOf( '.' ); t1 = i == -1 ? "" : f1name.substring( i + 1 ); i = f2name.lastIndexOf( '.' ); t2 = i == -1 ? "" : f2name.substring( i + 1 ); i = t1.compareToIgnoreCase( t2 );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 22 03:57:31 UTC 2020 - 19.7K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/http2/Http2ExchangeCodec.kt
// header names must be lowercase. val name = headers.name(i).lowercase(Locale.US) if (name !in HTTP_2_SKIPPED_REQUEST_HEADERS || name == TE && headers.value(i) == "trailers" ) { result.add(Header(name, headers.value(i))) } } return result } /** Returns headers for a name value block containing an HTTP/2 response. */
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 6.9K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/ws/RealWebSocket.kt
): Boolean { // Don't send new frames after we've failed or enqueued a close frame. if (failed || enqueuedClose) return false // If this frame overflows the buffer, reject it and close the web socket. if (queueSize + data.size > MAX_QUEUE_SIZE) { close(CLOSE_CLIENT_GOING_AWAY, null) return false } // Enqueue the message frame. queueSize += data.size.toLong()
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Apr 01 14:21:25 UTC 2024 - 22.1K bytes - Viewed (0) -
src/archive/zip/reader.go
}) if i < len(files) { fname := files[i].name if fname == name || len(fname) == len(name)+1 && fname[len(name)] == '/' && fname[:len(name)] == name { return &files[i] } } return nil } func (r *Reader) openReadDir(dir string) []fileListEntry { files := r.fileList i, _ := slices.BinarySearchFunc(files, dir, func(a fileListEntry, dir string) int { idir, _, _ := split(a.name) if dir != idir {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Sat Aug 03 01:05:29 UTC 2024 - 28.1K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt
if (closed) return outFinished = errorCode == null } if (!sink.finished) { // We have 0 or more frames of data, and 0 or more frames of trailers. We need to send at // least one frame with the END_STREAM flag set. That must be the last frame, and the // trailers must be sent after all of the data. val hasData = sendBuffer.size > 0L val hasTrailers = trailers != null
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 20 17:03:43 UTC 2024 - 23.2K bytes - Viewed (0) -
src/cmd/cgo/gcc.go
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Sep 18 15:07:34 UTC 2024 - 97.1K bytes - Viewed (0) -
CITATION.cff
given-names: Lukasz - family-names: Kudlur given-names: Manjunath - family-names: Levenberg given-names: Josh - family-names: Mané given-names: Dan - family-names: Schuster given-names: Mike - family-names: Monga given-names: Rajat - family-names: Moore given-names: Sherry - family-names: Murray given-names: Derek - family-names: Olah given-names: Chris
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Sep 06 15:26:23 UTC 2021 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ResourceUtil.java
} public static Path getClassesPath(final String... names) { return getPath("WEB-INF/", "classes", names); } public static Path getOrigPath(final String... names) { return getPath("WEB-INF/", "orig", names); } public static Path getMailTemplatePath(final String... names) { return getPath("WEB-INF/", "mail", names); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 08:52:32 UTC 2024 - 7.5K bytes - Viewed (0)