Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 410 for rebind (0.13 sec)

  1. maven-core/src/site/apt/getting-to-container-configured-mojos.apt

      With the current parameter passing model of mojos, this will not be possible,
      particularly when we move mojos to a singleton instantiation model, and then
      run a reactorized project...the successive calls may leave behind configuration
      artifacts from invocation to invocation.
    
    Maven Modifications
    
    * DefaultPluginManager
    
      s/getMojoConfiguration()/getConfiguration()/g
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 30 15:20:35 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modcmd/why.go

    			fmt.Printf("%s# %s\n%s", sep, m.Path, why)
    			sep = "\n"
    		}
    	} else {
    		// Resolve to packages.
    		matches, _ := modload.LoadPackages(ctx, loadOpts, args...)
    
    		modload.LoadPackages(ctx, loadOpts, "all") // rebuild graph, from main module (not from named packages)
    
    		sep := ""
    		for _, m := range matches {
    			for _, path := range m.Pkgs {
    				why := modload.Why(path)
    				if why == "" {
    					vendoring := ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 21:32:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/fixtures/AbstractVisualStudioIntegrationSpec.groovy

                return file('gradlew.bat')
            }
            return file('gradlew')
        }
    
        protected MSBuildExecutor getMsbuild() {
            // Gradle needs to be isolated so that msbuild does not leave behind daemons
            assert executer.distribution.gradleHomeDir != null
            assert !executer.usesSharedDaemons()
            def executer = new MSBuildExecutor(testDirectory, toolChain)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  4. docs/en/docs/deployment/docker.md

    │   └── main.py
    ├── Dockerfile
    └── requirements.txt
    ```
    
    #### Behind a TLS Termination Proxy
    
    If you are running your container behind a TLS Termination Proxy (load balancer) like Nginx or Traefik, add the option `--proxy-headers`, this will tell Uvicorn (through the FastAPI CLI) to trust the headers sent by that proxy telling it that the application is running behind HTTPS, etc.
    
    ```Dockerfile
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  5. pilot/pkg/model/gateway.go

    						}
    						// build the port bind map for none plain text protocol, thus can avoid protocol conflict if it's different bind
    						var newBind bool
    						if bindsPortMap, ok := nonPlainTextGatewayPortsBindMap[resolvedPort]; ok {
    							newBind = !bindsPortMap.InsertContains(serverPort.Bind)
    						} else {
    							nonPlainTextGatewayPortsBindMap[resolvedPort] = sets.New(serverPort.Bind)
    							newBind = true
    						}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/work/InputChanges.java

     *     }
     * }
     * </pre>
     *
     * <p>
     * In the case where Gradle is unable to determine which input files need to be reprocessed, then all of the input files will be reported as {@link ChangeType#ADDED}.
     * When such a full rebuild happens, the output files of the work are removed prior to executing the work action.
     * Cases where this occurs include:
     * <ul>
     *     <li>There is no history available from a previous execution.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 26 09:19:43 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/security/first-steps.md

        Using a relative URL is important to make sure your application keeps working even in an advanced use case like [Behind a Proxy](../../advanced/behind-a-proxy.md){.internal-link target=_blank}.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:48:20 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/api/groovy_build_script_primer.adoc

    === Properties in the API documentation
    
    The link:{groovyDslPath}/[Groovy DSL reference] shows properties as they are used in your build scripts, but the Javadocs only display methods. That's because properties are implemented as methods behind the scenes:
    
     * A property can be _read_ if there is a method named `get<PropertyName>` with zero arguments that returns the same type as the property.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  9. pkg/registry/core/service/portallocator/controller/repair.go

    		snapshot.Range = c.portRange.String()
    	}
    	// Create an allocator because it is easy to use.
    	stored, err := portallocator.NewFromSnapshot(snapshot)
    	if err != nil {
    		return fmt.Errorf("unable to rebuild allocator from snapshot: %v", err)
    	}
    
    	// We explicitly send no resource version, since the resource version
    	// of 'snapshot' is from a different collection, it's not comparable to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  10. security/pkg/nodeagent/caclient/providers/citadel/client.go

    	// Becase that the grpc client still use the old tls configuration to reconnect to istiod.
    	// So here we need to rebuild the caClient in order to use the new root cert.
    	defer func() {
    		if err != nil {
    			citadelClientLog.Errorf("failed to sign CSR: %v", err)
    			if err := c.reconnect(); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top