- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 1,786 for aString (0.04 seconds)
-
guava/src/com/google/common/collect/ComparisonChain.java
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Mar 17 20:26:29 GMT 2025 - 11.1K bytes - Click Count (0) -
src/test/java/jcifs/util/InputValidatorTest.java
assertEquals("teststring", InputValidator.sanitizeForLogging("test\nstring")); assertEquals("teststring", InputValidator.sanitizeForLogging("test\rstring")); assertEquals("teststring", InputValidator.sanitizeForLogging("test\tstring")); // Test long string truncation String longString = "a".repeat(1100);
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 11.9K bytes - Click Count (0) -
src/test/java/jcifs/util/ServerResponseValidatorTest.java
}); } @Test public void testStringWithAllowedWhitespace() throws Exception { validator.validateString("test\tstring", 100, "test"); validator.validateString("test\r\nstring", 100, "test"); // Should pass without exception } @Test public void testValidPath() throws Exception { validator.validatePath("\\share\\folder\\file.txt");Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 14.2K bytes - Click Count (0) -
internal/s3select/sql/value.go
v.value = f } func (v *Value) setString(s string) { v.value = s } func (v *Value) setBool(b bool) { v.value = b } func (v *Value) setTimestamp(t time.Time) { v.value = t } func (v Value) String() string { return fmt.Sprintf("%#v", v.value) } // CSVString - convert to string for CSV serialization func (v Value) CSVString() string { switch x := v.value.(type) {
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 20.4K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/KotlinSourceQueries.kt
collectDescendantsOfType<KtClassOrObject> { it.fqName?.asString() == member.name }.singleOrNull() private val SINCE_REGEX = Regex("""@since ([^\s]+)""") fun KtDeclaration.getSince(): String? = docComment?.let { SINCE_REGEX.find(it.text)?.groupValues?.get(1) } private fun String.mapJavaTypeToKotlinType(): String { val javaTypeName = this
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Jul 08 07:02:19 GMT 2025 - 13.2K bytes - Click Count (0) -
build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportWorkAction.kt
get() = annotationEntries.any { it.shortName?.asString() == "Incubating" } private val KtNamedDeclaration.typeParametersString: String get() = (this as? KtCallableDeclaration)?.typeParameterList?.let { "${it.text} " } ?: "" private val KtNamedDeclaration.fullyQualifiedName: String get() = fqName!!.asString() private
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Jun 02 09:57:54 GMT 2025 - 14.1K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/SourceMetaDataVisitor.java
return; } ClassMetaData outerClass = classStack.isEmpty() ? null : getCurrentClass(); String baseName = typeDeclaration.getNameAsString(); String className = outerClass == null ? packageName + '.' + baseName : outerClass.getClassName() + '.' + baseName; String comment = getJavadocComment(typeDeclaration);Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Aug 19 15:07:24 GMT 2024 - 11.8K bytes - Click Count (0) -
schema/field_test.go
} type UserWithPermissionControl struct { ID uint Name string `gorm:"-"` Name2 string `gorm:"->"` Name3 string `gorm:"<-"` Name4 string `gorm:"<-:create"` Name5 string `gorm:"<-:update"` Name6 string `gorm:"<-:create,update"` Name7 string `gorm:"->:false;<-:create,update"` Name8 string `gorm:"->;-:migration"` } func TestParseFieldWithPermission(t *testing.T) {Created: Sun Dec 28 09:35:17 GMT 2025 - Last Modified: Sat Feb 19 09:02:53 GMT 2022 - 12.7K bytes - Click Count (0) -
gradle/wrapper/gradle-wrapper.jar
WrapperConfiguration { public java.net.URI distribution; public String distributionBase; public String distributionPath; public String distributionSha256Su; public String zipBase; public String zipPath; public int networkTimeout; public boolean validateDistribution; public void WrapperConfiguration(); public final void setDistribution(java.net.URI); public final String getDistributionBase(); public final void setDistributionBase(String); public final String getDistributionPath(); public final void setDistributionPath(String);...Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Thu Oct 30 01:56:29 GMT 2025 - 44.6K bytes - Click Count (1) -
src/main/java/jcifs/SmbResource.java
*/ CloseableIterator<SmbResource> children(String wildcard) throws CIFSException; /** * Fetch children matching the given filter. * * @param filter * filter acting on file names * @return an iterator over the child resources * @see SmbResource#children(String) for a more efficient way to do this when a pattern on the filename isCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 28K bytes - Click Count (1)