Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for lastmod (0.26 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java

        }
    
        public void setLoc(final String loc) {
            this.loc = loc;
        }
    
        @Override
        public String getLastmod() {
            return lastmod;
        }
    
        public void setLastmod(final String lastmod) {
            this.lastmod = lastmod;
        }
    
        public String getChangefreq() {
            return changefreq;
        }
    
        public void setChangefreq(final String changefreq) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapFile.java

        public String getLastmod() {
            return lastmod;
        }
    
        public void setLastmod(final String lastmod) {
            this.lastmod = lastmod;
        }
    
        @Override
        public boolean equals(final Object obj) {
            if (!(obj instanceof final SitemapFile sitemapUrl)) {
                return false;
            }
            if (StringUtil.equals(loc, sitemapUrl.loc) && StringUtil.equals(lastmod, sitemapUrl.lastmod)) {
                return true;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/SitemapsHelper.java

            private static final String PRIORITY_ELEMENT = "priority";
    
            private static final String CHANGEFREQ_ELEMENT = "changefreq";
    
            private static final String LASTMOD_ELEMENT = "lastmod";
    
            private static final String LOC_ELEMENT = "loc";
    
            private static final String URL_ELEMENT = "url";
    
            private SitemapSet sitemapSet;
    
            private SitemapUrl sitemapUrl;
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. src/net/http/fs_test.go

    		t.Fatalf("Got body %q; want %q", b, indexContents)
    	}
    	res.Body.Close()
    
    	lastMod := res.Header.Get("Last-Modified")
    	if lastMod != fileModStr {
    		t.Fatalf("initial Last-Modified = %q; want %q", lastMod, fileModStr)
    	}
    
    	req, _ := NewRequest("GET", ts.URL, nil)
    	req.Header.Set("If-Modified-Since", lastMod)
    
    	c := ts.Client()
    	res, err = c.Do(req)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  5. test/fixedbugs/issue66066.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import "fmt"
    
    func main() {
    	testMod()
    	testMul()
    }
    
    //go:noinline
    func mod3(x uint32) uint64 {
    	return uint64(x % 3)
    }
    
    func testMod() {
    	got := mod3(1<<32 - 1)
    	want := uint64((1<<32 - 1) % 3)
    	if got != want {
    		fmt.Printf("testMod: got %x want %x\n", got, want)
    	}
    
    }
    
    //go:noinline
    func mul3(a uint32) uint64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 677 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/check.go

    				if m == nil {
    					continue
    				}
    				if lastmem[b.ID] != nil && lastmem[b.ID] != m {
    					f.Fatalf("two live memory values in %s: %s and %s", b, lastmem[b.ID], m)
    				}
    				lastmem[b.ID] = m
    			}
    		}
    	}
    	// Propagate last live memory through storeless blocks.
    	for {
    		changed := false
    		for _, b := range f.Blocks {
    			if lastmem[b.ID] != nil {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. src/net/http/httputil/persist.go

    		return nil, errClosed
    	}
    	r := sc.r
    	lastbody := sc.lastbody
    	sc.lastbody = nil
    	sc.mu.Unlock()
    
    	// Make sure body is fully consumed, even if user does not call body.Close
    	if lastbody != nil {
    		// body.Close is assumed to be idempotent and multiple calls to
    		// it should return the error that its first invocation
    		// returned.
    		err = lastbody.Close()
    		if err != nil {
    			sc.mu.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. cmd/bucket-stats.go

    type ReplicationLastHour struct {
    	Totals  [60]AccElem
    	LastMin int64
    }
    
    // Merge data of two ReplicationLastHour structure
    func (l ReplicationLastHour) merge(o ReplicationLastHour) (merged ReplicationLastHour) {
    	if l.LastMin > o.LastMin {
    		o.forwardTo(l.LastMin)
    		merged.LastMin = l.LastMin
    	} else {
    		l.forwardTo(o.LastMin)
    		merged.LastMin = o.LastMin
    	}
    
    	for i := range merged.Totals {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/TestClassExecutionEventGenerator.java

        }
    
        //Extract class name from the fully qualified class name
        private static String classDisplayName(String className) {
            int lastDot = className.lastIndexOf('.');
            if (lastDot > 0) {
                return className.substring(lastDot + 1);
            } else {
                return className;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:24 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. okhttp-sse/src/main/kotlin/okhttp3/sse/internal/ServerSentEventReader.kt

    import okio.BufferedSource
    import okio.ByteString.Companion.encodeUtf8
    import okio.Options
    
    class ServerSentEventReader(
      private val source: BufferedSource,
      private val callback: Callback,
    ) {
      private var lastId: String? = null
    
      interface Callback {
        fun onEvent(
          id: String?,
          type: String?,
          data: String,
        )
    
        fun onRetryChange(timeMs: Long)
      }
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top