Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 395 for subTable (0.24 sec)

  1. tensorflow/c/experimental/saved_model/public/signature_def_function.h

    // bound to `func`, which is bound to the TF_SavedModel it was loaded from.
    TF_CAPI_EXPORT extern TF_SignatureDefFunctionMetadata*
    TF_SignatureDefFunctionGetMetadata(TF_SignatureDefFunction* func);
    
    // Returns a TFE_Op suitable for executing this function. Caller must provide
    // all function inputs in `inputs`, and must not add any additional inputs on
    // the returned op. (i.e. don't call TFE_OpAddInput or TFE_OpAddInputList).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 17 23:03:48 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  2. testing/soak/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSoakTest.groovy

            result = executer
                    .withTasks("compileJava", "-Porg.gradle.java.installations.auto-detect=false")
                    .run()
    
            then: "suitable JDK gets auto-provisioned"
            javaClassFile("Foo.class").assertExists()
            assertJdkWasDownloaded()
    
            when: "the marker file of the auto-provisioned JDK is deleted, making the JDK not detectable"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 16:13:09 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/error.go

    }
    
    func (k *notRegisteredErr) Error() string {
    	if k.t != nil && k.target != nil {
    		return fmt.Sprintf("%v is not suitable for converting to %q in scheme %q", k.t, k.target, k.schemeName)
    	}
    	nullGVK := schema.GroupVersionKind{}
    	if k.gvk != nullGVK && k.target != nil {
    		return fmt.Sprintf("%q is not suitable for converting to %q in scheme %q", k.gvk.GroupVersion(), k.target, k.schemeName)
    	}
    	if k.t != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 19 21:24:36 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  4. platforms/software/resources/src/main/java/org/gradle/internal/resource/metadata/ExternalResourceMetaData.java

         *
         * For HTTP this is likely the value of the ETag header but it may be any kind of opaque checksum.
         *
         * @return The entity tag, or null if there was no advertised or suitable etag.
         */
        @Nullable
        String getEtag();
    
        /**
         * The advertised sha-1 of the external resource.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/AsyncFunction.java

      /**
       * Returns an output {@code Future} to use in place of the given {@code input}. The output {@code
       * Future} need not be {@linkplain Future#isDone done}, making {@code AsyncFunction} suitable for
       * asynchronous derivations.
       *
       * <p>Throwing an exception from this method is equivalent to returning a failing {@code Future}.
       */
      ListenableFuture<O> apply(@ParametricNullness I input) throws Exception;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 20 10:45:35 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/AsyncCallable.java

    @ElementTypesAreNonnullByDefault
    public interface AsyncCallable<V extends @Nullable Object> {
      /**
       * Computes a result {@code Future}. The output {@code Future} need not be {@linkplain
       * Future#isDone done}, making {@code AsyncCallable} suitable for asynchronous derivations.
       *
       * <p>Throwing an exception from this method is equivalent to returning a failing {@link
       * ListenableFuture}.
       */
      ListenableFuture<V> call() throws Exception;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Dec 14 15:53:12 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/ConsoleRenderer.java

    package org.gradle.internal.logging;
    
    import org.gradle.internal.UncheckedException;
    
    import java.io.File;
    import java.net.URI;
    import java.net.URISyntaxException;
    
    /**
     * Renders information in a format suitable for logging to the console.
     */
    public class ConsoleRenderer {
        /**
         * Renders a path name as a file URL that is likely recognized by consoles.
         */
        public String asClickableFileUrl(File path) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. src/go/types/exprstring.go

    // Shortened representations are suitable for user interfaces but may not
    // necessarily follow Go syntax.
    func ExprString(x ast.Expr) string {
    	var buf bytes.Buffer
    	WriteExpr(&buf, x)
    	return buf.String()
    }
    
    // WriteExpr writes the (possibly shortened) string representation for x to buf.
    // Shortened representations are suitable for user interfaces but may not
    // necessarily follow Go syntax.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 19:31:44 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/README.md

    The SavedModel format is a directory structure which contains a SavedModel proto
    and some other stuff (mostly binary files of some sort) in it. That makes it not
    suitable for use as a test input, since it is not human-readable. Even just the
    text proto for the SavedModel proto is difficult to use as a test input, since a
    small piece of Python code (e.g. just a tf.Add) generates thousands of lines of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 02 03:37:19 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/initialization/GradleApiSpecProvider.java

    import com.google.common.collect.ImmutableSet;
    
    import java.util.Set;
    
    /**
     * Extension point for Gradle modules to extend the set of packages and
     * resource prefixes exported by the Gradle API ClassLoader.
     *
     * A SPI suitable for use with Java's {@link java.util.ServiceLoader}.
     */
    public interface GradleApiSpecProvider {
    
        Spec get();
    
        interface Spec {
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 29 12:18:55 UTC 2019
    - 2.4K bytes
    - Viewed (0)
Back to top