- Sort Score
- Result 10 results
- Languages All
Results 371 - 380 of 818 for stripes (1.07 sec)
-
cmd/object-handlers-common.go
func canonicalizeETag(etag string) string { return etagRegex.ReplaceAllString(etag, "$1") } // isETagEqual return true if the canonical representations of two ETag strings // are equal, false otherwise func isETagEqual(left, right string) bool { if strings.TrimSpace(right) == "*" { return true } return canonicalizeETag(left) == canonicalizeETag(right) }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Jul 23 12:36:06 UTC 2025 - 15.2K bytes - Viewed (0) -
src/archive/zip/writer_test.go
func TestWriterComment(t *testing.T) { tests := []struct { comment string ok bool }{ {"hi, hello", true}, {"hi, こんにちわ", true}, {strings.Repeat("a", uint16max), true}, {strings.Repeat("a", uint16max+1), false}, } for _, test := range tests { // write a zip file buf := new(bytes.Buffer) w := NewWriter(buf)
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Jan 28 04:20:09 UTC 2025 - 14.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java
import groovy.lang.GroovyClassLoader; import groovy.lang.GroovyShell; /** * Groovy script engine implementation that extends AbstractScriptEngine. * This class provides support for executing Groovy scripts with parameter binding * and DI container integration. */ public class GroovyEngine extends AbstractScriptEngine { private static final Logger logger = LogManager.getLogger(GroovyEngine.class); /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.3K bytes - Viewed (0) -
tests/query_test.go
switch name { case "Name": if !strings.Contains(resultType, "string") { t.Errorf("invalid data type for %v, got %v %#v", dbName, resultType, first[dbName]) } case "Age": if !strings.Contains(resultType, "int") { t.Errorf("invalid data type for %v, got %v %#v", dbName, resultType, first[dbName]) } case "Birthday":
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Tue Jul 22 06:21:04 UTC 2025 - 51K bytes - Viewed (0) -
android/guava/src/com/google/common/base/package-info.java
* * <h3>String utilities</h3> * * <ul> * <li>{@link Ascii} * <li>{@link CaseFormat} * <li>{@link CharMatcher} * <li>{@link Splitter} * <li>{@link Strings} * </ul> * * <h3>Function types</h3> * * <ul> * <li>{@link Converter} * <li>{@link Equivalence} * </ul> * * <h3>Other</h3> * * <ul> * <li>{@link Enums}
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 14:50:24 UTC 2024 - 1.7K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/UnreadableResponseBody.kt
override fun read( sink: Buffer, byteCount: Long, ): Long = throw IllegalStateException( """ |Unreadable ResponseBody! These Response objects have bodies that are stripped: | * Response.cacheResponse | * Response.networkResponse | * Response.priorResponse | * EventSourceListener | * WebSocketListener
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue May 27 15:19:53 UTC 2025 - 1.7K bytes - Viewed (0) -
.teamcity/src/main/kotlin/util/UpdateWrapper.kt
successfulOnly = true } } } } steps { exec { name = "UPDATE_WRAPPER_AND_CREATE_PR" path = ".teamcity/scripts/update_wrapper_and_create_pr.sh" arguments = "%wrapperVersion%" } } dependencies {
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Jul 24 03:08:48 UTC 2025 - 2.7K bytes - Viewed (0) -
docs/contribute/code_of_conduct.md
unacceptable behavior. We are committed to providing a welcoming and inspiring community for all and expect our code of conduct to be honored. Square’s open source community strives to: * **Be open**: We invite anyone to participate in any aspect of our projects. Our community is open, and any responsibility can be carried by a contributor who demonstrates the required capacity and competence.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ProtocolHelper.java
* * @return array of web protocol strings with colon suffix (e.g., "http:", "https:") */ public String[] getWebProtocols() { return webProtocols; } /** * Returns the array of supported file protocols. * * @return array of file protocol strings with colon suffix (e.g., "file:", "ftp:") */ public String[] getFileProtocols() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.7K bytes - Viewed (0) -
.teamcity/scripts/configure_build_env_on_ec2.sh
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # This scripts detects builds running on EC2 by accessing the special ip 169.254.169.254 exposed by AWS instances. # https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html # In case of running on EC2
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Wed Aug 27 08:28:30 UTC 2025 - 2K bytes - Viewed (0)