Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,946 for Transform (0.16 sec)

  1. src/cmd/vendor/golang.org/x/text/transform/transform.go

    	// error) but also returned nSrc inconsistent with the src argument.
    	errInconsistentByteCount = errors.New("transform: inconsistent byte count returned")
    
    	// errShortInternal means that an internal buffer is not large enough
    	// to make progress and the Transform operation must be aborted.
    	errShortInternal = errors.New("transform: short internal buffer")
    )
    
    // Transformer transforms bytes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/text/unicode/norm/transform.go

    // license that can be found in the LICENSE file.
    
    package norm
    
    import (
    	"unicode/utf8"
    
    	"golang.org/x/text/transform"
    )
    
    // Reset implements the Reset method of the transform.Transformer interface.
    func (Form) Reset() {}
    
    // Transform implements the Transform method of the transform.Transformer
    // interface. It may need to write segments of up to MaxSegmentSize at once.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/unicode/norm/transform.go

    // license that can be found in the LICENSE file.
    
    package norm
    
    import (
    	"unicode/utf8"
    
    	"golang.org/x/text/transform"
    )
    
    // Reset implements the Reset method of the transform.Transformer interface.
    func (Form) Reset() {}
    
    // Transform implements the Transform method of the transform.Transformer
    // interface. It may need to write segments of up to MaxSegmentSize at once.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/Transform.java

    import javax.annotation.Nullable;
    import java.io.File;
    
    /**
     * The actual code which needs to be executed to transform a file.
     *
     * This encapsulates the public interface {@link org.gradle.api.artifacts.transform.TransformAction} into an internal type.
     */
    public interface Transform extends Describable, TaskDependencyContainer {
        Class<?> getImplementationClass();
    
        ImmutableAttributes getFromAttributes();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/text/transform/transform.go

    	// error) but also returned nSrc inconsistent with the src argument.
    	errInconsistentByteCount = errors.New("transform: inconsistent byte count returned")
    
    	// errShortInternal means that an internal buffer is not large enough
    	// to make progress and the Transform operation must be aborted.
    	errShortInternal = errors.New("transform: short internal buffer")
    )
    
    // Transformer transforms bytes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 22:10:00 UTC 2020
    - 21.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/experimental/tac/tests/device-transform-nnapi.mlir

    // RUN: tac-opt-all-backends -tfl-device-transform-nnapi %s -split-input-file -verify-diagnostics | FileCheck %s
    
    func.func @mean_4d_keepdim(%arg0: tensor<1x48x48x512xf32>) -> tensor<1x1x1x512xf32> {
      %cst = arith.constant dense<[1, 2]> : tensor<2xi32>
      %0 = "tfl.mean"(%arg0, %cst) {keep_dims = true} : (tensor<1x48x48x512xf32>, tensor<2xi32>) -> tensor<1x1x1x512xf32>
      func.return %0 : tensor<1x1x1x512xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/experimental/tac/tests/device-transform-gpu.mlir

    // RUN: tac-opt-all-backends -tfl-device-transform-gpu %s -split-input-file -verify-diagnostics | FileCheck %s
    
    func.func @pack(%arg0: tensor<1xf32>, %arg1: tensor<1xf32>) -> tensor<2x1xf32> {
      %0 = "tfl.pack"(%arg0, %arg1) {axis = 0 : i32, values_count = 2 : i32} : (tensor<1xf32>, tensor<1xf32>) -> tensor<2x1xf32>
      func.return %0 : tensor<2x1xf32>
    }
    
    // CHECK:   func @pack(%[[VAL_0:.*]]: tensor<1xf32>, %[[VAL_1:.*]]: tensor<1xf32>) -> tensor<2x1xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/tests/e2e/device-transform-nnapi.mlir

    Christian Sigg <******@****.***> 1714640622 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/dsl/org.gradle.api.artifacts.transform.TransformAction.xml

            <title>Methods</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>transform</td>
                </tr>
            </table>
        </section>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/dsl/org.gradle.api.artifacts.transform.TransformSpec.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top