Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 207 for Hour (0.07 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Gradle 8.4 now configures XML parsers with security features enabled.
    If your build logic has dependencies on old XML parsers that don't support secure parsing, your build may now fail.
    If you encounter a failure, check and update or remove any dependency on legacy XML parsers.
    
    If you are unable to upgrade XML parsers coming from your build logic dependencies, you can force the use of the XML parsers built into the JVM.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     * property or method which your script uses is delegated through to the associated <code>Project</code> object.  This
     * means, that you can use any of the methods and properties on the <code>Project</code> interface directly in your script.
     * </p><p>For example:
     * <pre>
     * defaultTasks('some-task')  // Delegates to Project.defaultTasks()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  3. src/runtime/mgcpacer.go

    		// We've already done more scan work than expected. Because our expectation
    		// is based on a steady-state scannable heap size, we assume this means our
    		// heap is growing. Compute a new heap goal that takes our existing runway
    		// computed for scanWorkExpected and extrapolates it to maxScanWork, the worst-case
    		// scan work. This keeps our assist ratio stable if the heap continues to grow.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[upgrading_version_7]]
    = Upgrading your build from Gradle 7.x to 8.0
    
    This chapter provides the information you need to migrate your Gradle 7.x builds to Gradle 8.0.
    For migrating from Gradle 6.x or earlier, complete the  <<upgrading_version_6.adoc#upgrading_version_6, older migration guide>> first.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/reflect/TypeToken.java

          // if "formalType" is <? super Foo>, "this" can be:
          // Foo, SuperFoo, <? super Foo> or <? super SuperFoo>.
          return every(your.getUpperBounds()).isSupertypeOf(runtimeType)
              && every(your.getLowerBounds()).isSubtypeOf(runtimeType);
        }
        return canonicalizeWildcardsInType(runtimeType).equals(canonicalizeWildcardsInType(formalType));
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Iterators.java

        checkNotNull(a);
        checkNotNull(b);
        checkNotNull(c);
        return concat(consumingForArray(a, b, c));
      }
    
      /**
       * Combines four iterators into a single iterator. The returned iterator iterates across the
       * elements in {@code a}, followed by the elements in {@code b}, followed by the elements in
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Iterators.java

        checkNotNull(a);
        checkNotNull(b);
        checkNotNull(c);
        return concat(consumingForArray(a, b, c));
      }
    
      /**
       * Combines four iterators into a single iterator. The returned iterator iterates across the
       * elements in {@code a}, followed by the elements in {@code b}, followed by the elements in
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/reflect/TypeToken.java

          // if "formalType" is <? super Foo>, "this" can be:
          // Foo, SuperFoo, <? super Foo> or <? super SuperFoo>.
          return every(your.getUpperBounds()).isSupertypeOf(runtimeType)
              && every(your.getLowerBounds()).isSubtypeOf(runtimeType);
        }
        return canonicalizeWildcardsInType(runtimeType).equals(canonicalizeWildcardsInType(formalType));
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  9. .bazelrc

    # configs. If your project fails to build with Clang, you can use these
    # unsupported flags to replace the release flags in your build command.
    # However, please note that the old toolchain is no longer officially supported
    # by TensorFlow and the unsupported configs will be removed soon b/299962977. We
    # strongly recommend that you migrate to Clang as your compiler for TensorFlow
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. src/runtime/mgcscavenge.go

    		// Compute the huge page boundary above our candidate.
    		pagesPerHugePage := physHugePageSize / pageSize
    		hugePageAbove := uint(alignUp(uintptr(start), pagesPerHugePage))
    
    		// If that boundary is within our current candidate, then we may be breaking
    		// a huge page.
    		if hugePageAbove <= end {
    			// Compute the huge page boundary below our candidate.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
Back to top