Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for sheal (0.16 sec)

  1. .github/workflows/codeql-analysis.yml

        - name: Cleanup Gradle Daemons
          run: ./gradlew --stop
          if: ${{ matrix.language == 'java' }}
    
        # ℹī¸ Command-line programs to run using the OS shell.
        # 📚 https://git.io/JvXDl
    
        # ✏ī¸ If the Autobuild fails above, remove it and uncomment the following three lines
        #    and modify them (or add more) to build your code if your project
    Others
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Apr 24 03:34:53 GMT 2024
    - 4K bytes
    - Viewed (0)
  2. build-logic/jvm/src/main/kotlin/gradlebuild/startscript/tasks/GradleStartScriptGenerator.kt

                    // We assume that the declaration is not empty.
                    line.startsWith("DEFAULT_JVM_OPTS='") && line.endsWith('\'') -> {
                        ++replacementsCount
                        // Use shell's string concatenation: '...'"..." glues contents of quoted and double-quoted strings together.
                        // The result would be something like DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'" \"-javaagent:$APP_HOME/lib/agents/foobar.jar\""
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Fri Feb 24 10:25:27 GMT 2023
    - 6.3K bytes
    - Viewed (0)
  3. .github/hub_scripts/pr_ci.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    #
    
    #
    # Simple shell script for launching CI jobs using the @bot-gradle GitHub comment listener.
    # Uses the [hub](https://hub.github.com/) CLI command to issue API requests to GitHub.
    Shell Script
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Jan 22 15:25:21 GMT 2021
    - 1K bytes
    - Viewed (0)
  4. build-logic/jvm/src/main/kotlin/gradlebuild/propagated-env-variables.kt

    package gradlebuild
    
    import org.gradle.api.tasks.testing.Test
    import org.gradle.internal.os.OperatingSystem
    
    
    val propagatedEnvironmentVariables = listOf(
        // Obviously necessary
        "HOME",
        "SHELL",
        "TERM",
    
        // Otherwise Windows complains "Unrecognized Windows Sockets error: 10106"
        "SystemRoot",
        "OS",
    
        // For Android tests
        "ANDROID_HOME",
        "ANDROID_SDK_ROOT",
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Tue Apr 18 01:52:16 GMT 2023
    - 3.7K bytes
    - Viewed (0)
  5. .cm/plugins/filters/byCodeowner/ignore/index.js

                    // > Prior to 2.22.1
                    // > If the pattern does not contain a slash /,
                    // >   Git treats it as a shell glob pattern
                    // Actually, if there is only a trailing slash,
                    //   git also treats it as a shell glob pattern
    
                    // After 2.22.1 (compatible but clearer)
                    // > If there is a separator at the beginning or middle (or both)
    JavaScript
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 17.5K bytes
    - Viewed (0)
Back to top