Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 641 for place (0.1 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/go/internal/lockedfile/internal/filelock/filelock.go

    	Fd() uintptr
    
    	// Stat returns the FileInfo structure describing file.
    	Stat() (fs.FileInfo, error)
    }
    
    // Lock places an advisory write lock on the file, blocking until it can be
    // locked.
    //
    // If Lock returns nil, no other process will be able to place a read or write
    // lock on the file until this process exits, closes f, or calls Unlock on it.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 17 02:24:35 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/internal/internal.go

    // packages in the text repository.
    package internal // import "golang.org/x/text/internal"
    
    import (
    	"sort"
    
    	"golang.org/x/text/language"
    )
    
    // SortTags sorts tags in place.
    func SortTags(tags []language.Tag) {
    	sort.Sort(sorter(tags))
    }
    
    type sorter []language.Tag
    
    func (s sorter) Len() int {
    	return len(s)
    }
    
    func (s sorter) Swap(i, j int) {
    	s[i], s[j] = s[j], s[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top