Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 772 for Ismail (0.24 sec)

  1. maven-core/src/test/resources-project-builder/complete-model/wo-parent/pom.xml

          <distribution>repo</distribution>
          <comments>free</comments>
        </license>
      </licenses>
    
      <developers>
        <developer>
          <id>dev</id>
          <name>project-developer</name>
          <email>developer@</email>
          <url>https://developer</url>
          <organization>developer</organization>
          <organizationUrl>https://devel.org</organizationUrl>
          <roles>
            <role>devel</role>
          </roles>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 8.6K bytes
    - Viewed (0)
  2. pyproject.toml

    description = "FastAPI framework, high performance, easy to learn, fast to code, ready for production"
    readme = "README.md"
    requires-python = ">=3.8"
    license = "MIT"
    authors = [
        { name = "Sebastián Ramírez", email = "tiangolo@gmail.com" },
    ]
    classifiers = [
        "Intended Audience :: Information Technology",
        "Intended Audience :: System Administrators",
        "Operating System :: OS Independent",
        "Programming Language :: Python :: 3",
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 02:28:39 GMT 2024
    - 7K bytes
    - Viewed (0)
  3. src/main/resources/fess_message_en.properties

    constraints.CreditCardNumber.message        = {item} is invalid credit card number.
    constraints.EAN.message                     = {item} is invalid {type} barcode.
    constraints.Email.message                   = {item} is not a well-formed email address.
    constraints.Length.message                  = Length of {item} must be between {min} and {max}.
    Properties
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Mar 18 03:05:44 GMT 2023
    - 12.4K bytes
    - Viewed (0)
  4. CONTRIBUTING.md

    Gradle uses pull requests for contributions. Fork [gradle/gradle](https://github.com/gradle/gradle) and clone your fork. Configure your Git username and email with:
    
        git config user.name 'First Last'
        git config user.email ******@****.***
    
    #### Import Gradle into IntelliJ
    
    To import Gradle into IntelliJ:
    - Open the `build.gradle.kts` file with IntelliJ and choose "Open as Project"
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Feb 09 15:30:53 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  5. docs/de/docs/advanced/settings.md

    ```
    
    ### Den Server ausführen
    
    Als Nächstes würden Sie den Server ausführen und die Konfigurationen als Umgebungsvariablen übergeben. Sie könnten beispielsweise `ADMIN_EMAIL` und `APP_NAME` festlegen mit:
    
    <div class="termy">
    
    ```console
    $ ADMIN_EMAIL="******@****.***" APP_NAME="ChimichangApp" uvicorn main:app
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 20:17:14 GMT 2024
    - 17.8K bytes
    - Viewed (0)
  6. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // Skyhat : http://www.skyhat.io
    // Submitted by Shante Adam <******@****.***>
    bounty-full.com
    alpha.bounty-full.com
    beta.bounty-full.com
    
    // Small Technology Foundation : https://small-tech.org
    // Submitted by Aral Balkan <aral@small-tech.org>
    small-web.org
    
    // Smoove.io : https://www.smoove.io/
    // Submitted by Dan Kozak <******@****.***>
    vp4.me
    
    // Snowflake Inc : https://www.snowflake.com/
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  7. src/main/resources/fess_message.properties

    constraints.CreditCardNumber.message        = {item} is invalid credit card number.
    constraints.EAN.message                     = {item} is invalid {type} barcode.
    constraints.Email.message                   = {item} is not a well-formed email address.
    constraints.Length.message                  = Length of {item} must be between {min} and {max}.
    Properties
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Mar 18 03:05:44 GMT 2023
    - 12.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/dcerpc/rpc.java

                _dst.enc_ndr_small(this.clock_seq_hi_and_reserved);
                _dst.enc_ndr_small(this.clock_seq_low);
                int _nodes = 6;
                int _nodei = _dst.index;
                _dst.advance(1 * _nodes);
    
                _dst = _dst.derive(_nodei);
                for ( int _i = 0; _i < _nodes; _i++ ) {
                    _dst.enc_ndr_small(this.node[ _i ]);
                }
            }
    
    
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:40:13 GMT 2019
    - 8.8K bytes
    - Viewed (0)
  9. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    02A9..02AD    ; valid                                  # 3.0  LATIN SMALL LETTER FENG DIGRAPH..LATIN LETTER BIDENTAL PERCUSSIVE
    02AE..02AF    ; valid                                  # 4.0  LATIN SMALL LETTER TURNED H WITH FISHHOOK..LATIN SMALL LETTER TURNED H WITH FISHHOOK AND TAIL
    02B0          ; mapped                 ; 0068          # 1.1  MODIFIER LETTER SMALL H
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Feb 10 11:25:47 GMT 2024
    - 854.1K bytes
    - Viewed (2)
  10. tests/test_response_model_data_filter_no_inheritance.py

    from fastapi.testclient import TestClient
    from pydantic import BaseModel
    
    app = FastAPI()
    
    
    class UserCreate(BaseModel):
        email: str
        password: str
    
    
    class UserDB(BaseModel):
        email: str
        hashed_password: str
    
    
    class User(BaseModel):
        email: str
    
    
    class PetDB(BaseModel):
        name: str
        owner: UserDB
    
    
    class PetOut(BaseModel):
        name: str
        owner: User
    Python
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Fri Jul 07 17:12:13 GMT 2023
    - 1.7K bytes
    - Viewed (0)
Back to top