- Sort Score
- Result 10 results
- Languages All
Results 601 - 610 of 3,177 for strike (0.07 sec)
-
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/upgrades/UpgradedProperties.java
private static final Pattern BOOLEAN_GETTER_REGEX = Pattern.compile("is[A-Z].*"); public static final String OLD_REMOVED_ACCESSORS_OF_UPGRADED_PROPERTIES = "oldRemovedAccessorsOfUpgradedProperties"; public static final String SEEN_OLD_REMOVED_ACCESSORS_OF_UPGRADED_PROPERTIES = "seenOldRemovedAccessorsOfUpgradedProperties"; public static final String CURRENT_ACCESSORS_OF_UPGRADED_PROPERTIES = "currentAccessorsOfUpgradedProperties";
Registered: Wed Oct 30 11:36:09 UTC 2024 - Last Modified: Wed Oct 02 14:20:08 UTC 2024 - 9.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
final StringBuilder sb = new StringBuilder(100); final List<String> fields = new ArrayList<>(); final List<String> tags = new ArrayList<>(); final List<String> roles = new ArrayList<>(); for (final Pair<String, String> searchFieldLog : searchLog.getSearchFieldLogList()) { final String name = searchFieldLog.getFirst(); if (contentFieldNameSet.contains(name)) {
Registered: Mon Oct 28 08:04:08 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 18.1K bytes - Viewed (0) -
internal/config/server.go
type Opts struct { FTP struct { Address string `yaml:"address"` PassivePortRange string `yaml:"passive-port-range"` } `yaml:"ftp"` SFTP struct { Address string `yaml:"address"` SSHPrivateKey string `yaml:"ssh-private-key"` } `yaml:"sftp"` } // ServerConfigVersion struct is used to extract the version type ServerConfigVersion struct { Version string `yaml:"version"` }
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Fri May 03 15:54:03 UTC 2024 - 1.9K bytes - Viewed (0) -
tests/test_tutorial/test_body_fields/test_tutorial001_an_py310.py
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Thu Apr 18 19:40:57 UTC 2024 - 7.3K bytes - Viewed (0) -
cmd/bitrot-whole.go
func newWholeBitrotWriter(disk StorageAPI, volume, filePath string, algo BitrotAlgorithm, shardSize int64) io.WriteCloser { return &wholeBitrotWriter{disk, volume, filePath, shardSize, algo.New()} } // Implementation to verify bitrot for the whole file. type wholeBitrotReader struct { disk StorageAPI volume string filePath string verifier *BitrotVerifier // Holds the bit-rot info
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Wed Jan 31 02:11:45 UTC 2024 - 2.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/filter/EncodingFilterTest.java
public class EncodingFilterTest extends UnitFessTestCase { public void test_normal() throws IOException { final EncodingFilter filter = new EncodingFilter(); Map<String, String[]> paramMap; paramMap = filter.parseQueryString("a=1", "UTF-8"); assertEquals(1, paramMap.size()); assertEquals("1", paramMap.get("a")[0]);
Registered: Mon Oct 28 08:04:08 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webauth/CreateForm.java
@Size(max = 100) public String hostname; @Min(value = 0) @Max(value = 2147483647) @ValidateTypeFailure public Integer port; @Size(max = 100) public String authRealm; @Size(max = 10) public String protocolScheme; @Required @Size(max = 100) public String username; @Size(max = 100) public String password; @Size(max = 1000)
Registered: Mon Oct 28 08:04:08 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.9K bytes - Viewed (0) -
cmd/signature-v4-parser.go
// credentialHeader data type represents structured form of Credential // string from authorization header. type credentialHeader struct { accessKey string scope struct { date time.Time region string service string request string } } // Return scope string. func (c credentialHeader) getScope() string { return strings.Join([]string{ c.scope.date.Format(yyyymmdd), c.scope.region, c.scope.service,
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Thu Jan 18 07:03:17 UTC 2024 - 9.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ProtocolHelper.java
logger.debug("file protocols: {}", Arrays.toString(fileProtocols)); } } protected void loadProtocols(final String basePackage) { final List<String> subPackages = new ArrayList<>(); final String path = basePackage.replace('.', '/'); final ClassLoader classLoader = Thread.currentThread().getContextClassLoader(); try {
Registered: Mon Oct 28 08:04:08 UTC 2024 - Last Modified: Wed Jun 19 01:34:15 UTC 2024 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java
public List<Map<String, Object>> documentItems; public String pageSize; public String currentPageNumber; public String allRecordCount; public String allPageCount; public boolean existNextPage; public boolean existPrevPage; public String currentStartRecordNumber; public String currentEndRecordNumber;
Registered: Mon Oct 28 08:04:08 UTC 2024 - Last Modified: Wed Jul 24 09:03:45 UTC 2024 - 18.3K bytes - Viewed (0)