- Sort Score
- Result 10 results
- Languages All
Results 1081 - 1090 of 6,150 for string (0.1 sec)
-
cmd/storage-interface.go
AppendFile(ctx context.Context, volume string, path string, buf []byte) (err error) CreateFile(ctx context.Context, origvolume, olume, path string, size int64, reader io.Reader) error ReadFileStream(ctx context.Context, volume, path string, offset, length int64) (io.ReadCloser, error) RenameFile(ctx context.Context, srcVolume, srcPath, dstVolume, dstPath string) error
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Aug 12 08:38:15 UTC 2024 - 5.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerContext.java
public void setMaxAccessCount(final long maxAccessCount) { this.maxAccessCount = maxAccessCount; } public void addSitemaps(final String[] sitemaps) { sitemapsLocal.set(sitemaps); } public String[] removeSitemaps() { final String[] sitemaps = sitemapsLocal.get(); if (sitemaps != null) { sitemapsLocal.remove(); } return sitemaps; }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:40:57 UTC 2024 - 4.5K bytes - Viewed (0) -
api/go1.txt
pkg debug/elf, method (R_386) GoString() string pkg debug/elf, method (R_386) String() string pkg debug/elf, method (R_ALPHA) GoString() string pkg debug/elf, method (R_ALPHA) String() string pkg debug/elf, method (R_ARM) GoString() string pkg debug/elf, method (R_ARM) String() string pkg debug/elf, method (R_PPC) GoString() string pkg debug/elf, method (R_PPC) String() string
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Aug 14 18:58:28 UTC 2013 - 1.7M bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/CIBuildModel.kt
fun asId(projectId: String): String { return "${projectId}_$testCoveragePrefix" } fun asId(model: CIBuildModel): String { return asId(model.projectId) } private val testCoveragePrefix get() = "${testType.name.toCapitalized()}_$uuid" fun asConfigurationId(model: CIBuildModel, subProject: String = ""): String {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Oct 16 06:14:14 UTC 2024 - 22.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java
private static final String PROTWORDS = "protwords"; List<ProtwordsItem> protwordsItemList; public ProtwordsFile(final String id, final String path, final Date timestamp) { super(id, path, timestamp); } @Override public String getType() { return PROTWORDS; } @Override public String getPath() { return path; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 9.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java
private static final String STOPWORDS = "stopwords"; List<StopwordsItem> stopwordsItemList; public StopwordsFile(final String id, final String path, final Date timestamp) { super(id, path, timestamp); } @Override public String getType() { return STOPWORDS; } @Override public String getPath() { return path; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 9.6K bytes - Viewed (0) -
internal/mountinfo/mountinfo_linux_test.go
t.Fatal(err) } // Failure case where we detected successfully cross device mounts. { absPaths := []string{"/path/to/1"} if err = checkCrossDevice(absPaths, mountsPath); err == nil { t.Fatal("Expected to fail, but found success") } mp := []mountInfo{ {"/dev/2", "/path/to/1/2", "type2", []string{"flags"}, "2", "2"}, }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jan 18 07:03:17 UTC 2024 - 7.3K bytes - Viewed (0) -
src/archive/zip/reader.go
func (f *fileListEntry) String() string { return fs.FormatDirEntry(f) } // toValidName coerces name to be a valid name for fs.FS.Open. func toValidName(name string) string { name = strings.ReplaceAll(name, `\`, `/`) p := path.Clean(name) p = strings.TrimPrefix(p, "/") for strings.HasPrefix(p, "../") { p = p[len("../"):] } return p }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Sat Aug 03 01:05:29 UTC 2024 - 28.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/FailureUrlPager.java
//@Maxbytelength(maxbytelength = 1000) public String url; //@IntRange(min = 0, max = 2147483647) public String errorCountMin; //@IntRange(min = 0, max = 2147483647) public String errorCountMax; //@Maxbytelength(maxbytelength = 1000) public String errorName; public static final int DEFAULT_PAGE_SIZE = 20;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
} fessConfig = ComponentUtil.getFessConfig(); } protected Hashtable<String, String> createEnvironment(final String initialContextFactory, final String securityAuthentication, final String providerUrl, final String principal, final String credntials) { final Hashtable<String, String> env = new Hashtable<>(); putEnv(env, Context.INITIAL_CONTEXT_FACTORY, initialContextFactory);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 65.9K bytes - Viewed (0)