Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for auth (0.16 sec)

  1. .github/workflows/auto-assign-pr-to-author.yml

    name: 'Auto Assign PR to Author'
    on:
      pull_request:
        types: [opened]
    
    permissions:
      contents: read
    
    jobs:
      add-reviews:
        permissions:
          contents: read  # for kentaro-m/auto-assign-action to fetch config file
          pull-requests: write  # for kentaro-m/auto-assign-action to assign PR reviewers
        runs-on: ubuntu-latest
        steps:
    Others
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Jan 30 18:26:59 GMT 2024
    - 395 bytes
    - Viewed (0)
  2. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val googleHttpClientGson = "com.google.http-client:google-http-client-gson"
        val googleHttpClientApacheV2 = "com.google.http-client:google-http-client-apache-v2"
        val googleOauthClient = "com.google.oauth-client:google-oauth-client"
        val gradleIdeStarter = "org.gradle.buildtool.internal:gradle-ide-starter:$gradleIdeStarterVersion"
        val gradleProfiler = "org.gradle.profiler:gradle-profiler"
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Apr 16 15:50:58 GMT 2024
    - 14.4K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/SanityCheck.kt

        }
    
        applyDefaults(
            model,
            this,
            "sanityCheck",
            extraParameters = "-DenableCodeQuality=true ${buildScanTag("SanityCheck")} " + "-Porg.gradle.java.installations.auto-download=false"
        )
    }) {
        companion object {
            fun buildTypeId(model: CIBuildModel) = "${model.projectId}_SanityCheck"
        }
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Nov 30 11:15:05 GMT 2021
    - 708 bytes
    - Viewed (0)
  4. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/ide/AndroidStudioSystemProperties.kt

                return "-Dstudio.home=${androidStudioHome.get()}"
            }
            throw IllegalArgumentException("Android Studio home must be provided via the 'studioHome' system property, or auto downloading must be enabled via `autoDownloadAndroidStudio=true` gradle property, system property, or environment variable")
        }
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Tue Feb 20 09:51:32 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  5. .cm/plugins/filters/byCodeowner/index.js

     **/
    
    const { Octokit } = require("@octokit/rest");
    const ignore = require('./ignore/index.js');
    
    async function loadCodeownersFile(owner, repo, auth, pathToCodeOwners) {
        const octokit = new Octokit({
            request: { fetch },
            auth,
        });
    
        const res = await octokit.repos.getContent({
            owner,
            repo,
            path: pathToCodeOwners
        });
    
    JavaScript
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Apr 22 19:12:32 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  6. .cm/misc_labels.cm

        if:
          - {{ ('misc_labels' | isEnabledAutomation(pr)) }}
          - {{ is.docs }}
        run:
          - action: add-label@v1
            args:
              label: 'a:documentation'
    
      # Add the a:chore label and auto-approve formatting-only changes
      formatting_only:
        if:
          - {{ ('misc_labels' | isEnabledAutomation(pr)) }}
          - {{ is.formatting }}
        run:
          - action: add-label@v1
            args:
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 3K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/common/performance-test-extensions.kt

        "-PtestJavaVersion=$testJavaVersion",
        "-PtestJavaVendor=$testJavaVendor",
        "-PautoDownloadAndroidStudio=true",
        "-PrunAndroidStudioInHeadlessMode=true",
        "-Porg.gradle.java.installations.auto-download=false",
        os.javaInstallationLocations()
    ) + listOf(
        "-Porg.gradle.performance.branchName" to "%teamcity.build.branch%",
        "-Porg.gradle.performance.db.url" to "%performance.db.url%",
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Apr 04 07:21:42 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  8. build-logic/jvm/src/main/kotlin/gradlebuild/propagated-env-variables.kt

        "PATHEXT",
    )
    
    
    val credentialsKeywords = listOf(
        "api_key",
        "access_key",
        "apikey",
        "accesskey",
        "password",
        "token",
        "credential",
        "auth"
    )
    
    
    fun Test.filterEnvironmentVariables() {
        environment = makePropagatedEnvironment()
        environment.forEach { (key, _) ->
            if (credentialsKeywords.any { key.contains(it, true) }) {
    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)
  9. .teamcity/src/main/kotlin/configurations/BuildDistributions.kt

            this,
            "packageBuild",
            extraParameters = buildScanTag("BuildDistributions") +
                " -PtestJavaVersion=${LINUX.buildJavaVersion.major}" +
                " -Porg.gradle.java.installations.auto-download=false"
        )
    
        features {
            publishBuildStatusToGithub(model)
        }
    
        artifactRules = """$artifactRules
            subprojects/distributions-full/build/distributions/*.zip => distributions
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Sep 22 09:52:00 GMT 2023
    - 970 bytes
    - Viewed (0)
  10. .teamcity/src/test/kotlin/ApplyDefaultConfigurationTest.kt

        }
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Apr 24 08:17:56 GMT 2024
    - 6.5K bytes
    - Viewed (0)
Back to top