Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 89 for mainAlt (0.17 sec)

  1. analysis/analysis-api/testData/components/compilerFacility/bugsFromRealComposeApps/constExprLateInitializer.txt

    public final class home/MainKt {
        // source: 'main.kt'
        public final static method preview(p0: data.PodcastWithExtraInfo): void
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 18 11:28:11 UTC 2024
    - 135 bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/compilerFacility/bugsFromRealComposeApps/constExprInitializer.txt

    public final class home/MainKt {
        // source: 'main.kt'
        public final static method preview(p0: data.PodcastWithExtraInfo): void
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 18 11:28:11 UTC 2024
    - 135 bytes
    - Viewed (0)
  3. docs/en/docs/reference/dependencies.md

    # Dependencies - `Depends()` and `Security()`
    
    ## `Depends()`
    
    Dependencies are handled mainly with the special function `Depends()` that takes a callable.
    
    Here is the reference for it and its parameters.
    
    You can import it directly from `fastapi`:
    
    ```python
    from fastapi import Depends
    ```
    
    ::: fastapi.Depends
    
    ## `Security()`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 671 bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/build.gradle.kts

            include("**/*.kt")
        }
    
        inputs.files(generatorConfigurationFiles)
    
        workingDir = rootDir
        classpath = generatorClasspath
        mainClass.set("org.jetbrains.kotlin.analysis.api.fir.generator.MainKt")
        systemProperties["line.separator"] = "\n"
    }
    
    val compileKotlin by tasks
    
    compileKotlin.dependsOn(generateCode)
    
    tasks.withType<KotlinJvmCompile>().configureEach {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/ProducerGuard.java

            return new StripedProducerGuard<T>();
        }
    
        /**
         * Creates a {@link ProducerGuard} which limits concurrency to a single factory at a time,
         * ignoring the key. This is mainly useful for testing.
         */
        public static <T> ProducerGuard<T> serial() {
            return new SerialProducerGuard<T>();
        }
    
        private ProducerGuard() {
    
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:31 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. src/runtime/debug/garbage.go

    // The initial setting is 1 GB on 64-bit systems, 250 MB on 32-bit systems.
    // There may be a system-imposed maximum stack limit regardless
    // of the value provided to SetMaxStack.
    //
    // SetMaxStack is useful mainly for limiting the damage done by
    // goroutines that enter an infinite recursion. It only limits future
    // stack growth.
    func SetMaxStack(bytes int) int {
    	return setMaxStack(bytes)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/MoreExecutors.java

       * is complete. It does so by using daemon threads and adding a shutdown hook to wait for their
       * completion.
       *
       * <p>This is mainly for fixed thread pools. See {@link Executors#newFixedThreadPool(int)}.
       *
       * @param executor the executor to modify to make sure it exits when the application is finished
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  8. docs/en/docs/deployment/server-workers.md

    ## Gunicorn with Uvicorn Workers
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. src/runtime/mksizeclasses.go

    // for the above constraints would be that allocations of some
    // size might have a 26.6% (1.266x) overhead.
    // In practice, only one of the wastes comes into play for a
    // given size (sizes < 512 waste mainly on the round-up,
    // sizes > 512 waste mainly on the page chopping).
    // For really small sizes, alignment constraints force the
    // overhead higher.
    
    package main
    
    import (
    	"bytes"
    	"flag"
    	"fmt"
    	"go/format"
    	"io"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/config.go

    	// the CUSTOM authorization policy when the ext-authz server is deployed locally with the application container in
    	// the same pod.
    	IncludeExtAuthz bool
    
    	// IPFamily for the service. This is optional field. Mainly is used for dual stack testing
    	IPFamilies string
    
    	// IPFamilyPolicy. This is optional field. Mainly is used for dual stack testing.
    	IPFamilyPolicy string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top