Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 242 for transformTo (0.18 sec)

  1. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/DefaultUserInputHandler.java

            }
    
            private <T> T prompt(PromptOutputEvent prompt, final T defaultValue, final Transformer<T, String> parser) {
                T result = prompt(prompt, sanitizedInput -> {
                    if (sanitizedInput.isEmpty()) {
                        return defaultValue;
                    }
                    return parser.transform(sanitizedInput);
                });
                if (result == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/config.go

    	// to, the EncodeVersioner outputs the gvk the object will be
    	// converted to before persisted in etcd.
    	EncodeVersioner runtime.GroupVersioner
    	// Transformer allows the value to be transformed prior to persisting into etcd.
    	Transformer value.Transformer
    
    	// CompactionInterval is an interval of requesting compaction from apiserver.
    	// If the value is 0, no compaction will be issued.
    	CompactionInterval time.Duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/InstrumentationAnalysisTransform.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.initialization.transform;
    
    import com.google.common.collect.Ordering;
    import org.gradle.api.artifacts.transform.InputArtifact;
    import org.gradle.api.artifacts.transform.TransformAction;
    import org.gradle.api.artifacts.transform.TransformOutputs;
    import org.gradle.api.artifacts.transform.TransformParameters;
    import org.gradle.api.file.FileSystemLocation;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:19:14 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/DefaultPayloadClassLoaderRegistry.java

            public void visitSpec(ClassLoaderSpec spec) {
                this.spec = spec;
            }
        }
    
        private class ClassLoaderToDetailsTransformer implements Transformer<ClassLoader, ClassLoaderDetails> {
            @Override
            public ClassLoader transform(ClassLoaderDetails details) {
                List<ClassLoader> parents = new ArrayList<ClassLoader>();
                for (ClassLoaderDetails parentDetails : details.parents) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_utils.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_utils.h"
    
    #include <algorithm>
    #include <array>
    #include <cstdint>
    #include <optional>
    #include <string>
    #include <utility>
    #include <vector>
    
    #include "llvm/ADT/StringRef.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 18:33:05 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

    import gradlebuild.binarycompatibility.BinaryCompatibilityHelper
    import gradlebuild.binarycompatibility.CleanAcceptedApiChanges
    import gradlebuild.binarycompatibility.transforms.ExplodeZipAndFindJars
    import gradlebuild.binarycompatibility.transforms.FindGradleClasspath
    import gradlebuild.binarycompatibility.transforms.FindGradleJars
    
    plugins {
        id("gradlebuild.module-identity")
    }
    
    repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf_mlir_opt_main.cc

    #include "tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/lower_cluster_to_runtime_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/runtime_passes.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/passes.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/sparsecore_passes.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/test_passes.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskWiringIntegrationTest.groovy

            output.text == "16"
    
            when:
            input.text = "10"
            configurationCacheRun(":transformer")
    
            then:
            configurationCache.assertStateLoaded()
            result.assertTasksExecutedAndNotSkipped(":producer", ":transformer")
            output.text == "22"
    
            when:
            configurationCacheRun(":transformer")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/FileUtils.java

         *
         * e.g. with a provided extension of ".bar"
         * foo -&gt; foo.bar
         * foo.baz -&gt; foo.bar
         *
         * @param filePath the file path to transform
         * @param extension the extension to use in the transformed path
         * @return the transformed path
         */
        public static String withExtension(String filePath, String extension) {
            if (filePath.toLowerCase(Locale.ROOT).endsWith(extension)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/ClassLoaderCache.java

        }
    
        public ClassLoader getClassLoader(ClassLoaderDetails details, Transformer<ClassLoader, ClassLoaderDetails> factory) {
            lock.lock();
            try {
                ClassLoader classLoader = classLoaderIds.getIfPresent(details.uuid);
                if (classLoader != null) {
                    return classLoader;
                }
    
                classLoader = factory.transform(details);
                classLoaderIds.put(details.uuid, classLoader);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top