Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 8,933 for For (0.17 sec)

  1. maven-core/src/site/apt/default-bindings.apt.vm

    ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    ~~ KIND, either express or implied.  See the License for the
    ~~ specific language governing permissions and limitations
    ~~ under the License.
    
     ---
     Plugins Bindings for Default Lifecycle Reference
     ---
     Hervé Boutemy
     ---
     2013-08-02
     ---
    
    Plugins Bindings for <<<default>>> Lifecycle Reference
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 08 17:45:23 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/DependencyResolutionRequest.java

        /**
         * Gets the project to resolve dependencies for.
         *
         * @return The project to resolve dependencies for or {@code null} if not set.
         */
        MavenProject getMavenProject();
    
        /**
         * Sets the project to resolve dependencies for.
         *
         * @param project The project to resolve dependencies for, may be {@code null}.
         * @return This request for chaining, never {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. dbflute_fess/dfprop/dependencyInjectionMap.dfprop

        #  The default attribute expression of DBFlute DI configuration for Spring and Lucy.
        #
        # @SpringOnly
        #; dbfluteBeansDefaultAttribute = default-lazy-init="true"
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o isDBFluteBeansGeneratedAsJavaConfig (NotRequired - Default true since 1.1)
        #  Does it generate JavaConfig for DBFluteBeans? (not use XML configuration)
        #
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 6.5K bytes
    - Viewed (0)
  4. maven-core/plugin-manager.txt

    * Execution model
    * Metadata model
    * Metadata tooling
     ** Metadata extractor
     ** Metadata reader
     ** Metadata writer
     ** Metadata adapter (if required for the target system)
    * Maven packaging and lifecycle
    * Maven test harness for plugin execution model
    * Eclipse IDE tooling for plugin execution model and metadata model
    
    - we also seem to have information like the plugin lifecycle model that's buried inside the maven execution model
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 22:45:13 UTC 2022
    - 12.9K bytes
    - Viewed (0)
  5. dbflute_fess/_readme.txt

    The directories are for DBFlute tasks:
    /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    dfprop     : Directory for DBFlute properties
    extlib     : Directory for Directory for library extension
    log        : Directory for log files of DBFlute tasks
    output/doc : Directory for auto-generated documents
    playsql    : Directory for ReplaceSchema task
    schema     : Directory for files of schema info
    - - - - - - - - - -/
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 04 22:46:31 UTC 2015
    - 2.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/api.go

    // Use Info.{Defs,Uses,Implicits} for the results of name resolution.
    //
    // Constant folding computes the exact constant value (constant.Value)
    // for every expression (syntax.Expr) that is a compile-time constant.
    // Use Info.Types[expr].Value for the results of constant folding.
    //
    // Type inference computes the type (Type) of every expression (syntax.Expr)
    // and checks for compliance with the language specification.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/hash/AbstractCompositeHashFunction.java

            for (Hasher hasher : hashers) {
              hasher.putLong(l);
            }
            return this;
          }
    
          @Override
          public Hasher putFloat(float f) {
            for (Hasher hasher : hashers) {
              hasher.putFloat(f);
            }
            return this;
          }
    
          @Override
          public Hasher putDouble(double d) {
            for (Hasher hasher : hashers) {
              hasher.putDouble(d);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 06 00:47:57 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/stackalloc.go

    	slots := f.Cache.allocIntSlice(f.NumValues())
    	defer f.Cache.freeIntSlice(slots)
    	for i := range slots {
    		slots[i] = -1
    	}
    
    	// Pick a stack slot for each value needing one.
    	used := f.Cache.allocBoolSlice(f.NumValues())
    	defer f.Cache.freeBoolSlice(used)
    	for _, b := range f.Blocks {
    		for _, v := range b.Values {
    			if !s.values[v.ID].needSlot {
    				s.nNotNeed++
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/math/MathTesting.java

        // Add boundary values manually to avoid over/under flow (this covers 2^N for 0 and 31).
        intValues.add(Integer.MAX_VALUE - 1, Integer.MAX_VALUE);
        // Add values up to 40. This covers cases like "square of a prime" and such.
        for (int i = 1; i <= 40; i++) {
          intValues.add(i);
        }
        // Now add values near 2^N for lots of values of N.
        for (int exponent : asList(2, 3, 4, 9, 15, 16, 17, 24, 25, 30)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/TreeRangeSetTest.java

      }
    
      public void testAddManyPairs() {
        for (int aLow = 0; aLow < 6; aLow++) {
          for (int aHigh = 0; aHigh < 6; aHigh++) {
            for (BoundType aLowType : BoundType.values()) {
              for (BoundType aHighType : BoundType.values()) {
                if ((aLow == aHigh && aLowType == OPEN && aHighType == OPEN) || aLow > aHigh) {
                  continue;
                }
                for (int bLow = 0; bLow < 6; bLow++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 16 19:54:45 UTC 2020
    - 24.3K bytes
    - Viewed (0)
Back to top