Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 247 for legalize (0.12 sec)

  1. src/internal/filepathlite/path_plan9.go

    	ListSeparator = '\000' // OS-specific path list separator
    )
    
    func IsPathSeparator(c uint8) bool {
    	return Separator == c
    }
    
    func isLocal(path string) bool {
    	return unixIsLocal(path)
    }
    
    func localize(path string) (string, error) {
    	if path[0] == '#' || bytealg.IndexByteString(path, 0) >= 0 {
    		return "", errInvalidPath
    	}
    	return path, nil
    }
    
    // IsAbs reports whether the path is absolute.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 952 bytes
    - Viewed (0)
  2. src/path/filepath/path.go

    // character and cannot be part of a filename.
    //
    // The path returned by Localize will always be local, as reported by IsLocal.
    func Localize(path string) (string, error) {
    	return filepathlite.Localize(path)
    }
    
    // ToSlash returns the result of replacing each separator character
    // in path with a slash ('/') character. Multiple separators are
    // replaced by multiple slashes.
    func ToSlash(path string) string {
    	return filepathlite.ToSlash(path)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProjectTaskLister.java

        @Override
        public Collection<Task> listProjectTasks(Project project) {
            ProjectInternal projectInternal = (ProjectInternal) project;
            TaskContainerInternal tasks = projectInternal.getTasks();
            tasks.realize();
            return tasks;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/bridge_logger.h

    // spaces) except semicolons.
    //
    // Example: Setting the environment variables
    // `MLIR_BRIDGE_LOG_PASS_FILTER="LegalizeTF;Canonicalizer"` and
    // `MLIR_BRIDGE_LOG_STRING_FILTER="my_string"` will dump IR only for invocations
    // of `LegalizeTF` and `Canonicalizer` where the string `my_string` is contained
    // in the serialized operation on which the pass is invoked. For verbose log
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 22:29:51 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ProjectVariantResolutionIntegrationTest.groovy

    class ProjectVariantResolutionIntegrationTest extends AbstractIntegrationSpec implements VariantAwareDependencyResolutionTestFixture, TasksWithInputsAndOutputs {
        def "does not realize tasks that produce outgoing artifacts that are not required"() {
            createDirs("a", "b")
            settingsFile << """
                include 'a', 'b'
            """
            setupBuildWithColorVariants()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/model/internal/fixture/ModelRegistryHelperExtension.java

        }
    
        public static Object realize(ModelRegistry modelRegistry, String path) {
            return modelRegistry.realize(ModelPath.nonNullValidatedPath(path), ModelType.UNTYPED);
        }
    
        public static <T> T realize(ModelRegistry modelRegistry, String path, Class<T> type) {
            return modelRegistry.realize(ModelPath.nonNullValidatedPath(path), ModelType.of(type));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  7. test/fixedbugs/bug327.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Conversion between identical interfaces.
    // Issue 1647.
    
    // The compiler used to not realize this was a no-op,
    // so it generated a call to the non-existent function runtime.convE2E.
    
    package main
    
    type (
    	a interface{}
    	b interface{}
    )
    
    func main() {
    	x := a(1)
    	z := b(x)
    	_ = z
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 454 bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelRegistry.java

         * @param type the type to project the node as
         * @param <T> the type to project the node as
         * @return the node as the given type
         */
        <T> T realize(ModelPath path, ModelType<T> type);
        <T> T realize(String path, ModelType<T> type);
        <T> T realize(String path, Class<T> type);
    
        /**
         * Get the fully defined model element at the given path.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  9. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/DefaultJavaToolchainResolverRegistry.java

                }
                realizedRepositories.add(realize(repository));
            }
        }
    
        private RealizedJavaToolchainRepository realize(JavaToolchainRepository repository) {
            Class<? extends JavaToolchainResolver> repositoryClass = getResolverClass(repository);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r50/ModelProgressEventsCrossVersionSpec.groovy

            def buildModelOperation = listener.operation("Build model 'org.gradle.tooling.model.GradleProject' for root project 'root'")
            def tasks = buildModelOperation.descendants {
                it.descriptor.displayName.startsWith("Realize task")
            }
            !tasks.empty
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top