Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 435 for 3023 (0.17 sec)

  1. maven-core/src/test/projects/project-builder/mng-3023/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.its.mng3023</groupId>
      <artifactId>parent</artifactId>
      <version>1</version>
      <packaging>pom</packaging>
    
      <name>Maven Integration Test :: MNG-3023</name>
      <description>Test that reactor projects are included in dependency resolution.</description>
    
      <modules>
        <module>dependency</module>
        <module>consumer</module>
      </modules>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Nov 23 12:04:30 GMT 2014
    - 1.2K bytes
    - Viewed (0)
  2. maven-core/src/test/projects/project-builder/mng-3023/consumer/pom.xml

      <parent>
        <groupId>org.apache.maven.its.mng3023</groupId>
        <artifactId>parent</artifactId>
        <version>1</version>
      </parent>
    
      <artifactId>consumer</artifactId>
    
      <name>Maven Integration Test :: MNG-3023 :: Consumer</name>
      <description>Test that reactor projects are included in dependency resolution.</description>
    
      <dependencies>
        <dependency>
          <groupId>org.apache.maven.its.mng3023</groupId>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Nov 23 12:04:30 GMT 2014
    - 2K bytes
    - Viewed (0)
  3. maven-core/src/test/projects/project-builder/mng-3023/dependency/pom.xml

      <parent>
        <groupId>org.apache.maven.its.mng3023</groupId>
        <artifactId>parent</artifactId>
        <version>1</version>
      </parent>
    
      <artifactId>dependency</artifactId>
    
      <name>Maven Integration Test :: MNG-3023 :: Dependency</name>
      <description>Test that reactor projects are included in dependency resolution.</description>
    
      <build>
        <outputDirectory>dependency-classes</outputDirectory>
        <plugins>
          <plugin>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Nov 23 12:04:30 GMT 2014
    - 2.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/net/MediaType.java

       *
       * @since 13.0
       */
      public static final MediaType WML_UTF_8 = createConstantUtf8(TEXT_TYPE, "vnd.wap.wml");
    
      /**
       * As described in <a href="http://www.ietf.org/rfc/rfc3023.txt">RFC 3023</a>, this constant
       * ({@code text/xml}) is used for XML documents that are "readable by casual users." {@link
       * #APPLICATION_XML_UTF_8} is provided for documents that are intended for applications.
       */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Aug 07 16:17:10 GMT 2023
    - 46.2K bytes
    - Viewed (0)
  5. cmd/apierrorcode_string.go

    2568, 2585, 2595, 2618, 2640, 2666, 2687, 2705, 2732, 2763, 2790, 2811, 2832, 2856, 2881, 2909, 2937, 2953, 2976, 3006, 3017, 3029, 3046, 3061, 3079, 3108, 3125, 3141, 3157, 3175, 3193, 3216, 3237, 3260, 3271, 3287, 3310, 3327, 3355, 3374, 3404, 3424, 3439, 3457, 3472, 3486, 3521, 3540, 3551, 3564, 3579, 3602, 3628, 3644, 3662, 3680, 3694, 3711, 3742, 3762, 3783, 3804, 3823, 3842, 3860, 3883, 3907, 3931, 3956, 3991, 4016, 4050, 4083, 4104, 4118, 4137, 4166, 4189, 4216, 4250, 4282, 4312, 4335, 4363,...
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Apr 06 06:44:30 GMT 2024
    - 21.1K bytes
    - Viewed (0)
  6. internal/s3select/csv/testdata/testdata.zip

    -73.855033874511719 40.751911163330078 1 0.88 5.5 1 0.5 0 0 7 2 1 173 173 green 0.00 5.1 0.0 29 13 4.70 1282 409 4 Queens 040900 4040900 E QN26 North Corona 4102 648 401 4 Queens 040100 4040100 E QN26 North Corona 4102 3389282 2 2014-03-30 03:15:11 2014-03-30 03:20:04 N 1 -73.866645812988281 40.74957275390625 -73.880058288574219 40.754241943359375 1 0.99 5.5 0.5 0.5 0 0 6.5 2 1 173 129 green 0.35 0.0 0.0 49 39 10.07 1282 409 4 Queens 040900 4040900 E QN26 North Corona 4102 619 279 4 Queens 027900...
    ZIP Archive
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue Jun 01 21:59:40 GMT 2021
    - 111.6K bytes
    - Viewed (0)
  7. docs/ftp/README.md

    sftp>
    ```
    
    ## Advanced options
    
    ### Change default FTP port
    
    Default port '8021' can be changed via
    
    ```
    --ftp="address=:3021"
    ```
    
    ### Change FTP passive port range
    
    By default FTP requests OS to give a free port automatically, however you may want to restrict
    this to specific ports in certain restricted environments via
    
    ```
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Apr 15 14:34:02 GMT 2023
    - 5.5K bytes
    - Viewed (0)
  8. docs/zh/docs/tutorial/extra-models.md

        ```Python hl_lines="7  9  14  20  22  27-28  31-33  38-39"
        {!> ../../../docs_src/extra_models/tutorial001_py310.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="9  11  16  22  24  29-30  33-35  40-41"
        {!> ../../../docs_src/extra_models/tutorial001.py!}
        ```
    
    ### `**user_in.dict()` 简介
    
    #### Pydantic 的 `.dict()`
    
    `user_in` 是类 `UserIn` 的 Pydantic 模型。
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Mon Apr 01 01:15:53 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/envoy/configdump/testdata/secret/output

    default           Cert Chain     ACTIVE     false          6fbee254c22900615cb1f74e3d2f1713     2023-05-16T01:32:52Z     2023-05-15T01:30:52Z
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Jun 06 15:14:48 GMT 2023
    - 416 bytes
    - Viewed (0)
  10. docs/de/docs/tutorial/extra-models.md

        ```Python hl_lines="7  9  14  20  22  27-28  31-33  38-39"
        {!> ../../../docs_src/extra_models/tutorial001_py310.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="9  11  16  22  24  29-30  33-35  40-41"
        {!> ../../../docs_src/extra_models/tutorial001.py!}
        ```
    
    !!! info
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 20:26:47 GMT 2024
    - 8.7K bytes
    - Viewed (0)
Back to top