Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 171 for scriptId (0.13 sec)

  1. .teamcity/src/main/kotlin/common/performance-test-extensions.kt

    package common
    
    import jetbrains.buildServer.configs.kotlin.BuildStep
    import jetbrains.buildServer.configs.kotlin.BuildSteps
    import jetbrains.buildServer.configs.kotlin.BuildType
    import jetbrains.buildServer.configs.kotlin.buildSteps.script
    
    fun BuildType.applyPerformanceTestSettings(os: Os = Os.LINUX, arch: Arch = Arch.AMD64, timeout: Int = 30) {
        applyDefaultSettings(os = os, arch = arch, timeout = timeout)
        artifactRules = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. .github/workflows/build-docs.yml

          - name: Verify Docs
            run: python ./scripts/docs.py verify-docs
          - name: Export Language Codes
            id: show-langs
            run: |
              echo "langs=$(python ./scripts/docs.py langs-json)" >> $GITHUB_OUTPUT
    
      build-docs:
        needs:
          - changes
          - langs
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 00:30:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. tests/integration/security/ca_custom_root/main_test.go

    }
    
    func setupConfig(_ resource.Context, cfg *istio.Config) {
    	if cfg == nil {
    		return
    	}
    	// Add alternate root certificate to list of trusted anchors
    	script := path.Join(env.IstioSrc, "samples/certs", "root-cert-alt.pem")
    	rootPEM, err := cert.LoadCert(script)
    	if err != nil {
    		return
    	}
    
    	cfgYaml := tmpl.MustEvaluate(`
    values:
      pilot:
        env:
          ISTIO_MULTIROOT_MESH: true
      meshConfig:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/CppApplicationInitIntegrationTest.groovy

        @Override
        String subprojectName() { 'app' }
    
        @ToBeFixedForConfigurationCache(because = "cpp-application plugin")
        def "creates sample source if no source present with #scriptDsl build scripts"() {
            when:
            run('init', '--type', 'cpp-application', '--dsl', scriptDsl.id)
    
            then:
            subprojectDir.file("src/main/cpp").assertHasDescendants(SAMPLE_APP_CLASS)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/CppLibraryInitIntegrationTest.groovy

        @Override
        String subprojectName() { 'lib' }
    
        @ToBeFixedForConfigurationCache(because = "cpp-library plugin")
        def "creates sample source if no source present with #scriptDsl build scripts"() {
            when:
            run('init', '--type', 'cpp-library', '--dsl', scriptDsl.id)
    
            then:
            subprojectDir.file("src/main/cpp").assertHasDescendants(SAMPLE_LIB_CLASS)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInInitScriptIntegrationTest.groovy

            problems.assertFailureHasProblems(failure) {
                if (file.endsWith(".gradle.kts")) {
                    withProblem("Initialization script '${relativePath(file)}': external process started")
                } else {
                    withProblem("Initialization script '${relativePath(file)}': line 5: external process started")
                }
            }
    
            where:
            snippetsFactory             | file
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. gradlew

    ##############################################################################
    #
    #   Gradle start up script for POSIX generated by Gradle.
    #
    #   Important for running:
    #
    #   (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
    #       noncompliant, but you have some other compliant shell such as ksh or
    #       bash, then to run this script, type that shell name before the whole
    #       command line, like:
    #
    #           ksh Gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/SwiftLibraryInitIntegrationTest.groovy

        }
    
        @Override
        String subprojectName() { 'lib' }
    
        @ToBeFixedForConfigurationCache(because = "swift-library plugin")
        def "creates sample source if no source present with #scriptDsl build scripts"() {
            when:
            run('init', '--type', 'swift-library', '--dsl', scriptDsl.id)
    
            then:
            subprojectDir.file("src/main/swift").assertHasDescendants(SAMPLE_LIBRARY_CLASS)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/webhtml.go

    		return string(data)
    	}
    	loadCSS := func(fname string) string {
    		return `<style type="text/css">` + "\n" + loadFile(fname) + `</style>` + "\n"
    	}
    	loadJS := func(fname string) string {
    		return `<script>` + "\n" + loadFile(fname) + `</script>` + "\n"
    	}
    
    	// Define a named template with specified contents.
    	def := func(name, contents string) {
    		sub := template.New(name)
    		template.Must(sub.Parse(contents))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/initialization/buildsrc/BuildSrcDetector.java

    import java.io.File;
    import java.io.IOException;
    import java.nio.file.Files;
    import java.nio.file.Path;
    import java.util.stream.Stream;
    
    import static org.gradle.internal.scripts.ScriptFileUtil.getValidBuildFileNames;
    import static org.gradle.internal.scripts.ScriptFileUtil.getValidSettingsFileNames;
    
    public class BuildSrcDetector {
        private static final Logger LOGGER = LoggerFactory.getLogger(BuildSrcDetector.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 09:18:31 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top