Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Cal (0.02 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/registry/DaemonStopEvent.java

                + "}";
        }
    
        boolean occurredInLastHours(final int numHours) {
            Calendar cal = Calendar.getInstance();
            cal.setTime(new Date(System.currentTimeMillis()));
            cal.add(Calendar.HOUR_OF_DAY, -1 * numHours);
            return timestamp.after(cal.getTime());
        }
    
        private static class Serializer implements org.gradle.internal.serialize.Serializer<DaemonStopEvent> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/accesslog.go

    		listener.AccessLog = append(listener.AccessLog, al...)
    	}
    }
    
    func (b *AccessLogBuilder) buildFileAccessLog(mesh *meshconfig.MeshConfig) *accesslog.AccessLog {
    	if cal := b.cachedFileAccessLog(); cal != nil {
    		return cal
    	}
    
    	// We need to build access log. This is needed either on first access or when mesh config changes.
    	al := model.FileAccessLogFromMeshConfig(mesh.AccessLogFile, mesh)
    
    	b.mutex.Lock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
            final Calendar cal = Calendar.getInstance(TimeZone.getTimeZone("UTC"));
            cal.set(2025, 11 - 1, 1); // EOL Date
            eolTime = cal.getTimeInMillis();
            if (isEoled()) {
                logger.error("Your system is out of support. See https://fess.codelibs.org/eol.html");
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  4. internal/config/config.go

    	}
    
    	name := env.Get(EnvSiteName, siteKV.Get(NameKey))
    	if name != "" {
    		if !validSiteNameRegex.MatchString(name) {
    			err = Errorf(
    				"site name '%s' is invalid, expected simple characters such as [cal-rack0, myname...]",
    				name)
    			return
    		}
    		s.name = name
    	}
    	return
    }
    
    // CheckValidKeys - checks if inputs KVS has the necessary keys,
    // returns error if it find extra or superfluous keys.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  5. src/os/os_windows_test.go

    		` a\\b d"e f"g h`,
    		` a\\\"b c d`,
    		` a\\\\"b c" d e`,
    		// http://daviddeley.com/autohotkey/parameters/parameters.htm#WINARGV
    		// from 5.4  Examples
    		` CallMeIshmael`,
    		` "Call Me Ishmael"`,
    		` Cal"l Me I"shmael`,
    		` CallMe\"Ishmael`,
    		` "CallMe\"Ishmael"`,
    		` "Call Me Ishmael\\"`,
    		` "CallMe\\\"Ishmael"`,
    		` a\\\b`,
    		` "a\\\b"`,
    		// from 5.5  Some Common Tasks
    		` "\"Call Me Ishmael\""`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
Back to top