Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1091 - 1100 of 1,309 for var0 (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. internal/http/transports.go

    package http
    
    import (
    	"context"
    	"crypto/tls"
    	"crypto/x509"
    	"net/http"
    	"syscall"
    	"time"
    
    	"github.com/minio/pkg/v3/certs"
    )
    
    // tlsClientSessionCacheSize is the cache size for client sessions.
    var tlsClientSessionCacheSize = 100
    
    const (
    	// WriteBufferSize 64KiB moving up from 4KiB default
    	WriteBufferSize = 64 << 10
    
    	// ReadBufferSize 64KiB moving up from 4KiB default
    	ReadBufferSize = 64 << 10
    )
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 08 17:51:53 GMT 2025
    - 6.5K bytes
    - Click Count (0)
  2. cmd/metrics-resource.go

    	cpuLoad5      MetricName = "load5"
    	cpuLoad15     MetricName = "load15"
    	cpuLoad1Perc  MetricName = "load1_perc"
    	cpuLoad5Perc  MetricName = "load5_perc"
    	cpuLoad15Perc MetricName = "load15_perc"
    )
    
    var (
    	resourceCollector *minioResourceCollector
    	// resourceMetricsMap is a map of subsystem to its metrics
    	resourceMetricsMap   map[MetricSubsystem]ResourceMetrics
    	resourceMetricsMapMu sync.RWMutex
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Oct 10 18:57:03 GMT 2025
    - 17.2K bytes
    - Click Count (0)
  3. docs/tr/docs/deployment/manually.md

    ## Sunucu Makinesi ve Sunucu Programı { #server-machine-and-server-program }
    
    İsimlendirme konusunda akılda tutulması gereken küçük bir detay var. 💡
    
    "**server**" kelimesi yaygın olarak hem uzak/bulut bilgisayarı (fiziksel veya sanal makine) hem de o makinede çalışan programı (ör. Uvicorn) ifade etmek için kullanılır.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 7.1K bytes
    - Click Count (0)
  4. cmd/config-current.go

    			Description: "[DEPRECATED - use `policy_plugin` instead] enable external OPA for policy enforcement",
    		},
    	}
    
    	config.RegisterHelpDeprecatedSubSys(deprecatedHelpKVMap)
    }
    
    var (
    	// globalServerConfig server config.
    	globalServerConfig   config.Config
    	globalServerConfigMu sync.RWMutex
    )
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 28.5K bytes
    - Click Count (0)
  5. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/runtimes/CheckTargetRuntimes.kt

                } else {
                    mutations.forEach { (file, text) -> file.writeText(text) }
                }
            } else {
                if (failures.isNotEmpty()) {
                    var message = """
                        Invalid declared target runtimes found.
                        To automatically fix them, run `./gradlew :checkTargetRuntimes --fix`.
                    """.trimIndent()
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 11 22:40:18 GMT 2026
    - 13.8K bytes
    - Click Count (0)
  6. docs/de/llm-prompt.md

    * the Advanced User Guide: das Handbuch für fortgeschrittene Benutzer
    * the SQLModel docs: die SQLModel-Dokumentation
    * the docs: die Dokumentation (use singular case)
    * the env var: die Umgebungsvariable
    * the `PATH` environment variable: die `PATH`-Umgebungsvariable
    * the `PATH`: der `PATH`
    * the `requirements.txt`: die `requirements.txt`
    * the API Router: der API-Router
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Dec 29 18:54:20 GMT 2025
    - 9.8K bytes
    - Click Count (0)
  7. okhttp/src/jvmTest/kotlin/okhttp3/ConnectionReuseTest.kt

      val clientTestRule: OkHttpClientTestRule = OkHttpClientTestRule()
    
      @StartStop
      private val server = MockWebServer()
    
      private val handshakeCertificates = platform.localhostHandshakeCertificates()
      private var client: OkHttpClient = clientTestRule.newClient()
    
      @Test
      fun connectionsAreReused() {
        server.enqueue(MockResponse(body = "a"))
        server.enqueue(MockResponse(body = "b"))
        val request = Request(server.url("/"))
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 12.3K bytes
    - Click Count (1)
  8. docs/tr/docs/deployment/server-workers.md

    [Daha önceki Deployment Concepts](concepts.md) bölümünde gördüğünüz gibi, kullanabileceğiniz birden fazla strateji var.
    
    Burada, `fastapi` komutunu kullanarak ya da `uvicorn` komutunu doğrudan çalıştırarak worker process'lerle Uvicorn'u nasıl kullanacağınızı göstereceğim.
    
    /// info | Bilgi
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 8.6K bytes
    - Click Count (0)
  9. src/main/webapp/WEB-INF/orig/view/index.jsp

    							</div>
    						</div>
    						<c:if test="${!empty popularWords}">
    							<div class="clearfix">
    								<p class="text-truncate">
    									<la:message key="labels.search_popular_word_word" />
    									<c:forEach var="item" varStatus="s" items="${popularWords}">
    										<c:if test="${s.index < 3}">
    											<la:link
    												href="/search?q=${f:u(item)}${fe:facetQuery()}${fe:geoQuery()}">${f:h(item)}</la:link>
    										</c:if>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 7.3K bytes
    - Click Count (1)
  10. okhttp/src/jvmTest/kotlin/okhttp3/internal/TagsTest.kt

            "a"
          }
        assertThat(result).isEqualTo("b")
        assertThat(atomicTags.get()[String::class]).isEqualTo("b")
      }
    
      @Test
      fun computeIfAbsentOnlyComputesOnceAfterRaceLost() {
        var computeCount = 0
        val tags = EmptyTags
        val atomicTags = AtomicReference<Tags>(tags)
        val result =
          atomicTags.computeIfAbsent(String::class) {
            computeCount++
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Fri Oct 24 11:37:46 GMT 2025
    - 7.1K bytes
    - Click Count (0)
Back to Top