Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 316 for place (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. tensorflow/compiler/jit/clone_constants_for_better_clustering.cc

      for (Node* n : graph_->nodes()) {
        // We rely on the immutability of Tensors to safely clone Const operations.
        // However, "in place" ops do not respect the immutability of Tensors so we
        // avoid this transformation when such ops are present in the graph.
        //
        // In-place operations are problematic because they break the semantic
        // illusion that tensorflow::Tensor instances are immutable.  For instance
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

      Type type() const { return type_; }
    
      // Gets the name of the source file where the test part took place, or
      // NULL if it's unknown.
      const char* file_name() const {
        return file_name_.empty() ? NULL : file_name_.c_str();
      }
    
      // Gets the line in the source file where the test part took place,
      // or -1 if it's unknown.
      int line_number() const { return line_number_; }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-application/src/main/java/org/gradle/api/plugins/ApplicationPluginConvention.java

         */
        public abstract void setApplicationDefaultJvmArgs(Iterable<String> applicationDefaultJvmArgs);
    
        /**
         * Directory to place executables in
         *
         * @since 4.5
         */
        public abstract String getExecutableDir();
    
        /**
         * Directory to place executables in
         *
         * @since 4.5
         */
        public abstract void setExecutableDir(String executableDir);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-application/src/main/java/org/gradle/api/plugins/JavaApplication.java

         */
        void setApplicationDefaultJvmArgs(Iterable<String> applicationDefaultJvmArgs);
    
        /**
         * Directory to place executables in
         */
        String getExecutableDir();
    
        /**
         * Directory to place executables in
         */
        void setExecutableDir(String executableDir);
    
        /**
         * <p>The specification of the contents of the distribution.</p>
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top