Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 59 for startPos (0.34 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/plugin_test.go

    		b.Log("to run a standalone server, run:")
    		b.Log("go run k8s.io/apiserver/pkg/admission/plugin/webhook/testing/main/main.go")
    		testServer := webhooktesting.NewTestServer(b)
    		testServer.StartTLS()
    		defer testServer.Close()
    		testServerURL = testServer.URL
    	}
    
    	serverURL, err := url.ParseRequestURI(testServerURL)
    	if err != nil {
    		b.Fatalf("this should never happen? %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/net/http/httptest/server.go

    	// NewUnstartedServer and calling Server.StartTLS.
    	EnableHTTP2 bool
    
    	// TLS is the optional TLS configuration, populated with a new config
    	// after TLS is started. If set on an unstarted server before StartTLS
    	// is called, existing fields are copied into the new config.
    	TLS *tls.Config
    
    	// Config may be changed after calling NewUnstartedServer and
    	// before Start or StartTLS.
    	Config *http.Server
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/validating/plugin_test.go

    		b.Log("to run a standalone server, run:")
    		b.Log("go run k8s.io/apiserver/pkg/admission/plugin/webhook/testing/main/main.go")
    		testServer := webhooktesting.NewTestServer(b)
    		testServer.StartTLS()
    		defer testServer.Close()
    		testServerURL = testServer.URL
    	}
    
    	objectInterfaces := webhooktesting.NewObjectInterfacesForTest()
    
    	serverURL, err := url.ParseRequestURI(testServerURL)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. okhttp-logging-interceptor/src/main/kotlin/okhttp3/logging/HttpLoggingInterceptor.kt

              }
            }
          }
    
          val startNs = System.nanoTime()
          val response: Response
          try {
            response = chain.proceed(request)
          } catch (e: Exception) {
            logger.log("<-- HTTP FAILED: $e")
            throw e
          }
    
          val tookMs = TimeUnit.NANOSECONDS.toMillis(System.nanoTime() - startNs)
    
          val responseBody = response.body!!
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 09:14:38 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/reduce_while_operands.cc

          visited.insert(operand);
        }
      }
    }
    
    void FindConsumedOp(Operation *start_op,
                        llvm::DenseSet<Operation *> &consumed_ops) {
      if (consumed_ops.contains(start_op)) return;
      std::vector<Operation *> queue;
      queue.push_back(start_op);
      consumed_ops.insert(start_op);
      while (!queue.empty()) {
        auto op = queue.back();
        queue.pop_back();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. pkg/controller/volume/persistentvolume/metrics/metrics.go

    type operationTimestamp struct {
    	pluginName string
    	operation  string
    	startTs    time.Time
    }
    
    func newOperationTimestamp(pluginName, operationName string) *operationTimestamp {
    	return &operationTimestamp{
    		pluginName: pluginName,
    		operation:  operationName,
    		startTs:    time.Now(),
    	}
    }
    
    // OperationStartTimeCache concurrent safe cache for operation start timestamps
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 25 13:09:16 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/filters/goaway_test.go

    func TestClientReceivedGOAWAY(t *testing.T) {
    	s, err := newTestGOAWAYServer()
    	if err != nil {
    		t.Fatalf("failed to set-up test GOAWAY http server, err: %v", err)
    	}
    
    	s.StartTLS()
    	defer s.Close()
    
    	cases := []struct {
    		name string
    		reqs []string
    		// expectConnections always equals to GOAWAY requests(urlGoaway or urlWatchWithGoaway) + 1
    		expectConnections int
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 12:58:54 UTC 2021
    - 13.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/unicode/norm/composition.go

    		*ss = 0
    		return ssOverflow
    	}
    	// The Stream-Safe Text Processing prescribes that the counting can stop
    	// as soon as a starter is encountered. However, there are some starters,
    	// like Jamo V and T, that can combine with other runes, leaving their
    	// successive non-starters appended to the previous, possibly causing an
    	// overflow. We will therefore consider any rune with a non-zero nLead to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/conversion/webhook.go

    	webhookServer.TLS = &tls.Config{
    		RootCAs:      roots,
    		Certificates: []tls.Certificate{cert},
    	}
    	webhookServer.StartTLS()
    	endpoint := webhookServer.URL + "/convert"
    	webhookConfig := &apiextensionsv1.WebhookClientConfig{
    		CABundle: localhostCert,
    		URL:      &endpoint,
    	}
    
    	// StartTLS returns immediately, there is a small chance of a race to avoid.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 14 01:38:09 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  10. src/net/smtp/smtp_test.go

    			t.Errorf("Client dial: %v", err)
    			return
    		}
    		defer c.Quit()
    		cfg := &tls.Config{ServerName: "example.com"}
    		testHookStartTLS(cfg) // set the RootCAs
    		if err := c.StartTLS(cfg); err != nil {
    			t.Errorf("StartTLS: %v", err)
    			return
    		}
    		cs, ok := c.TLSConnectionState()
    		if !ok {
    			t.Errorf("TLSConnectionState returned ok == false; want true")
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
Back to top