Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for extractID (0.17 sec)

  1. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * cancelled.
         *
         * <p>If the combiningCallable throws an {@code ExecutionException}, the cause of the thrown
         * {@code ExecutionException} will be extracted and used as the failure of the derived step.
         */
        public <V extends @Nullable Object> ClosingFuture<V> call(
            final CombiningCallable<V> combiningCallable, Executor executor) {
          Callable<V> callable =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  2. cmd/object-handlers.go

    		objInfo.ETag = origETag
    		enqueueTransitionImmediate(objInfo, lcEventSrc_s3PutObject)
    		os.Sweep()
    	}
    }
    
    // PutObjectExtractHandler - PUT Object extract is an extended API
    // based off from AWS Snowball feature to auto extract compressed
    // stream will be extracted in the same directory it is stored in
    // and the folder structures will be built out accordingly.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  3. fastapi/applications.py

            description: Annotated[
                Optional[str],
                Doc(
                    """
                    A description for the *path operation*.
    
                    If not provided, it will be extracted automatically from the docstring
                    of the *path operation function*.
    
                    It can contain Markdown.
    
                    It will be added to the generated OpenAPI (e.g. visible at `/docs`).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def ExtractTPUCopyWithDynamicShapeOpPass : Pass<"tf-extract-tpu-copy-with-dynamic-shape-op", "mlir::func::FuncOp"> {
      let summary = "Extract the TPUCopyWithDynamicShapeOp out of the host launch and place it on device launch";
    
      let description = [{
        This pass looks for TPUCopyWithDynamicShapeOp which wraps in a
        `tf_device.launch` with host device attribute. It extracts the ops and wrap
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  5. pkg/api/pod/util_test.go

    	}
    	if extraNames := extractedNames.Difference(expectedSecretPaths); len(extraNames) > 0 {
    		t.Logf("Extra secret names:\n%s", strings.Join(sets.List[string](extraNames), "\n"))
    		t.Error("Extra secret names extracted. Verify VisitPodSecretNames() is correctly extracting secret names")
    	}
    
    	// emptyPod is a stub containing empty object names
    	emptyPod := &api.Pod{
    		Spec: api.PodSpec{
    			Containers: []api.Container{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

          slice_begin, slice_end, slice_stride);
      return true;
    }
    
    OpFoldResult StridedSliceOp::fold(FoldAdaptor) {
      // Fold StridedSlice operation if it extracts statically known dimensions.
      //
      // For example,
      //
      //   %shape  = tf.Shape(%arg)                   // %arg: tensor<?x2x3x1xf32>
      //   %height = tf.StridedSlice(%shape, 1, 2, 1)
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

                                    PatternRewriter& rewriter) const override;
    };
    
    LogicalResult FoldConstantCaseOp::matchAndRewrite(
        TF::CaseOp op, PatternRewriter& rewriter) const {
      // Extract the constant cond value.
      DenseIntElementsAttr branch;
      if (!matchPattern(op.getBranchIndex(), m_Constant(&branch))) return failure();
    
      int index = *branch.getValues<int>().begin();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  8. cmd/server_test.go

    	response, err = s.client.Do(request)
    	c.Assert(err, nil)
    	// assert the http response status code.
    	c.Assert(response.StatusCode, http.StatusOK)
    
    	var buffer bytes.Buffer
    	// extract the body of the response.
    	responseBody, err := io.ReadAll(response.Body)
    	c.Assert(err, nil)
    	// assert the http response body content.
    	c.Assert(true, bytes.Equal(responseBody, buffer.Bytes()))
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      }
      if (padding_attr == tflite::Padding_VALID) {
        return kTfLitePaddingValid;
      }
    
      return inst->emitOpError() << "Invalid padding attribute: " << padding,
             std::nullopt;
    }
    
    // Extracts TfLitePoolParams from a TFL custom op.
    // Template parameter, TFLOp, should be a TFL custom op containing attributes
    // generated from TfLitePoolParams.
    // Returns std::nullopt if conversion fails.
    template <typename TFLOp>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      if (failed(InferShapeForFunctionReturnType(func))) return false;
    
      return false;
    }
    
    bool ShapeInference::InferShapeForXlaHostComputeMlir(
        _XlaHostComputeMlirOp host_compute_op) {
      // Extract the module and function.
      // The '_XlaHostComputeMlir` verifier verifies that `host_mlir_module`
      // attribute is well formed, so we just return in case of an error in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top