Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 6,837 for an (0.01 sec)

  1. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvn/MavenOptions.java

        /**
         * Returns the path to an alternate POM file.
         *
         * @return an {@link Optional} containing the path to the alternate POM file, or empty if not specified
         */
        @Nonnull
        Optional<String> alternatePomFile();
    
        /**
         * Indicates whether Maven should operate in non-recursive mode (i.e., not build child modules).
         *
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-02-26 17:31
    - 8.3K bytes
    - Viewed (0)
  2. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Logger.java

            log(Level.DEBUG, message, error);
        }
    
        /**
         * Logs an info message without an associated exception.
         *
         * @param message the info message to be logged
         */
        default void info(@Nonnull String message) {
            log(Level.INFO, message);
        }
    
        /**
         * Logs an info message with an associated exception.
         *
         * @param message the info message to be logged
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-01-31 20:56
    - 4.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbFileOutputStream.java

        private SmbComWrite req;
        private SmbComWriteResponse rsp;
    
    /**
     * Creates an {@link java.io.OutputStream} for writing to a file
     * on an SMB server addressed by the URL parameter. See {@link
     * jcifs.smb1.smb1.SmbFile} for a detailed description and examples of
     * the smb URL syntax.
     *
     * @param url An smb URL string representing the file to write to
     */
    
    Registered: 2025-05-25 00:10
    - Last Modified: 2019-03-22 21:10
    - 9.2K bytes
    - Viewed (0)
  4. docs/vi/docs/virtual-environments.md

    $ mkdir awesome-project
    // Vào thư mục dự án
    $ cd awesome-project
    ```
    
    </div>
    
    ## Tạo một Môi trường ảo
    
    Khi bạn bắt đầu làm việc với một dự án Python **trong lần đầu**, hãy tạo một môi trường ảo **<abbr title="có nhiều cách thực hiện khác nhau, đây là một hướng dẫn đơn giản">trong thư mục dự án của bạn</abbr>**.
    
    /// tip
    
    Bạn cần làm điều này **một lần cho mỗi dự án**, không phải mỗi khi bạn làm việc.
    ///
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-02-07 22:19
    - 26.1K bytes
    - Viewed (0)
  5. tensorflow/c/eager/c_api_unified_experimental.h

    // A TF_ExecutionContext stores knowledge about how to execute an operation.
    // E.g. it could know whether we're in eager mode or graph mode, keeps track
    // of gradient tapes, etc.
    typedef struct TF_ExecutionContext TF_ExecutionContext;
    
    // A TF_AbstractTensor is an input to an operation. E.g. it could be a union
    // type of eager and graph tensors. It is also the result of executing an
    // operation.
    typedef struct TF_AbstractTensor TF_AbstractTensor;
    Registered: 2025-05-27 12:39
    - Last Modified: 2021-10-24 11:27
    - 7K bytes
    - Viewed (0)
  6. docs/en/docs/advanced/openapi-callbacks.md

    ## An app with callbacks
    
    Let's see all this with an example.
    
    Imagine you develop an app that allows creating invoices.
    
    These invoices will have an `id`, `title` (optional), `customer`, and `total`.
    
    The user of your API (an external developer) will create an invoice in your API with a POST request.
    
    Then your API will (let's imagine):
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-09 11:23
    - 7.6K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/collect/testing/MinimalIterable.java

      /** Returns an iterable whose iterator returns the given elements in order. */
      public static <E extends @Nullable Object> MinimalIterable<E> of(E... elements) {
        // Make sure to get an unmodifiable iterator
        return new MinimalIterable<>(asList(elements).iterator());
      }
    
      /**
       * Returns an iterable whose iterator returns the given elements in order. The elements are copied
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-22 03:38
    - 3.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/beans/util/CopyOptions.java

        /**
         * Sets a converter for dates.
         *
         * @param pattern
         *            The date pattern. Must not be {@literal null} or an empty string.
         * @param propertyNames
         *            The property names to which this converter will be applied. Each element must not be {@literal null} or an empty string.
         * @return This instance itself
         * @see DateConverter
         */
    Registered: 2025-05-24 08:58
    - Last Modified: 2025-05-10 01:32
    - 17.4K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/testing/EqualsTester.java

                !item.equals(item.toString()));
          }
        }
      }
    
      /**
       * Class used to test whether equals() correctly handles an instance of an incompatible class.
       * Since it is a private inner class, the invoker can never pass in an instance to the tester
       */
      private enum NotAnInstance {
        EQUAL_TO_NOTHING;
      }
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-05-13 17:27
    - 6K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/discovery/v1/generated.proto

      // hints contains information associated with how an endpoint should be
      // consumed.
      // +optional
      optional EndpointHints hints = 8;
    }
    
    // EndpointConditions represents the current condition of an endpoint.
    message EndpointConditions {
      // ready indicates that this endpoint is prepared to receive traffic,
      // according to whatever system is managing the endpoint. A nil value
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-03-11 18:43
    - 8K bytes
    - Viewed (0)
Back to top