Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 101 - 110 of 269 for France (0.03 seconds)

  1. .teamcity/src/main/kotlin/promotion/BasePublishGradleDistribution.kt

    import jetbrains.buildServer.configs.kotlin.BuildSteps
    import jetbrains.buildServer.configs.kotlin.FailureAction
    import jetbrains.buildServer.configs.kotlin.RelativeId
    
    abstract class BasePublishGradleDistribution(
        // The branch to be promoted
        val promotedBranch: String,
        val prepTask: String?,
        val triggerName: String,
        val gitUserName: String = "bot-teamcity",
        val gitUserEmail: String = "******@****.***",
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Mon Dec 22 07:15:16 GMT 2025
    - 3.2K bytes
    - Click Count (0)
  2. .github/DISCUSSION_TEMPLATE/questions.yml

            By asking questions in a structured way (following this) it will be much easier to help you.
    
            And there's a high chance that you will find the solution along the way and you won't even have to submit it and wait for an answer. 😎
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Thu Aug 03 15:59:41 GMT 2023
    - 5.8K bytes
    - Click Count (0)
  3. docs/en/docs/help-fastapi.md

    ### Ask to close { #ask-to-close }
    
    If they reply, there's a high chance you would have solved their problem, congrats, **you're a hero**! 🦸
    
    * Now, if that solved their problem, you can ask them to:
    
        * In GitHub Discussions: mark the comment as the **answer**.
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sun Aug 31 10:49:48 GMT 2025
    - 14K bytes
    - Click Count (0)
  4. scripts/people.py

            ["git", "config", "user.email", "github-actions[bot]@users.noreply.github.com"],
            check=True,
        )
        branch_name = f"fastapi-people-experts-{secrets.token_hex(4)}"
        logging.info(f"Creating a new branch {branch_name}")
        subprocess.run(["git", "checkout", "-b", branch_name], check=True)
        logging.info("Adding updated file")
        subprocess.run(["git", "add", str(people_path)], check=True)
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 21:25:59 GMT 2025
    - 12.3K bytes
    - Click Count (0)
  5. CONTRIBUTING.md

    Before code can be accepted all contributors must complete our
    [Individual Contributor License Agreement (CLA)][cla].
    
    
    Code Contributions
    ------------------
    
    Get working code on a personal branch with tests passing before you submit a PR:
    
    ```
    ./gradlew clean check
    ```
    
    Please make every effort to follow existing conventions and style in order to keep the code as
    readable as possible.
    
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Tue Feb 14 08:26:50 GMT 2023
    - 2K bytes
    - Click Count (0)
  6. docs/contribute/contributing.md

    Before code can be accepted all contributors must complete our
    [Individual Contributor License Agreement (CLA)][cla].
    
    
    Code Contributions
    ------------------
    
    Get working code on a personal branch with tests passing before you submit a PR:
    
    ```
    ./gradlew clean check
    ```
    
    Please make every effort to follow existing conventions and style in order to keep the code as
    readable as possible.
    
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Tue Feb 14 08:26:50 GMT 2023
    - 2K bytes
    - Click Count (0)
  7. .teamcity/scripts/update_wrapper_and_create_pr.sh

    # 
    # Usage:
    #   ./update_wrapper_and_create_pr.sh [wrapper_version]
    #
    # Arguments:
    #   wrapper_version - The Gradle version to update the wrapper to
    # 
    # Environment variables:
    #   DEFAULT_BRANCH  - The default branch to create the pull request on (e.g. "master"/"release")
    #   GITHUB_TOKEN    - GitHub bot token
    #   TRIGGERED_BY    - Optional. If it's "Release - Final", version will be from version-info-final-release/version-info.properties
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Tue Jul 29 03:20:20 GMT 2025
    - 2.9K bytes
    - Click Count (0)
  8. src/test/java/jcifs/smb/SmbCopyUtilTest.java

            // Act + Assert
            assertThrows(NullPointerException.class, () -> SmbCopyUtil.openCopyTargetFile(dest, SmbConstants.ATTR_NORMAL, false));
        }
    
        // --- Tests for copyFile exception handling branch ---
    
        @Nested
        class CopyFileExceptions {
    
            private SmbTreeHandleImpl newTreeHandle(boolean isSmb2) throws Exception {
                SmbTreeHandleImpl th = mock(SmbTreeHandleImpl.class);
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 12.1K bytes
    - Click Count (0)
  9. .teamcity/src/main/kotlin/promotion/StartReleaseCycle.kt

        init {
            id("Promotion_StartReleaseCycle")
            name = "Start Release Cycle"
            description = "Promotes a successful build on master as the start of a new release cycle on the release branch"
    
            params {
                text(
                    "gitUserEmail",
                    "",
                    label = "Git user.email Configuration",
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Thu Mar 20 06:13:56 GMT 2025
    - 2.8K bytes
    - Click Count (0)
  10. src/test/java/jcifs/smb/SecurityBlobTest.java

        @Test
        @DisplayName("length(): handles internal null defensively")
        void length_handlesNullInternalArray() throws Exception {
            // Arrange
            SecurityBlob blob = new SecurityBlob(new byte[] { 1, 2, 3 });
    
            // Force internal field to null via reflection to exercise defensive branch
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 9.4K bytes
    - Click Count (0)
Back to Top