Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 56 for Thu (0.02 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-active-collections/1.0-beta-1/plexus-active-collections-1.0-beta-1.jar

    scm:svn:https://svn.codehaus.org/plexus/tags/plexus-active-collections-1.0-beta-1 scm:svn:https://svn.codehaus.org/plexus/tags/plexus-active-collections-1.0-beta-1 META-INF/maven/org.codehaus.plexus/plexus-active-collections/pom.properties #Generated by Maven #Thu Mar 22 20:31:27 EDT 2007 version=1.0-beta-1 groupId=org.codehaus.plexus artifactId=plexus-active-collections...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 15.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java

            response.header("Pragma", "no-cache");
            response.header("Cache-Control", "no-cache");
            response.header("Expires", "Thu, 01 Dec 1994 16:00:00 GMT");
            response.contentTypeOctetStream();
            return response.stream(out -> {
                try {
                    downloadObject(getObjectName(pi.getPath(), pi.getName()), out);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. src/go/printer/testdata/declarations.golden

    		short, long	string
    	}
    	var (
    		Sunday		= day{0, "SUN", "Sunday"}
    		Monday		= day{1, "MON", "Monday"}
    		Tuesday		= day{2, "TUE", "Tuesday"}
    		Wednesday	= day{3, "WED", "Wednesday"}
    		Thursday	= day{4, "THU", "Thursday"}
    		Friday		= day{5, "FRI", "Friday"}
    		Saturday	= day{6, "SAT", "Saturday"}
    	)
    }
    
    // formatting of multi-line variable declarations
    var a1, b1, c1 int	// all on one line
    
    var a2, b2,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  4. src/net/textproto/reader_test.go

    Non-Interned: test
    
    `, "\n", "\r\n", -1)
    
    var serverHeaders = strings.Replace(`Content-Type: text/html; charset=utf-8
    Content-Encoding: gzip
    Date: Thu, 27 Sep 2012 09:03:33 GMT
    Server: Google Frontend
    Cache-Control: private
    Content-Length: 2298
    VIA: 1.1 proxy.example.com:80 (XXX/n.n.n-nnn)
    Connection: Close
    Non-Interned: test
    
    `, "\n", "\r\n", -1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

            return asStream(id)//
                    .header("Pragma", "no-cache")//
                    .header("Cache-Control", "no-cache")//
                    .header("Expires", "Thu, 01 Dec 1994 16:00:00 GMT")//
                    .header("Content-Type", "application/x-ndjson")//
                    .stream(out -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. src/go/printer/testdata/declarations.input

    	var (
    		Sunday = day{ 0, "SUN", "Sunday" }
    		Monday = day{ 1, "MON", "Monday" }
    		Tuesday = day{ 2, "TUE", "Tuesday" }
    		Wednesday = day{ 3, "WED", "Wednesday" }
    		Thursday = day{ 4, "THU", "Thursday" }
    		Friday = day{ 5, "FRI", "Friday" }
    		Saturday = day{ 6, "SAT", "Saturday" }
    	)
    }
    
    
    // formatting of multi-line variable declarations
    var a1, b1, c1 int  // all on one line
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  7. internal/bucket/lifecycle/lifecycle.go

    // The expected transition or restore time is always a midnight time following the object
    // modification time plus the number of transition/restore days.
    //
    //	e.g. If the object modtime is `Thu May 21 13:42:50 GMT 2020` and the object should
    //	    transition in 1 day, then the expected transition time is `Fri, 23 May 2020 00:00:00 GMT`
    func ExpectedExpiryTime(modTime time.Time, days int) time.Time {
    	if days == 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  8. pkg/util/iptables/iptables_test.go

    	iptablesCmd := iptablesCommand(protocol)
    	iptablesSaveCmd := iptablesSaveCommand(protocol)
    
    	output := fmt.Sprintf(`# Generated by %s on Thu Jan 19 11:38:09 2017
    *filter
    :INPUT ACCEPT [15079:38410730]
    :FORWARD ACCEPT [0:0]
    :OUTPUT ACCEPT [11045:521562]
    COMMIT
    # Completed on Thu Jan 19 11:38:09 2017`, iptablesSaveCmd+version)
    
    	stderrOutput := "#STDERR OUTPUT" // SaveInto() should should NOT capture stderr into the buffer
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 08 15:21:59 UTC 2023
    - 46.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            response.header("Pragma", "no-cache");
            response.header("Cache-Control", "no-cache");
            response.header("Expires", "Thu, 01 Dec 1994 16:00:00 GMT");
        }
    
        protected void writeFileName(final StreamResponse response, final ResponseData responseData) {
            String charset = responseData.getCharSet();
            if (charset == null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:58:45 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    ----
    
    And perform verification:
    
    ----
    $ gpg --verify j2objc-annotations-1.1.jar.asc
    gpg: assuming signed data in 'j2objc-annotations-1.1.jar'
    gpg: Signature made Thu 19 Jan 2017 12:06:51 AM CET
    gpg:                using RSA key 29579F18FA8FD93B
    gpg: BAD signature from "Tom Ball <****>" [unknown]
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
Back to top