Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 260 for Transformed (0.39 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java

        @Nonnull
        List<Path> getCompileSourceRoots(@Nonnull Project project, @Nonnull ProjectScope scope);
    
        /**
         * Add a compilation source root to the given project for the given scope.
         * The path will be transformed into an absolute path and added to the list for the given scope,
         * if not already present.
         *
         * @param project the project
         * @param scope the scope, i.e. usually main or test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultCachedClasspathTransformer.java

            }
            ClasspathFileTransformer transformer = fileTransformerFor(transform);
            return parallelTransformExecutor.transformAll(
                urls,
                (url, seen) -> cachedURL(url, transformer, seen, InstrumentationTypeRegistry.empty())
            );
        }
    
        private ClassPath transformFiles(ClassPath classPath, ClasspathFileTransformer transformer) {
            return DefaultClassPath.of(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

        }
    
        @ToBeImplemented
        @Issue('https://github.com/gradle/gradle/issues/29147')
        def "can connect transformed incoming elements of a configuration to task input ListProperty"() {
            withZipArtifactProducingSubprojects 'p1', 'p2'
            withIdentityTransform()
            buildFile '''
                apply plugin: 'base'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  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/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)
  8. 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)
  9. 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)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DefaultLocalComponentGraphResolveState.java

            // Keep track of transformed artifacts as a given artifact may appear in multiple variants and configurations
            Map<LocalComponentArtifactMetadata, LocalComponentArtifactMetadata> transformedArtifacts = new HashMap<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:25:36 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top