Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 410 for rebind (0.24 sec)

  1. docs/de/docs/advanced/wsgi.md

    # WSGI inkludieren – Flask, Django und andere
    
    Sie können WSGI-Anwendungen mounten, wie Sie es in [Unteranwendungen – Mounts](sub-applications.md){.internal-link target=_blank}, [Hinter einem Proxy](behind-a-proxy.md){.internal-link target=_blank} gesehen haben.
    
    Dazu können Sie die `WSGIMiddleware` verwenden und damit Ihre WSGI-Anwendung wrappen, zum Beispiel Flask, Django usw.
    
    ## `WSGIMiddleware` verwenden
    
    Sie müssen `WSGIMiddleware` importieren.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:17:05 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. pkg/scheduler/apis/config/types.go

    	Permit PluginSet
    
    	// PreBind is a list of plugins that should be invoked before a pod is bound.
    	PreBind PluginSet
    
    	// Bind is a list of plugins that should be invoked at "Bind" extension point of the scheduling framework.
    	// The scheduler call these plugins in order. Scheduler skips the rest of these plugins as soon as one returns success.
    	Bind PluginSet
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/SmokeTestGradleRunner.groovy

         *      typically a URL pointing to an issue with the relevant third-party plugin. The actual value
         *      is ignored, the parameter is only present to remind us that a followup is necessary, and
         *      to record how it will happen.
         */
        SmokeTestGradleRunner expectDeprecationWarning(String warning, String followup) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. pkg/scheduler/apis/config/testing/defaults/defaults.go

    		},
    	},
    	Reserve: config.PluginSet{
    		Enabled: []config.Plugin{
    			{Name: names.VolumeBinding},
    		},
    	},
    	PreBind: config.PluginSet{
    		Enabled: []config.Plugin{
    			{Name: names.VolumeBinding},
    		},
    	},
    	Bind: config.PluginSet{
    		Enabled: []config.Plugin{
    			{Name: names.DefaultBinder},
    		},
    	},
    }
    
    // PluginConfigsV1 default plugin configurations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. src/cmd/dist/README

    The process to install Go 1.x, for x ≥ 22, is:
    
    1. Build cmd/dist with Go 1.20.6.
    2. Using dist, build Go 1.x compiler toolchain with Go 1.20.6.
    3. Using dist, rebuild Go 1.x compiler toolchain with itself.
    4. Using dist, build Go 1.x cmd/go (as go_bootstrap) with Go 1.x compiler toolchain.
    5. Using go_bootstrap, build the remaining Go 1.x standard library and commands.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 25 17:20:22 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/integtests/IncrementalGroovyProjectBuildIntegrationTest.groovy

     */
    package org.gradle.integtests
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    class IncrementalGroovyProjectBuildIntegrationTest extends AbstractIntegrationSpec {
    
        def "does not rebuild Groovydoc if source has not changed"() {
            def indexFile = file("build/docs/groovydoc/index.html");
            file("src/main/groovy/BuildClass.java") << 'public class BuildClass { }'
            buildFile << '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	//   the claim is assumed to be allocated.
    	// - PreBind for pod B is called first, tries to update reservedFor and
    	//   fails because the claim is not really allocated yet.
    	//
    	// We could avoid the ordering problem by allowing either pod A or pod B
    	// to set the allocation. But that is more complicated and leads to another
    	// problem:
    	// - Pod A and B get scheduled as above.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/InputBehavior.java

    /**
     * Describes the behavior of an input property.
     */
    public enum InputBehavior {
        /**
         * Non-incremental inputs.
         *
         * <ul>
         *     <li>Any change to the property value always triggers a full rebuild of the work</li>
         *     <li>Changes for the property cannot be queried via {@link org.gradle.work.InputChanges}</li>
         * </ul>
         */
        NON_INCREMENTAL(false, false),
    
        /**
         * Incremental inputs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ResolveInputChangesStep.java

            InputChangesInternal inputChanges = changes.createInputChanges();
            if (!inputChanges.isIncremental()) {
                LOGGER.info("The input changes require a full rebuild for incremental {}.", work.getDisplayName());
            }
            return inputChanges;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:50 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. src/crypto/internal/boring/README.md

    for various crypto primitives, in furtherance of some work related to FIPS 140.
    We have heard that some external users of Go would be
    interested in this code as well, so we have published this code
    here in the main Go repository behind the setting GOEXPERIMENT=boringcrypto.
    
    Use of GOEXPERIMENT=boringcrypto outside Google is _unsupported_.
    This mode is not part of the [Go 1 compatibility rules](https://go.dev/doc/go1compat),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top