Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,360 for takes (0.1 sec)

  1. docs/en/docs/tutorial/middleware.md

    * It takes each **request** that comes to your application.
    * It can then do something to that **request** or run any needed code.
    * Then it passes the **request** to be processed by the rest of the application (by some *path operation*).
    * It then takes the **response** generated by the application (by some *path operation*).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Execution engine that takes a unit of work and makes it happen"
    
    dependencies {
        api(libs.guava)
        api(libs.jsr305)
        api(libs.slf4jApi)
    
        api(projects.concurrent)
        api(projects.stdlibJavaExtensions)
        api(projects.serialization)
        compileOnly(libs.errorProneAnnotations)
        api(project(":base-services"))
        api(project(":build-cache"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. platforms/jvm/language-jvm/src/main/java/org/gradle/language/jvm/tasks/ProcessResources.java

            super.copy();
            if (cleanedOutputs) {
                setDidWork(true);
            }
        }
    
        @Inject
        protected Deleter getDeleter() {
            throw new UnsupportedOperationException("Decorator takes care of injection");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    If your `buildSrc` phase takes too much time, consider breaking it out into a separate project.
    You can then add that project's JAR artifact as a dependency.
    
    The settings file rarely contains code with significant I/O or computation.
    If you find that Gradle takes a long time to process it, use more traditional profiling methods,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/register.go

    	AddToScheme        = localSchemeBuilder.AddToScheme
    )
    
    func init() {
    	// We only register manually written functions here. The registration of the
    	// generated functions takes place in the generated files. The separation
    	// makes the code compile even when the generated files are missing.
    	localSchemeBuilder.Register(addKnownTypes, addDefaultingFuncs)
    }
    
    // Adds the list of known types to the given scheme.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 18 06:03:17 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. src/runtime/sys_openbsd_ppc64.s

    	MOVD	R3, R14			// pointer to args
    	CALL	libc_getthrid(SB)
    	MOVW	R3, 0(R14)		// return value
    	RET
    
    // syscall calls a function in libc on behalf of the syscall package.
    // syscall takes a pointer to a struct like:
    // struct {
    //	fn    uintptr
    //	a1    uintptr
    //	a2    uintptr
    //	a3    uintptr
    //	r1    uintptr
    //	r2    uintptr
    //	err   uintptr
    // }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:48:11 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/isolated/IsolationScheme.java

            this.noParamsType = noParamsType;
        }
    
        /**
         * Determines the parameters type for the given implementation.
         *
         * @return The parameters type, or {@code null} when the implementation takes no parameters.
         */
        @Nullable
        public <T extends IMPLEMENTATION, P extends PARAMS> Class<P> parameterTypeFor(Class<T> implementationType) {
            return parameterTypeFor(implementationType, 0);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/v1beta4/register.go

    	AddToScheme = localSchemeBuilder.AddToScheme
    )
    
    func init() {
    	// We only register manually written functions here. The registration of the
    	// generated functions takes place in the generated files. The separation
    	// makes the code compile even when the generated files are missing.
    	localSchemeBuilder.Register(addKnownTypes, addDefaultingFuncs)
    }
    
    func addKnownTypes(scheme *runtime.Scheme) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/output/v1alpha3/register.go

    	AddToScheme = localSchemeBuilder.AddToScheme
    )
    
    func init() {
    	// We only register manually written functions here. The registration of the
    	// generated functions takes place in the generated files. The separation
    	// makes the code compile even when the generated files are missing.
    	localSchemeBuilder.Register(addKnownTypes)
    }
    
    func addKnownTypes(scheme *runtime.Scheme) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 17:11:55 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/kubelet/flags.go

    	envFileContent := fmt.Sprintf("%s=%q\n", constants.KubeletEnvFileVariableName, strings.Join(argList, " "))
    
    	return writeKubeletFlagBytesToDisk([]byte(envFileContent), kubeletDir)
    }
    
    // buildKubeletArgsCommon takes a kubeletFlagsOpts object and builds based on that a slice of arguments
    // that are common to both Linux and Windows
    func buildKubeletArgsCommon(opts kubeletFlagsOpts) []kubeadmapi.Arg {
    	kubeletFlags := []kubeadmapi.Arg{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top