Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 116 for perf (0.27 sec)

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

    testing/*/build/tmp/**/daemon-*.out.log => failure-logs
    """
    
    // to avoid pathname too long error
    fun BuildSteps.substDirOnWindows(os: Os) {
        if (os == Os.WINDOWS) {
            script {
                name = "SETUP_VIRTUAL_DISK_FOR_PERF_TEST"
                executionMode = BuildStep.ExecutionMode.ALWAYS
                scriptContent = """
                    subst p: /d
                    subst p: "%teamcity.build.checkoutDir%"
                """.trimIndent()
    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)
  2. .teamcity/src/main/kotlin/configurations/PerformanceTestsPass.kt

                param("performance.channel", performanceTestSpec.channel())
            }
    
            features {
                publishBuildStatusToGithub(model)
            }
    
            val performanceResultsDir = "perf-results"
            val performanceProjectName = "performance"
    
            val taskName = if (performanceTestSpec.type == PerformanceTestType.flakinessDetection)
                "performanceTestFlakinessReport"
            else
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Apr 04 07:21:42 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  3. .teamcity/src/test/kotlin/PerformanceTestBuildTypeTest.kt

            )
    
            assertEquals(
                listOf(
                    "KILL_ALL_GRADLE_PROCESSES",
                    "SETUP_VIRTUAL_DISK_FOR_PERF_TEST",
                    "GRADLE_RUNNER",
                    "REMOVE_VIRTUAL_DISK_FOR_PERF_TEST",
                    "KILL_PROCESSES_STARTED_BY_GRADLE",
                    "CHECK_CLEAN_M2_ANDROID_USER_HOME"
                ),
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Apr 24 08:17:56 GMT 2024
    - 7.3K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.4.md

    - **Node**
      - [alpha] Publish node performance dashboard at http://node-perf-dash.k8s.io/#/builds ([docs](https://github.com/kubernetes/contrib/blob/master/node-perf-dash/README.md)) ([kubernetes/features#83](https://github.com/kubernetes/enhancements/issues/83))
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 133.5K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.2.md

    ## Changes since v1.1.1
    
    ### Major Themes
    
      * <strong>Significant scale improvements</strong>. Increased cluster scale by 400% to 1000 nodes with 30,000 pods per cluster.
    Kubelet supports 100 pods per node with 4x reduced system overhead.
      * <strong>Simplified application deployment and management. </strong>
         * Dynamic Configuration (ConfigMap API in the core API group) enables application
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Fri Dec 04 06:36:19 GMT 2020
    - 41.4K bytes
    - Viewed (0)
  6. api/go1.1.txt

    pkg syscall (linux-386), const PR_SET_TIMING = 14
    pkg syscall (linux-386), const PR_SET_TSC = 26
    pkg syscall (linux-386), const PR_SET_UNALIGN = 6
    pkg syscall (linux-386), const PR_TASK_PERF_EVENTS_DISABLE = 31
    pkg syscall (linux-386), const PR_TASK_PERF_EVENTS_ENABLE = 32
    pkg syscall (linux-386), const PR_TIMING_STATISTICAL = 0
    pkg syscall (linux-386), const PR_TIMING_TIMESTAMP = 1
    pkg syscall (linux-386), const PR_TSC_ENABLE = 1
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/-ResponseCommon.kt

    }
    
    fun Response.commonNewBuilder(): Response.Builder = Response.Builder(this)
    
    val Response.commonIsRedirect: Boolean
      get() =
        when (code) {
          HTTP_PERM_REDIRECT, HTTP_TEMP_REDIRECT, HTTP_MULT_CHOICE, HTTP_MOVED_PERM, HTTP_MOVED_TEMP, HTTP_SEE_OTHER -> true
          else -> false
        }
    
    val Response.commonCacheControl: CacheControl
      get() {
        var result = lazyCacheControl
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Apr 15 13:24:48 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.17.md

    - github.com/valyala/tcplisten: ceec8f9
    - github.com/vektah/gqlparser: v1.1.2
    - go.etcd.io/etcd: 3cf2f69
    - go.mongodb.org/mongo-driver: v1.1.2
    - go4.org: 417644f
    - golang.org/x/build: 2835ba2
    - golang.org/x/perf: 6e6d33e
    - golang.org/x/xerrors: a985d34
    - gopkg.in/alecthomas/kingpin.v2: v2.2.6
    - gopkg.in/cheggaaa/pb.v1: v1.0.25
    - gopkg.in/resty.v1: v1.12.0
    - grpc.go4.org: 11d0a25
    - k8s.io/system-validators: v1.0.4
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Jan 28 10:44:33 GMT 2021
    - 346.2K bytes
    - Viewed (1)
  9. okhttp/src/main/kotlin/okhttp3/internal/cache/CacheStrategy.kt

            HTTP_OK,
            HTTP_NOT_AUTHORITATIVE,
            HTTP_NO_CONTENT,
            HTTP_MULT_CHOICE,
            HTTP_MOVED_PERM,
            HTTP_NOT_FOUND,
            HTTP_BAD_METHOD,
            HTTP_GONE,
            HTTP_REQ_TOO_LONG,
            HTTP_NOT_IMPLEMENTED,
            HTTP_PERM_REDIRECT,
            -> {
              // These codes can be cached unless headers forbid it.
            }
    
            HTTP_MOVED_TEMP,
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Apr 15 13:24:48 GMT 2024
    - 12K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.3.md

    * Adding nodeports services to quota ([#22154](https://github.com/kubernetes/kubernetes/pull/22154), [@sdminonne](https://github.com/sdminonne))
    * e2e: adapt kubelet_perf.go to use the new summary metrics API ([#24003](https://github.com/kubernetes/kubernetes/pull/24003), [@yujuhong](https://github.com/yujuhong))
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 84K bytes
    - Viewed (0)
Back to top