Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 186 for unwrapped (0.27 sec)

  1. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPublication.java

         * <ul>
         *     <li>A {@link org.gradle.api.artifacts.PublishArtifact} instance. Extension and classifier values are taken from the wrapped instance.</li>
         *     <li>An {@link org.gradle.api.tasks.bundling.AbstractArchiveTask} instance. Extension and classifier values are taken from the wrapped instance.</li>
         *     <li>Anything that can be resolved to a {@link java.io.File} via the {@link org.gradle.api.Project#file(Object)} method.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. pkg/volume/configmap/configmap.go

    func (b *configMapVolumeMounter) SetUpAt(dir string, mounterArgs volume.MounterArgs) error {
    	klog.V(3).Infof("Setting up volume %v for pod %v at %v", b.volName, b.pod.UID, dir)
    
    	// Wrap EmptyDir, let it do the setup.
    	wrapped, err := b.plugin.host.NewWrapperMounter(b.volName, wrappedVolumeSpec(), &b.pod, *b.opts)
    	if err != nil {
    		return err
    	}
    
    	optional := b.source.Optional != nil && *b.source.Optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. src/crypto/cipher/gcm.go

    	// productTable contains the first sixteen powers of the key, H.
    	// However, they are in bit reversed order. See NewGCMWithNonceSize.
    	productTable [16]gcmFieldElement
    }
    
    // NewGCM returns the given 128-bit, block cipher wrapped in Galois Counter Mode
    // with the standard nonce length.
    //
    // In general, the GHASH operation performed by this implementation of GCM is not constant-time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. JavadocStyleGuide.md

    `<pre>` is the default HTML tag for preformatted text.
    All code blocks and multi-line snippets should be wrapped in `<pre>{@code ...... }</pre>` at minimum.
    
    Code blocks can be optionally formatted and highlighted using [`highlight.js`](https://highlightjs.org/) with the `<code>` tag.
    For this, all code blocks and multi-line snippets should be wrapped in `<code class="language-*****"></code>`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/g3doc/tf_dialects.md

        (`tf_executor.NextIteration.Source` is the exception).
    2.  SSA values in this block can be implicitly dead. This means that every SSA
        value defined in a `tf_executor.graph` can be considered implicitly wrapped
        in a conceptual `dead_or<T>` structure, and includes a runtime flag
        indicating if the value is dead or present. Operations may have special case
        handling of dead values.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 16K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_program_key.cc

        } else {
          break;
        }
      }
      return false;
    }
    
    // Find a TPUCompileMlirOp that's after the given `preprocess_op`, under `func`.
    // Assumes the TPUCompileMlirOp is wrapped in a tf_device.launch.
    Operation* FindCompileSuccessor(Operation* func_op, Operation* preprocess_op) {
      bool in_launch = isa<tf_device::LaunchOp>(preprocess_op->getParentOp());
      Operation* preprocess_or_launch =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/FluentFuture.java

      /**
       * Converts the given {@code ListenableFuture} to an equivalent {@code FluentFuture}.
       *
       * <p>If the given {@code ListenableFuture} is already a {@code FluentFuture}, it is returned
       * directly. If not, it is wrapped in a {@code FluentFuture} that delegates all calls to the
       * original {@code ListenableFuture}.
       */
      public static <V extends @Nullable Object> FluentFuture<V> from(ListenableFuture<V> future) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 11 19:08:44 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/stmt.go

    	case ir.OCALLFUNC:
    		call := call.(*ir.CallExpr)
    
    		// If the callee is a named function, link to the original callee.
    		if wrapped := ir.StaticCalleeName(call.Fun); wrapped != nil {
    			wrapperFn.WrappedFunc = wrapped.Func
    		}
    
    		visit(&call.Fun)
    		visitList(call.Args)
    
    	case ir.OCALLINTER:
    		call := call.(*ir.CallExpr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

       * <p>A subcollection, such as a sublist, contains some of the values for a given key. Its
       * ancestor field points to the full wrapped collection with all values for the key. The
       * subcollection {@code refreshIfEmpty}, {@code removeIfEmpty}, and {@code addToMap} methods call
       * the corresponding methods of the full wrapped collection.
       */
      @WeakOuter
      class WrappedCollection extends AbstractCollection<V> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 48K bytes
    - Viewed (0)
  10. guava/src/com/google/common/eventbus/EventBus.java

     *
     * <h2>Dead Events</h2>
     *
     * <p>If an event is posted, but no registered subscribers can accept it, it is considered "dead."
     * To give the system a second chance to handle dead events, they are wrapped in an instance of
     * {@link DeadEvent} and reposted.
     *
     * <p>If a subscriber for a supertype of all events (such as Object) is registered, no event will
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 17 16:01:41 UTC 2023
    - 12.8K bytes
    - Viewed (0)
Back to top