Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,255 for yearly (0.1 sec)

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

         * they crawl the page. Valid values are:
         * <ul>
         * <li>always</li>
         * <li>hourly</li>
         * <li>daily</li>
         * <li>weekly</li>
         * <li>monthly</li>
         * <li>yearly</li>
         * <li>never</li>
         * </ul>
         * The value "always" should be used to describe documents that change each
         * time they are accessed. The value "never" should be used to describe
         * archived URLs.
    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. src/internal/bytealg/index_s390x.go

    	// to happen *before* running the init functions of packages that
    	// the runtime depends on.
    	// TODO: it would really be nicer for internal/cpu to figure out this
    	// flag by itself. Then we wouldn't need to depend on quirks of
    	// early startup initialization order.
    	if cpu.S390X.HasVX {
    		MaxLen = 64
    	}
    }
    
    // Cutover reports the number of failures of IndexByte we should tolerate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Mar 04 19:49:44 UTC 2018
    - 1011 bytes
    - Viewed (0)
  3. src/runtime/lock_js.go

    // indicates with otherReady that some goroutine became ready.
    // TODO(drchase): need to understand if write barriers are really okay in this context.
    //
    //go:yeswritebarrierrec
    func beforeIdle(now, pollUntil int64) (gp *g, otherReady bool) {
    	delay := int64(-1)
    	if pollUntil != 0 {
    		// round up to prevent setTimeout being called early
    		delay = (pollUntil-now-1)/1e6 + 1
    		if delay > 1e9 {
    			// An arbitrary cap on how long to wait for a timer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:02:20 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/GenerateIdeaModule.java

    import java.io.File;
    
    /**
     * Generates an IDEA module file. If you want to fine tune the idea configuration
     * <p>
     * Please refer to interesting examples on idea configuration in {@link IdeaModule}.
     * <p>
     * At this moment nearly all configuration is done via {@link IdeaModule}.
     */
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    public abstract class GenerateIdeaModule extends XmlGeneratorTask<Module> {
    
        private IdeaModule module;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/Tag.java

        }
    
        enum FixedTag implements Tag {
            FROM_CACHE("FROM-CACHE", "badge badge-info", "The test is not really executed - its results are fetched from build cache."),
            FAILED("FAILED", "badge badge-danger", "Regression confidence > 99.9% despite retries."),
            NEARLY_FAILED("NEARLY-FAILED", "badge badge-warning", "Regression confidence > 90%, we're going to fail soon."),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. src/crypto/rsa/boring_test.go

    		// Clear the underlying BoringCrypto object cache.
    		privCache.Clear()
    
    		// Race to create the underlying BoringCrypto object.
    		// The ones that lose the race are prime candidates for
    		// being GC'ed too early if the finalizers are not being
    		// used correctly.
    		var wg sync.WaitGroup
    		for i := 0; i < 10; i++ {
    			wg.Add(1)
    			go func() {
    				defer wg.Done()
    				sum := make([]byte, 32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 00:16:30 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  7. src/crypto/tls/bogo_shim_test.go

    	expectSessionMiss = flag.Bool("expect-session-miss", false, "")
    
    	_                       = flag.Bool("enable-early-data", false, "")
    	_                       = flag.Bool("on-resume-expect-accept-early-data", false, "")
    	_                       = flag.Bool("expect-ticket-supports-early-data", false, "")
    	onResumeShimWritesFirst = flag.Bool("on-resume-shim-writes-first", false, "")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. src/go/types/check.go

    		return nil
    	}
    
    	// Avoid early returns here! Nearly all errors can be
    	// localized to a piece of syntax and needn't prevent
    	// type-checking of the rest of the package.
    
    	defer check.handleBailout(&err)
    	check.checkFiles(files)
    	return
    }
    
    // checkFiles type-checks the specified files. Errors are reported as
    // a side effect, not by returning early, to ensure that well-formed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/check.go

    		return nil
    	}
    
    	// Avoid early returns here! Nearly all errors can be
    	// localized to a piece of syntax and needn't prevent
    	// type-checking of the rest of the package.
    
    	defer check.handleBailout(&err)
    	check.checkFiles(files)
    	return
    }
    
    // checkFiles type-checks the specified files. Errors are reported as
    // a side effect, not by returning early, to ensure that well-formed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/schedule.go

    			case v.Op == OpArg || v.Op == OpSP || v.Op == OpSB:
    				// We want all the args as early as possible, for better debugging.
    				score[v.ID] = ScoreArg
    			case v.Op == OpInitMem:
    				// Early, but after args. See debug.go:buildLocationLists
    				score[v.ID] = ScoreInitMem
    			case v.Type.IsMemory():
    				// Schedule stores as early as possible. This tends to
    				// reduce register pressure.
    				score[v.ID] = ScoreMemory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top