Search Options

Results per page
Sort
Preferred Languages
Advance

Results 441 - 450 of 3,018 for strana (0.03 sec)

  1. cmd/site-replication.go

    	}
    	info.BucketStats = make(map[string]map[string]madmin.SRBucketStatsSummary, len(sinfo.Sites))
    	info.PolicyStats = make(map[string]map[string]madmin.SRPolicyStatsSummary)
    	info.UserStats = make(map[string]map[string]madmin.SRUserStatsSummary)
    	info.GroupStats = make(map[string]map[string]madmin.SRGroupStatsSummary)
    	info.ILMExpiryStats = make(map[string]map[string]madmin.SRILMExpiryStatsSummary)
    	numSites := len(info.Sites)
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 184.7K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/UrlFilterTest.java

         */
        public void test_processUrl_emptyUrl() {
            String sessionId = "test-session-014";
            urlFilter.init(sessionId);
    
            urlFilter.processUrl("");
            // Should handle empty URL gracefully
            assertNotNull(urlFilter);
        }
    
        /**
         * Test clear method
         */
        public void test_clear() {
            String sessionId = "test-session-015";
            urlFilter.init(sessionId);
    
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Wed Sep 03 14:42:53 UTC 2025
    - 19K bytes
    - Viewed (0)
  3. cmd/update.go

    // MinIO version string.
    //
    // An official binary's version string is the release time formatted
    // with RFC3339 (in UTC) - e.g. `2017-09-29T19:16:56Z`
    func minioVersionToReleaseTime(version string) (releaseTime time.Time, err error) {
    	return time.Parse(time.RFC3339, version)
    }
    
    // releaseTimeToReleaseTag - converts a time to a string formatted as
    // an official MinIO release tag.
    //
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/parse.go

    			p.expectOperandEnd()
    			return
    		}
    		if p.have(scanner.String) {
    			if prefix != '$' {
    				p.errorf("string constant must be an immediate")
    				return
    			}
    			str, err := strconv.Unquote(p.get(scanner.String).String())
    			if err != nil {
    				p.errorf("string parse error: %s", err)
    			}
    			a.Type = obj.TYPE_SCONST
    			a.Val = str
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Fri Feb 14 15:13:11 UTC 2025
    - 37.3K bytes
    - Viewed (0)
  5. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/WagonConfigurationException.java

     */
    @Deprecated
    public class WagonConfigurationException extends TransferFailedException {
    
        static final long serialVersionUID = 1;
    
        private final String originalMessage;
        private final String repositoryId;
    
        public WagonConfigurationException(String repositoryId, String message, Throwable cause) {
            super("While configuring wagon for '" + repositoryId + "': " + message, cause);
    
            this.repositoryId = repositoryId;
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. cmd/object-handlers-common_test.go

    	objInfo := ObjectInfo{ETag: "aa", ModTime: objModTime}
    	testCases := []struct {
    		name              string
    		ifMatch           string
    		ifNoneMatch       string
    		ifModifiedSince   string
    		ifUnmodifiedSince string
    		objInfo           ObjectInfo
    		expectedFlag      bool
    		expectedCode      int
    	}{
    		// If-None-Match(false) and If-Modified-Since(true)
    		{
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 09 14:28:39 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResult.java

         *
         * @return the session identifier
         */
        String getSessionId();
    
        /**
         * Sets the session identifier.
         *
         * @param sessionId the session identifier
         */
        void setSessionId(String sessionId);
    
        /**
         * Returns the rule identifier.
         *
         * @return the rule identifier
         */
        String getRuleId();
    
        /**
         * Sets the rule identifier.
         *
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/exception/WebApiExceptionTest.java

            int statusCode = 0;
            String message = "Zero status";
    
            WebApiException exception = new WebApiException(statusCode, message);
    
            assertEquals(statusCode, exception.getStatusCode());
            assertEquals(message, exception.getMessage());
        }
    
        public void test_message_emptyString() {
            // Test with empty message string
            int statusCode = 404;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/exception/InvalidQueryExceptionTest.java

            // Setup - test with a complex message code that includes parameters
            final String queryString = "field:value AND (";
            final VaMessenger<FessMessages> complexMessageCode =
                    messages -> messages.addErrorsInvalidQueryParseError(UserMessages.GLOBAL_PROPERTY_KEY);
            final String message = "Failed to parse query: " + queryString;
    
            // Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 15.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/convert/DoubleConversionUtil.java

         * @param pattern
         *            The pattern string
         * @return The converted {@literal double}
         */
        public static double toPrimitiveDouble(final Object o, final String pattern) {
            if (o == null) {
                return 0;
            } else if (o instanceof Number) {
                return ((Number) o).doubleValue();
            } else if (o instanceof String) {
                return toPrimitiveDouble((String) o);
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 3.6K bytes
    - Viewed (0)
Back to top