Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for RootPath (0.11 sec)

  1. analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/Main.kt

        println()
    }
    
    
    fun main() {
        val rootPath = Paths.get("analysis/analysis-api-fir/src").toAbsolutePath()
        val packageName = "org.jetbrains.kotlin.analysis.api.fir.diagnostics"
        val diagnostics = DIAGNOSTICS_LIST + JVM_DIAGNOSTICS_LIST + JS_DIAGNOSTICS_LIST + SYNTAX_DIAGNOSTIC_LIST +
                WEB_COMMON_DIAGNOSTICS_LIST
        generate(rootPath, diagnostics, packageName)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Nov 16 14:27:49 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/SubprojectsInfo.kt

    import kotlin.io.path.invariantSeparatorsPathString
    
    
    @DisableCachingByDefault(because = "Abstract super-class, not to be instantiated directly")
    abstract class SubprojectsInfo : DefaultTask() {
    
        private
        val rootPath = project.layout.projectDirectory.asFile.toPath()
    
        private
        val platformsFolder = project.layout.projectDirectory.dir("platforms")
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/ReproducibleDirectoryWalker.java

            this.fileSystem = fileSystem;
        }
    
        @Override
        public void walkDir(Path rootDir, RelativePath rootPath, FileVisitor visitor, Spec<? super FileTreeElement> spec, AtomicBoolean stopFlag, boolean postfix) {
            try {
                PathVisitor pathVisitor = new PathVisitor(spec, postfix, visitor, stopFlag, rootPath, fileSystem);
                visit(rootDir, pathVisitor);
            } catch (IOException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/DefaultDirectoryWalker.java

            this.fileSystem = fileSystem;
        }
    
        @Override
        public void walkDir(Path rootDir, RelativePath rootPath, FileVisitor visitor, Spec<? super FileTreeElement> spec, AtomicBoolean stopFlag, boolean postfix) {
            try {
                PathVisitor pathVisitor = new PathVisitor(spec, postfix, visitor, stopFlag, rootPath, fileSystem);
                Files.walkFileTree(rootDir, EnumSet.of(FileVisitOption.FOLLOW_LINKS), Integer.MAX_VALUE, pathVisitor);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/daemon/JavaCompileDaemonCancellationIntegrationTest.groovy

            assert client.gradleHandle.standardOutput.contains("BUILD SUCCESS")
            daemons.daemon.becomesIdle()
        }
    
        TestFile pidFile(String rootPath = null) {
            def root = rootPath ? file(rootPath) : testDirectory
            return root.file('build/generated/sources/annotationProcessor/java/main/resources/pid.txt')
        }
    
        static String getBlockingFooClass() {
            return """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:57:50 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/DirectoryWalker.java

    import org.gradle.api.specs.Spec;
    
    import java.nio.file.Path;
    import java.util.concurrent.atomic.AtomicBoolean;
    
    public interface DirectoryWalker {
        void walkDir(Path rootDir, RelativePath rootPath, FileVisitor visitor, Spec<? super FileTreeElement> spec, AtomicBoolean stopFlag, boolean postfix);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. pkg/kubelet/cadvisor/cadvisor_unsupported.go

    )
    
    type cadvisorUnsupported struct {
    }
    
    var _ Interface = new(cadvisorUnsupported)
    
    // New creates a new cAdvisor Interface for unsupported systems.
    func New(imageFsInfoProvider ImageFsInfoProvider, rootPath string, cgroupsRoots []string, usingLegacyStats, localStorageCapacityIsolation bool) (Interface, error) {
    	return &cadvisorUnsupported{}, nil
    }
    
    var errUnsupported = errors.New("cAdvisor is unsupported in this build")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 22:07:20 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/routes/openapi.go

    	}
    
    	grouped := make(map[string][]*restful.WebService)
    
    	for _, t := range c.RegisteredWebServices() {
    		// Strip the "/" prefix from the name
    		gvName := t.RootPath()[1:]
    		grouped[gvName] = []*restful.WebService{t}
    	}
    
    	for gv, ws := range grouped {
    		spec, err := builder3.BuildOpenAPISpecFromRoutes(restfuladapter.AdaptWebServices(ws), oa.V3Config)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 19:05:13 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. pkg/kubelet/server/stats/handler.go

    	summaryProvider SummaryProvider
    }
    
    // CreateHandlers creates the REST handlers for the stats.
    func CreateHandlers(rootPath string, provider Provider, summaryProvider SummaryProvider) *restful.WebService {
    	h := &handler{provider, summaryProvider}
    
    	ws := &restful.WebService{}
    	ws.Path(rootPath).
    		Produces(restful.MIME_JSON)
    
    	endpoints := []struct {
    		path    string
    		handler restful.RouteFunction
    	}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 21:31:38 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/watch_test.go

    		labelSelector   string
    		fieldSelector   string
    		namespace       string
    	}{
    		{
    			path:            rootPath,
    			rawQuery:        "resourceVersion=1234",
    			resourceVersion: "1234",
    			labelSelector:   "",
    			fieldSelector:   "",
    			namespace:       metav1.NamespaceAll,
    		}, {
    			path:            rootPath,
    			rawQuery:        "resourceVersion=314159&fieldSelector=Host%3D&labelSelector=name%3Dfoo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 30 17:27:39 UTC 2023
    - 30K bytes
    - Viewed (0)
Back to top