Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 260 for Transformed (0.28 sec)

  1. 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)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

                    eachFile { fcd -> fcd.relativePath = fcd.relativePath.prepend('transformed') }
                }
            '''.stripIndent()
    
            when:
            run 'copy'
    
            then:
            file('dest').assertHasDescendants(
                'transformedAgain/transformed/subdir/one/one.a',
                'transformedAgain/transformed/subdir/two/two.a',
                'subdir/one',
                'subdir/two'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/Response.kt

     */
    class Response internal constructor(
      /**
       * The request that initiated this HTTP response. This is not necessarily the same request issued
       * by the application:
       *
       * * It may be transformed by the user's interceptors. For example, an application interceptor
       *   may add headers like `User-Agent`.
       * * It may be the request generated in response to an HTTP redirect or authentication
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. 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
    - 14.6K bytes
    - Viewed (0)
  5. src/compress/bzip2/bzip2.go

    	// tree indexes telling us which tree to use for each 50 symbol block.
    	numSelectors := br.ReadBits(15)
    	treeIndexes := make([]uint8, numSelectors)
    
    	// The tree indexes are move-to-front transformed and stored as unary
    	// numbers.
    	mtfTreeDecoder := newMTFDecoderWithRange(numHuffmanTrees)
    	for i := range treeIndexes {
    		c := 0
    		for {
    			inc := br.ReadBits(1)
    			if inc == 0 {
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/MavenComponentParser.java

        }
    
        /**
         * Converts the DSL representation of a variant's dependencies to one suitable for a POM.
         * Dependencies are transformed by querying the provided {@link VariantDependencyResolver}
         * for their resolved coordinates.
         */
        private static class MavenDependencyFactory {
    
            private final VariantWarningCollector warnings;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 18:52:27 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransform.java

                    //
                    // This may also happen when a transform takes upstream dependencies and the dependencies are transformed using a different transform
                    // In this case, the main thread that schedules the work should isolate the transform parameters prior to scheduling the work. However, the dependencies may
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

      // separate pass.
      pass_manager.addPass(mlir::odml::CreateUnfoldSplatConstantPass());
    
      if (pass_config.enable_stablehlo_quantizer) {
        // When using StableHLO Quantizer, MHLO ops should be transformed back into
        // StableHLO because the quantizer takes StableHLO dialect as its input.
        pass_manager.addPass(mlir::mhlo::createHloLegalizeToStablehloPass());
      }
    }
    
    void AddPostQuantizationStableHloToTfPasses(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Collections2.java

       * fromCollection} supports them.
       *
       * <p>The returned collection isn't threadsafe or serializable, even if {@code fromCollection} is.
       *
       * <p>When a live view is <i>not</i> needed, it may be faster to copy the transformed collection
       * and use the copy.
       *
       * <p>If the input {@code Collection} is known to be a {@code List}, consider {@link
       * Lists#transform}. If only an {@code Iterable} is available, use {@link Iterables#transform}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tpu_space_to_depth_pass.cc

      return std::nullopt;
    }
    
    // Checks if a convoluton can apply SpaceToDepth transform.
    // Only the first convolution in the graph whose batch size smaller than 8
    // and its input feature size smaller than 8 can be transformed.
    std::optional<BlockArgumentInfo> GetConv2DInputArgNum(TF::Conv2DOp conv2d) {
      if (conv2d.getDataFormat() != "NHWC" || conv2d.getStrides().size() != 4) {
        return std::nullopt;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 29.3K bytes
    - Viewed (0)
Back to top