Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 711 for yearly (0.13 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/internal/byteorder/byteorder.go

    package byteorder
    
    func LeUint16(b []byte) uint16 {
    	_ = b[1] // bounds check hint to compiler; see golang.org/issue/14808
    	return uint16(b[0]) | uint16(b[1])<<8
    }
    
    func LePutUint16(b []byte, v uint16) {
    	_ = b[1] // early bounds check to guarantee safety of writes below
    	b[0] = byte(v)
    	b[1] = byte(v >> 8)
    }
    
    func LeAppendUint16(b []byte, v uint16) []byte {
    	return append(b,
    		byte(v),
    		byte(v>>8),
    	)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 20:31:29 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/device_util.h

      bool IsEmpty() const;
    
      // Calls `func` on each DeviceId in the set.  Stops iterating early if `func`
      // return false.
      //
      // TODO(sanjoy): Change this to take a typed std::function if that's
      // performance neutral.
      template <typename FnTy>
      void ForEach(FnTy func) const {
        // This is really a poor man's iterator, we should consider writing a proper
        // iterator if this ends up being used widely.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 17:18:31 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. src/runtime/race/testdata/rangefunc_test.go

    }
    
    // TestRaceRangeFuncIterator races because x%5 can be equal to 4,
    // therefore foo can early exit.
    func TestRaceRangeFuncIterator(t *testing.T) {
    	x := foo(4)
    	t.Logf("foo(4)=%d", x)
    }
    
    // TestNoRaceRangeFuncIterator does not race because x%5 is never 5,
    // therefore foo's loop will not exit early, and this it will not race.
    func TestNoRaceRangeFuncIterator(t *testing.T) {
    	x := foo(5)
    	t.Logf("foo(5)=%d", x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/api/services/model/RootLocator.java

    /**
     * Interface used to locate the root directory for a given project.
     *
     * The root locator is usually looked up from the plexus container.
     * One notable exception is the computation of the early {@code session.rootDirectory}
     * property which happens very early.  The implementation used in this case
     * will be discovered using the JDK service mechanism.
     *
     * The default implementation will look for a {@code .mvn} child directory
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top