Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 408 for transformTo (0.24 sec)

  1. src/cmd/vendor/golang.org/x/text/cases/map.go

    	}
    }
    
    func noSpan(c *context) bool {
    	c.err = transform.ErrEndOfSpan
    	return false
    }
    
    // TODO: consider a similar special case for the fast majority lower case. This
    // is a bit more involved so will require some more precise benchmarking to
    // justify it.
    
    type undUpperCaser struct{ transform.NopResetter }
    
    // undUpperCaser implements the Transformer interface for doing an upper case
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classpath/TransformedClassPathTest.groovy

    class TransformedClassPathTest extends Specification {
        def "transformed jars are returned when present"() {
            given:
            TransformedClassPath cp = transformedClassPath("original.jar": "transformed.jar")
    
            expect:
            cp.findTransformedEntryFor(file("original.jar")) == file("transformed.jar")
        }
    
        def "transformed jars are returned in the list of transformed files"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 11:14:30 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueSupplier.java

            public T getWithoutSideEffect() throws IllegalStateException {
                return result;
            }
    
            @Override
            public <R> Value<R> transform(Transformer<? extends R, ? super T> transformer) {
                R transformResult = transformer.transform(result);
                if (transformResult == null || sideEffect == null) {
                    return Value.ofNullable(transformResult);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 20:31:29 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/DefaultFilePropertyFactory.java

            private final String path;
    
            public PathToDirectoryTransformer(String path) {
                this.path = path;
            }
    
            @Override
            public Directory transform(Directory directory) {
                return directory.dir(path);
            }
        }
    
        private static class ToFileTransformer implements Transformer<File, FileSystemLocation> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:53:33 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/decompose_optionals.cc

    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    #include "mlir/Transforms/GreedyPatternRewriteDriver.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_types.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/passes.h"
    
    namespace mlir {
    namespace TF {
    
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

    struct TrivialTransformInfo {
      // Can the op be transformed trivially?
      bool can_transform = false;
    
      // List of callee names (one for each region).
      llvm::SmallVector<StringRef, 2> callee_names;
    
      // Analyzes the given calls (from regions attached to the same parent op) to
      // check if the parent op be transformed to functional form trivially (i.e.,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformExecutionBuildOperationIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.integtests.resolve.transform
    
    import com.google.common.collect.Iterables
    import groovy.transform.NamedVariant
    import groovy.transform.stc.ClosureParams
    import groovy.transform.stc.FromString
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.BuildOperationsFixture
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

            assertTrue(transformer.isValidUrl("http://www.example.com"));
            assertTrue(transformer.isValidUrl("http://www.example.com/aaa"));
            assertTrue(transformer.isValidUrl("https://www.example.com"));
            assertTrue(transformer.isValidUrl("://www.example.com"));
            assertTrue(transformer.isValidUrl("//www.example.com"));
    
            assertFalse(transformer.isValidUrl(null));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  9. 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)
  10. android/guava-tests/test/com/google/common/collect/ListsTest.java

        List<String> transform = Lists.transform(listIteratorOnlyList, SOME_FUNCTION);
        assertTrue(
            Iterables.elementsEqual(transform, Lists.transform(randomAccessList, SOME_FUNCTION)));
      }
    
      private static class ListIterationOnlyList<E> extends ForwardingList<E> {
        private final List<E> realDelegate;
    
        private ListIterationOnlyList(List<E> realDelegate) {
          this.realDelegate = realDelegate;
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 35.2K bytes
    - Viewed (0)
Back to top