Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 848 for semver (0.45 sec)

  1. cmd/metrics.go

    			Name:    "s3_ttfb_seconds",
    			Help:    "Time taken by requests served by current MinIO server instance",
    			Buckets: []float64{.05, .1, .25, .5, 1, 2.5, 5, 10},
    		},
    		[]string{"api"},
    	)
    	bucketHTTPRequestsDuration = prometheus.NewHistogramVec(
    		prometheus.HistogramOpts{
    			Name:    "s3_ttfb_seconds",
    			Help:    "Time taken by requests served by current MinIO server instance per bucket",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheMavenPublishIntegrationTest.groovy

    package org.gradle.internal.cc.impl
    
    import org.gradle.api.credentials.PasswordCredentials
    import org.gradle.internal.credentials.DefaultPasswordCredentials
    import org.gradle.test.fixtures.server.http.HttpServer
    import org.gradle.test.fixtures.server.http.MavenHttpRepository
    import org.gradle.util.internal.GUtil
    import org.junit.Rule
    import spock.lang.Ignore
    import spock.lang.Issue
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r65/ToolingApiShutdownCrossVersionSpec.groovy

            setup:
            buildFile.text = """
                task hang {
                    doLast {
                        ${server.callFromBuild("waiting")}
                    }
                }
            """.stripIndent()
    
            def sync = server.expectAndBlock("waiting")
            def resultHandler = new TestResultHandler()
    
            when:
            def connector = toolingApi.connector()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIvyPublishIntegrationTest.groovy

    import org.gradle.test.fixtures.ivy.IvyRepository
    import org.gradle.test.fixtures.server.http.HttpServer
    import org.gradle.test.fixtures.server.http.IvyHttpRepository
    import org.gradle.util.internal.GUtil
    import org.junit.Rule
    
    import static org.gradle.test.fixtures.server.http.HttpServer.SupportedHash.*
    import static org.gradle.util.internal.GFileUtils.deleteDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperChecksumVerificationTest.groovy

        @Shared String cachedDistributionHash;
    
        @Rule
        BlockingHttpServer server = new BlockingHttpServer()
    
        def configureServer(boolean expectHead) {
            if (expectHead) {
                server.expect(server.head("/gradle-bin.zip"))
            }
            server.expect(server.get("/gradle-bin.zip").sendFile(distribution.binDistribution))
            server.start()
        }
    
        def "wrapper execution fails when using bad checksum"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. cluster/addons/metrics-server/resource-reader.yaml

        resources:
          - deployments
        resourceNames:
          - metrics-server-v0.7.1
        verbs:
          - get
          - patch
      - nonResourceURLs:
        - /metrics
        verbs:
          - get
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    metadata:
      name: system:metrics-server
      labels:
        kubernetes.io/cluster-service: "true"
        addonmanager.kubernetes.io/mode: Reconcile
    roleRef:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 26 01:57:01 UTC 2024
    - 988 bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/ParallelActionExecutionCrossVersionSpec.groovy

        def "nested actions do not run in parallel when target Gradle version does not support it"() {
            given:
            setupBuildWithDependencyResolution()
    
            expect:
            server.expect('root')
            server.expect('a')
            server.expect('b')
            def models = withConnection {
                def action = action(new ActionRunsNestedActions())
                action.standardOutput = System.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. tests/integration/telemetry/tracing/tracing.go

    }
    
    func WantOtelTraceRoot(namespace, clName string) (root zipkin.Span) {
    	serverSpan := zipkin.Span{
    		Name:        fmt.Sprintf("server.%s.svc.cluster.local:80/*", namespace),
    		ServiceName: fmt.Sprintf("server.%s", namespace),
    	}
    
    	root = zipkin.Span{
    		Name:        fmt.Sprintf("server.%s.svc.cluster.local:80/*", namespace),
    		ServiceName: fmt.Sprintf("client-%s.%s", clName, namespace),
    		ChildSpans:  []*zipkin.Span{&serverSpan},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 19:05:09 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. src/net/smtp/smtp.go

    }
    
    // helo sends the HELO greeting to the server. It should be used only when the
    // server does not support ehlo.
    func (c *Client) helo() error {
    	c.ext = nil
    	_, _, err := c.cmd(250, "HELO %s", c.localName)
    	return err
    }
    
    // ehlo sends the EHLO (extended hello) greeting to the server. It
    // should be the preferred greeting for servers that support it.
    func (c *Client) ehlo() error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_server_test.go

    	}
    }
    
    func TestCloseServerConnectionOnIdleClient(t *testing.T) {
    	clientConn, serverConn := localPipe(t)
    	server := Server(serverConn, testConfig.Clone())
    	go func() {
    		clientConn.Write([]byte{'0'})
    		server.Close()
    	}()
    	server.SetReadDeadline(time.Now().Add(time.Minute))
    	err := server.Handshake()
    	if err != nil {
    		if err, ok := err.(net.Error); ok && err.Timeout() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top