Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,379 for place (0.04 sec)

  1. releasenotes/notes/update-envoy-filters-in-place.yaml

    area: traffic-management
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 18 06:50:06 UTC 2023
    - 274 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/testdata/fallthrough.go

    func _() {
    	var x int
    	switch x {
    	case 0:
    		fallthrough
    
    	case 1:
    		fallthrough // ERROR fallthrough statement out of place
    		{
    		}
    
    	case 2:
    		{
    			fallthrough // ERROR fallthrough statement out of place
    		}
    
    	case 3:
    		for {
    			fallthrough // ERROR fallthrough statement out of place
    		}
    
    	case 4:
    		fallthrough // trailing empty statements are ok
    		;
    		;
    
    	case 5:
    		fallthrough
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 00:21:29 UTC 2022
    - 946 bytes
    - Viewed (0)
  3. docs/en/docs/advanced/additional-responses.md

        The correct place is:
    
        * In the key `content`, that has as value another JSON object (`dict`) that contains:
            * A key with the media type, e.g. `application/json`, that contains as value another JSON object, that contains:
                * A key `schema`, that has as the value the JSON Schema from the model, here's the correct place.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/python/BUILD

            # is run. The natural place is libtensorflow_framework.so.
            # While adding graph_optimization_pass_registration to
            # libtensorflow_framework.so is possible with some modification in
            # dependency, many tests will fail due to multiple copies of LLVM.
            # See https://github.com/tensorflow/tensorflow/pull/39231 for details.
            # Alternatively, we place graph_optimization_pass_registration here
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 07 23:17:10 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. operator/cmd/mesh/upgrade.go

    type upgradeArgs struct {
    	*InstallArgs
    }
    
    // UpgradeCmd upgrades Istio control plane in-place with eligibility checks.
    func UpgradeCmd(ctx cli.Context) *cobra.Command {
    	rootArgs := &RootArgs{}
    	upgradeArgs := &upgradeArgs{
    		InstallArgs: &InstallArgs{},
    	}
    	cmd := &cobra.Command{
    		Use:   "upgrade",
    		Short: "Upgrade Istio control plane in-place",
    		Long:  "The upgrade command is an alias for the install command",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. releasenotes/notes/filter-order.yaml

          * WASM Authz
          * Authz
          * WASM Stats
          * Stats
          * WASM unspecified
          
          This changes the following areas:
          * Inbound TCP filters now place Metadata Exchange before Authn.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 15 18:28:50 UTC 2023
    - 895 bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/configuration/internal/ListenerBuildOperationDecorator.java

         * @param registrationPoint the place that the listener was registered - used in the operation description / details
         * @param listener the listener
         */
        <T> T decorate(String registrationPoint, Class<T> cls, T listener);
    
        /**
         * Decorates a listener of unknown type.
         * <p>
         * @param registrationPoint the place that the listener was registered - used in the operation description / details
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:19 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/Type.java

        /**
         * Artifact type name for a JAR file containing test classes. If the main artifact is placed on the class-path
         * ({@value #JAR} or {@value #CLASSPATH_JAR} types), then the test artifact will also be placed on the class-path.
         * Otherwise, if the main artifact is placed on the module-path ({@value #JAR} or {@value #MODULAR_JAR} types),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/Deleter.java

         *
         * <ul>
         *     <li>a directory, then its contents are removed recursively,</li>
         *     <li>a file or a symlink, then it is deleted and a directory is created in its place,</li>
         *     <li>non-existent, then a directory is created in its place.</li>
         * </ul>
         *
         * Does not follow symlinks.
         *
         * @return {@code true} if anything was removed, {@code false} if no change was
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. pkg/bootstrap/platform/platform.go

    // limitations under the License.
    
    package platform
    
    import (
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    )
    
    const (
    	KubernetesServiceHost = "KUBERNETES_SERVICE_HOST"
    )
    
    // Environment provides information for the platform on which the bootstrapping
    // is taking place.
    type Environment interface {
    	// Metadata returns a collection of environmental metadata, structured
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 07 20:19:01 UTC 2022
    - 2.2K bytes
    - Viewed (0)
Back to top