Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 364 for isDependent (0.25 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/TasksFromDependentProjectsTest.groovy

            child4.configurations.create "conf"     //different config, no good
    
            expect:
            checker.isDependent(child1, "testRuntime", child2)
            !checker.isDependent(child1, "testRuntime", child3)
            !checker.isDependent(child1, "testRuntime", child4)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/TasksFromDependentProjects.java

                for (Task nextTask : tasksWithName) {
                    if (context.getTask() != nextTask) {
                        boolean isDependency = checker.isDependent(thisProject, configurationName, nextTask.getProject());
                        if (isDependency) {
                            context.add(nextTask);
                        }
                    }
                }
            });
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/AbstractRecompilationSpecProvider.java

            }
        }
    
        /**
         * Collect source paths and independent classes.
         * <p>
         * The source paths corresponding to the {@param classesToCompile} are added to the {@param spec}.
         * It will also add the independent classes to the {@param spec}'s {@code classesToCompile}.
         *
         * @return independent classes for the detected source paths.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/sub-applications.md

    # Sub Applications - Mounts
    
    If you need to have two independent FastAPI applications, with their own independent OpenAPI and their own docs UIs, you can have a main app and "mount" one (or more) sub-application(s).
    
    ## Mounting a **FastAPI** application
    
    "Mounting" means adding a completely "independent" application in a specific path, that then takes care of handling everything under that path, with the _path operations_ declared in that sub-application.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. maven-model-builder/src/test/resources/dag.txt

    	quarkus/test-framework/junit5/pom.xml
    quarkus/independent-projects/resteasy-reactive/client/processor/pom.xml
    	quarkus/independent-projects/resteasy-reactive/client/runtime/pom.xml
    	quarkus/independent-projects/resteasy-reactive/common/processor/pom.xml
    quarkus/independent-projects/resteasy-reactive/server/jackson/pom.xml
    	quarkus/independent-projects/resteasy-reactive/server/runtime/pom.xml
    	quarkus/independent-projects/resteasy-reactive/server/processor/pom.xml
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 15 16:49:26 UTC 2024
    - 224K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/static-files.md

    ### What is "Mounting"
    
    "Mounting" means adding a complete "independent" application in a specific path, that then takes care of handling all the sub-paths.
    
    This is different from using an `APIRouter` as a mounted application is completely independent. The OpenAPI and docs from your main application won't include anything from the mounted application, etc.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 19:56:09 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/io/ByteSink.java

     *
     * <p>{@code ByteSink} provides two kinds of methods:
     *
     * <ul>
     *   <li><b>Methods that return a stream:</b> These methods should return a <i>new</i>, independent
     *       instance each time they are called. The caller is responsible for ensuring that the
     *       returned stream is closed.
     *   <li><b>Convenience methods:</b> These are implementations of common operations that are
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/io/ByteSink.java

     *
     * <p>{@code ByteSink} provides two kinds of methods:
     *
     * <ul>
     *   <li><b>Methods that return a stream:</b> These methods should return a <i>new</i>, independent
     *       instance each time they are called. The caller is responsible for ensuring that the
     *       returned stream is closed.
     *   <li><b>Convenience methods:</b> These are implementations of common operations that are
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  9. src/runtime/mranges_test.go

    	validateAddrRanges(t, &a,
    		MakeAddrRange(512, 1024),
    	)
    
    	// Coalesce up.
    	a.Add(MakeAddrRange(1024, 2048))
    	validateAddrRanges(t, &a,
    		MakeAddrRange(512, 2048),
    	)
    
    	// Add new independent range.
    	a.Add(MakeAddrRange(4096, 8192))
    	validateAddrRanges(t, &a,
    		MakeAddrRange(512, 2048),
    		MakeAddrRange(4096, 8192),
    	)
    
    	// Coalesce down.
    	a.Add(MakeAddrRange(3776, 4096))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 23 23:01:52 UTC 2020
    - 5.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/opt.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ssa
    
    // machine-independent optimization.
    func opt(f *Func) {
    	applyRewrite(f, rewriteBlockgeneric, rewriteValuegeneric, removeDeadValues)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 309 bytes
    - Viewed (0)
Back to top