Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 174 for Transformed (0.29 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/README.md

        %0 = tfl.add %arg0, %arg1 {fused_activation_function = "RELU6", tac.device = "GPU", tac.inference_type = "FLOAT"} : tensor<1xf32>
        return %0 : tensor<1xf32>
      }
    ```
    
    Will be transformed into:
    
    ```
     func private @func_2_CPU_FLOAT(%arg0: tensor<1xf32>, %arg1: tensor<1xf32>) -> tensor<2x1xf32> attributes {tac.device = "CPU", tac.inference_type = "FLOAT", tac.interface_name = "func_2"} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 29 18:32:13 UTC 2022
    - 11.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Lists.java

        return cartesianProduct(Arrays.asList(lists));
      }
    
      /**
       * Returns a list that applies {@code function} to each element of {@code fromList}. The returned
       * list is a transformed view of {@code fromList}; changes to {@code fromList} will be reflected
       * in the returned list and vice versa.
       *
       * <p>Since functions are not reversible, the transform is one-way and new items cannot be stored
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Tables.java

        // TODO(jlevy): Wrap factory to validate that the supplied maps are empty?
        return new StandardTable<>(backingMap, factory);
      }
    
      /**
       * Returns a view of a table where each value is transformed by a function. All other properties
       * of the table, such as iteration order, are left intact.
       *
       * <p>Changes in the underlying table are reflected in this view. Conversely, this view supports
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Tables.java

        // TODO(jlevy): Wrap factory to validate that the supplied maps are empty?
        return new StandardTable<>(backingMap, factory);
      }
    
      /**
       * Returns a view of a table where each value is transformed by a function. All other properties
       * of the table, such as iteration order, are left intact.
       *
       * <p>Changes in the underlying table are reflected in this view. Conversely, this view supports
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 22:45:41 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  5. maven-core/pom.xml

                  <!-- internal field removed -->
                  <exclude>org.apache.maven.graph.DefaultGraphBuilder#projectBuilder</exclude>
                  <!-- MavenPluginValidator has been transformed into an interface -->
                  <exclude>org.apache.maven.plugin.MavenPluginValidator</exclude>
                  <!-- Remove plexus logger -->
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/fields/selector.go

    	// Transform returns a new copy of the selector after TransformFunc has been
    	// applied to the entire selector, or an error if fn returns an error.
    	// If for a given requirement both field and value are transformed to empty
    	// string, the requirement is skipped.
    	Transform(fn TransformFunc) (Selector, error)
    
    	// Requirements converts this interface to Requirements to expose
    	// more detailed selection information.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 23 20:40:07 UTC 2020
    - 12.3K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

         * transformations on the remote repositories being used. For example if you replace existing repositories with
         * mirrors then it's easier to just replace the whole list with a new list of transformed repositories.
         *
         * @param repositories
         * @return This request, never {@code null}.
         */
        MavenExecutionRequest setRemoteRepositories(List<ArtifactRepository> repositories);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Dec 20 13:03:57 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/cgocall/cgocall.go

    //	func _(T, int) string { ... }
    //
    // In this way, the raw function bodies and const/var initializer
    // expressions are preserved but refer to the "cooked" objects imported
    // from "·this·", and none of the transformed package-level declarations
    // actually declares anything. In the example above, the reference to k
    // in the argument of the call to C.malloc resolves to "·this·".k, which
    // has an accurate type.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/Optional.java

       * <p><b>Java 9 users:</b> some use cases can be written with calls to {@code optional.stream()}.
       *
       * @since 11.0
       */
      public abstract Set<T> asSet();
    
      /**
       * If the instance is present, it is transformed with the given {@link Function}; otherwise,
       * {@link Optional#absent} is returned.
       *
       * <p><b>Comparison to {@code java.util.Optional}:</b> this method is similar to Java 8's {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/internal/build/DefaultBuildLifecycleControllerTest.groovy

        public TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
    
        def failure = new RuntimeException("main")
        def transformedException = new RuntimeException("transformed")
    
        def setup() {
            _ * exceptionAnalyser.transform(failure) >> transformedException
            def taskGraph = Stub(TaskExecutionGraphInternal)
            _ * gradleMock.taskGraph >> taskGraph
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top