Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 533 for Transformed (0.17 sec)

  1. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/DefaultArtifactVersionTest.java

            checkVersionParsing("0.2.09", 0, 0, 0, 0, "0.2.09");
            checkVersionParsing("2.0-01", 2, 0, 0, 0, "01");
    
            // version schemes not really supported: fully transformed as qualifier
            checkVersionParsing("1.0.1b", 0, 0, 0, 0, "1.0.1b");
            checkVersionParsing("1.0M2", 0, 0, 0, 0, "1.0M2");
            checkVersionParsing("1.0RC2", 0, 0, 0, 0, "1.0RC2");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/tests/cast_bf16_ops_to_f32.mlir

    // CHECK: %[[identity:.*]] = "tf.IdentityN"(%[[batch_matmul]]) {device = ""} : (tensor<1x1x2xf32>) -> tensor<1x1x2xf32>
    // CHECK: return %[[identity]] : tensor<1x1x2xf32>
    
    // Tests that an AddV2 op accepting two bf16 operands is transformed into
    // an AddV2 op that accepts two fp32 operands.
    func.func @cast_bf16_add_v2_to_fp32(%arg0: tensor<2xbf16>, %arg1: tensor<2xbf16>) -> tensor<2xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/decompose_optionals.cc

        // Adjust the function arguments to match the types of the caller.
        // So e.g.
        //
        // func.func @f(%x : foo) {
        // }
        // ...
        // func.call @f(%x : bar)
        //
        // will be transformed to
        //
        // func.func @f(%x : bar) {
        //   ...
        // }
        // ...
        // func.call @f(%x : bar)
    
        CallInterfaceCallable callable = call.getCallableForCallee();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/CollectionUtils.java

                destination[i] = transformer.transform(list[i]);
            }
            return destination;
        }
    
        public static <R, I> List<R> collect(I[] list, InternalTransformer<? extends R, ? super I> transformer) {
            return collect(Arrays.asList(list), transformer);
        }
    
        public static <R, I> Set<R> collect(Set<? extends I> set, InternalTransformer<? extends R, ? super I> transformer) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classpath/DefaultClassPath.java

            }
            if (other.isEmpty()) {
                return this;
            }
            if (other instanceof TransformedClassPath) {
                // Any combination of TransformedClassPath and other ClassPath has to remain transformed.
                return ((TransformedClassPath) other).prepend(this);
            }
            return new DefaultClassPath(concat(files, other.getAsFiles()));
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  6. src/net/netip/slow_test.go

    //
    // This function performs two transformations:
    //   - The last 32 bits of an IPv6 address may be represented in
    //     IPv4-style dotted quad form, as in 1:2:3:4:5:6:7.8.9.10. That
    //     address is transformed to its hex equivalent,
    //     e.g. 1:2:3:4:5:6:708:90a.
    //   - An address may contain one "::", which expands into as many
    //     16-bit blocks of zeros as needed to make the address its correct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/LocalFileDependencyBackedArtifactSet.java

            @Override
            public ImmutableCapabilities getCapabilities() {
                return ImmutableCapabilities.EMPTY;
            }
        }
    
        /**
         * An artifact set that contains a single transformed local file.
         */
        private static class TransformedLocalFileArtifactSet extends AbstractTransformedArtifactSet implements FileCollectionInternal.Source {
            private final SingletonFileResolvedVariant delegate;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/AbstractTransformExecution.java

        @Override
        public InputFingerprinter getInputFingerprinter() {
            return inputFingerprinter;
        }
    
        private static File getOutputDir(File workspace) {
            return new File(workspace, "transformed");
        }
    
        private static File getResultsFile(File workspace) {
            return new File(workspace, "results.bin");
        }
    
        @Override
        public ExecutionBehavior getExecutionBehavior() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. cmd/object-lambda-handlers.go

    		}
    		if apiErr.HTTPStatusCode == http.StatusOK {
    			return nil
    		}
    		return apiErr
    	}
    	return nil
    }
    
    // GetObjectLamdbaHandler - GET Object with transformed data via lambda functions
    // ----------
    // This implementation of the GET operation applies lambda functions and returns the
    // response generated via the lambda functions. To use this API, you must have READ access
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/CacheControl.kt

         * Unsatisfiable Request` response will be returned.
         */
        fun onlyIfCached() = commonOnlyIfCached()
    
        /** Don't accept a transformed response. */
        fun noTransform() = commonNoTransform()
    
        fun immutable() = commonImmutable()
    
        /**
         * Sets the maximum age of a cached response. If the cache response's age exceeds [maxAge], it
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top