Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 763 for certChain (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/topological_sort.h

    // sort (lib/Transforms/TopologicalSort.cpp) but also takes a priority
    // function to determine the next op to emit in the case of ambiguity. This
    // makes it possible to group operations by certain attributes. For example,
    // the order_by_dialect pass uses this function to group by dialect.
    // Only the operations nested directly under the block will be reordered.
    // Nested blocks will be left alone.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 08 17:01:11 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/bootstrap/EntryPoint.java

    import java.io.PrintStream;
    
    /**
     * An entry point is the point at which execution will never return from.
     * <p>
     * Its purpose is to consistently apply our completion logic of forcing the JVM
     * to exit at a certain point instead of waiting for all threads to die, and to provide
     * some consistent unhandled exception catching.
     * <p>
     * Entry points may be nested, as is the case when a foreground daemon is started.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/preflight/checks_linux.go

    	return checks
    }
    
    // addSwapCheck adds a swap check
    func addSwapCheck(checks []Checker) []Checker {
    	checks = append(checks, SwapCheck{})
    	return checks
    }
    
    // addExecChecks adds checks that verify if certain binaries are in PATH
    func addExecChecks(checks []Checker, execer utilsexec.Interface) []Checker {
    	checks = append(checks,
    		InPathCheck{executable: "crictl", mandatory: false, exec: execer},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/net/MediaType.java

       * situations for compatibility.
       *
       * @since 17.0
       */
      public static final MediaType WOFF = createConstant(APPLICATION_TYPE, "font-woff");
    
      /**
       * <a href="https://tools.ietf.org/html/rfc8081">RFC 8081</a> declares {@link #FONT_WOFF2
       * font/woff2} to be the correct media type for WOFF2, but this may be necessary in certain
       * situations for compatibility.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSubtypingComponent.kt

         * explicitly. In most cases, explicit type error handling should be preferred.
         *
         * As a motivating example, consider that we want to find all functions which can be called with an argument of a certain type and show
         * them to a user. The user has provided a type `List<>` with an unspecified type argument, which translates to `List<ERROR>`. We still
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JavaToolchainSpec.java

     * <p>
     * Even though specification properties can be configured independently,
     * the configuration must follow certain rules in order to form a  specification.
     * <p>
     * A {@code JavaToolchainSpec} is considered valid in two cases:
     * <ul>
     * <li> when no properties have been set, i.e. the specification is empty;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/concurrent/ConcurrentSpec.groovy

     *
     * <p>This class maintains a set of instants reached by the test. An instant records the point in time that a test thread reached a certain point of its execution.
     * Once the test threads have completed, you can make assertions about the ordering of the various instants relative to each other. You can also block until a given
     * instant has been reached.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_android_projects.adoc

    This guide is about Gradle’s build cache, but you may have also heard about the https://developer.android.com/studio/build/build-cache[Android build cache].
    These are different things.
    The Android cache is internal to certain tasks in the Android plugin, and will eventually be removed in favor of native Gradle support.
    
    == Why use the build cache?
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 12:54:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. LICENSE

      Most GNU software, including some libraries, is covered by the
    ordinary GNU General Public License.  This license, the GNU Lesser
    General Public License, applies to certain designated libraries, and
    is quite different from the ordinary General Public License.  We use
    this license for certain libraries in order to permit linking those
    libraries into non-free programs.
    
      When a program is linked with a library, whether statically or using
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 18 20:25:38 UTC 2016
    - 25.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgram.kt

     * limitations under the License.
     */
    
    package org.gradle.kotlin.dsl.execution
    
    
    /**
     * The result of partially evaluating a Kotlin DSL [program][Program] of a certain [kind][ProgramKind]
     * against a given [target][ProgramTarget].
     *
     * @see PartialEvaluator.reduce
     */
    internal
    sealed class ResidualProgram {
    
        /**
         * A static residue, can be compiled ahead of time.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top