Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for toGetter (0.17 sec)

  1. docs/en/docs/advanced/events.md

    ### `startup` and `shutdown` together
    
    There's a high chance that the logic for your *startup* and *shutdown* is connected, you might want to start something and then finish it, acquire a resource and then release it, etc.
    
    Doing that in separated functions that don't share logic or variables together is more difficult as you would need to store values in global variables or similar tricks.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. docs/en/docs/benchmarks.md

    ## Benchmarks and speed
    
    When you check the benchmarks, it is common to see several tools of different types compared as equivalent.
    
    Specifically, to see Uvicorn, Starlette and FastAPI compared together (among many other tools).
    
    The simpler the problem solved by the tool, the better performance it will get. And most of the benchmarks don't test the additional features provided by the tool.
    
    The hierarchy is like:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/analysis.go

    	AllObjectFacts func() []ObjectFact
    
    	/* Further fields may be added in future. */
    }
    
    // PackageFact is a package together with an associated fact.
    type PackageFact struct {
    	Package *types.Package
    	Fact    Fact
    }
    
    // ObjectFact is an object together with an associated fact.
    type ObjectFact struct {
    	Object types.Object
    	Fact   Fact
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtFirAnalysisSessionProvider.kt

     */
    internal class KaFirSessionProvider(project: Project) : KaBaseSessionProvider(project) {
        // `KaFirSession`s must be soft-referenced to allow simultaneous garbage collection of an unused `KaFirSession` together
        // with its `LLFirSession`.
        private val cache: ConcurrentMap<KtModule, KaSession> = ContainerUtil.createConcurrentSoftValueMap()
    
        init {
            LowMemoryWatcher.register(::clearCaches, project)
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverResult.java

         * {@linkplain org.apache.maven.api.JavaPathType#patchModule(String) handled in a special way}.
         *
         * <h4>Design note</h4>
         * All types of path are determined together because they are sometime mutually exclusive.
         * For example, an artifact of type {@value org.apache.maven.api.Type#JAR} can be placed
         * either on the class-path or on the module-path. The project needs to make a choice
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/PathType.java

         * But if this type was created by {@code JavaPathType.patchModule("foo.bar")}, then this method returns
         * {@code "PATCH_MODULE:foo.bar"}.
         *
         * @return the programmatic name together with the module name on which it applies
         * @see #toString()
         */
        @Nonnull
        String id();
    
        /**
         * Returns the name of the tool option for this path. For example, if this path type
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. src/go/printer/gobuild.go

    		// Parse //go:build expression.
    		x, _ = constraint.Parse(p.commentTextAt(p.goBuild[0]))
    	}
    
    	var block []byte
    	if x == nil {
    		// Don't have a valid //go:build expression to treat as truth.
    		// Bring all the lines together but leave them alone.
    		// Note that these are already tabwriter-escaped.
    		for _, pos := range p.goBuild {
    			block = append(block, p.lineAt(pos)...)
    		}
    		for _, pos := range p.plusBuild {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. src/cmd/covdata/covdata.go

    percent     output total percentage of statements covered
    pkglist     output list of package import paths
    func        output coverage profile information for each function
    merge       merge data files together
    subtract    subtract one set of data files from another set
    intersect   generate intersection of two sets of data files
    debugdump   dump data in human-readable format for debugging purposes
    `)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. hack/make-rules/test-cmd.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This command checks that the built commands can function together for
    # simple scenarios.  It does not require Docker.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    # start the cache mutation detector by default so that cache mutators will be found
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 09:10:14 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/build.gradle.kts

        implementation(libs.jetty)
        implementation(libs.jettyServlet)
        implementation(libs.littleproxy)
        implementation(libs.mavenResolverSupplier) {
            because("For ApiMavenResolver. Wires together implementation for maven-resolver-api")
        }
        implementation(libs.maven3ResolverProvider) {
            because("For ApiMavenResolver. Provides MavenRepositorySystemUtils")
        }
        implementation(libs.nativePlatform)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top