Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 100 for somme (0.16 sec)

  1. pkg/printers/internalversion/printers_test.go

    			expected: []metav1.TableRow{{Cells: []interface{}{"some-hpa", "ReplicationController/some-rc", "<none>", "<unset>", int64(10), int64(4), "<unknown>"}}},
    		},
    		// external source type, target average value (no current)
    		{
    			hpa: autoscaling.HorizontalPodAutoscaler{
    				ObjectMeta: metav1.ObjectMeta{Name: "some-hpa"},
    				Spec: autoscaling.HorizontalPodAutoscalerSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  2. tests/integration/pilot/common/routing.go

    			fmt.Sprintf("some-instances.%s:%d", cfg.ClusterLocalFQDN(), port),
    			fmt.Sprintf("some-instances.%s:12345", cfg.ClusterLocalFQDN()),
    			fmt.Sprintf("some-instances.%s.%s.svc", cfg.Service, cfg.Namespace.Name()),
    			fmt.Sprintf("some-instances.%s.%s.svc:12345", cfg.Service, cfg.Namespace.Name()),
    			fmt.Sprintf("some-instances.%s", cfg.Service),
    			fmt.Sprintf("some-instances.%s:%d", cfg.Service, port),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/gateway_test.go

    				Port: &networking.Port{
    					Protocol: protocol.HTTP.String(),
    				},
    			},
    			routeName:   "some-route",
    			proxyConfig: nil,
    			result: &filterChainOpts{
    				sniHosts:   nil,
    				tlsContext: nil,
    				httpOpts: &httpListenerOpts{
    					rds:              "some-route",
    					useRemoteAddress: true,
    					connectionManager: &hcm.HttpConnectionManager{
    						XffNumTrustedHops:        0,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_test.go

    			cluster: &cluster.Cluster{
    				Metadata: &core.Metadata{
    					FilterMetadata: map[string]*structpb.Struct{
    						"some-metadata": {
    							Fields: map[string]*structpb.Value{
    								"some-key": {Kind: &structpb.Value_StringValue{StringValue: "some-val"}},
    							},
    						},
    					},
    				},
    			},
    			svcInsts: []model.ServiceTarget{
    				{
    					Service: &model.Service{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/pkg.go

    // linking is not required.
    func externalLinkingReason(p *Package) (what string) {
    	// Some targets must use external linking even inside GOROOT.
    	if platform.MustLinkExternal(cfg.Goos, cfg.Goarch, false) {
    		return cfg.Goos + "/" + cfg.Goarch
    	}
    
    	// Some build modes always require external linking.
    	switch cfg.BuildBuildmode {
    	case "c-shared", "plugin":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    	if gp.m.p != 0 {
    		// Call on the systemstack to avoid a nosplit overflow build failure
    		// on some platforms when built with -N -l. See #64113.
    		systemstack(func() {
    			throw("wirep: already in go")
    		})
    	}
    	if pp.m != 0 || pp.status != _Pidle {
    		// Call on the systemstack to avoid a nosplit overflow build failure
    		// on some platforms when built with -N -l. See #64113.
    		systemstack(func() {
    			id := int64(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. src/net/http/transport_test.go

    		t.Error("didn't use dial hook")
    	}
    }
    
    func TestTransportDialContext(t *testing.T) { run(t, testTransportDialContext) }
    func testTransportDialContext(t *testing.T, mode testMode) {
    	ctxKey := "some-key"
    	ctxValue := "some-value"
    	var (
    		mu          sync.Mutex // guards following
    		gotReq      bool
    		gotCtxValue any
    	)
    
    	ts := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/horizontal_test.go

    				Object: &autoscalingv2.ObjectMetricSource{
    					DescribedObject: autoscalingv2.CrossVersionObjectReference{
    						APIVersion: "apps/v1",
    						Kind:       "Deployment",
    						Name:       "some-deployment",
    					},
    					Metric: autoscalingv2.MetricIdentifier{
    						Name: "qps",
    					},
    					Target: autoscalingv2.MetricTarget{
    						Type:  autoscalingv2.ValueMetricType,
    						Value: &targetValue,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    			name: "explicit content-type wins",
    			handler: func(rw ResponseWriter, r *Request) {
    				rw.Header().Set("Content-Type", "some/type")
    				rw.Write([]byte("<html><head></head><body>some html</body></html>"))
    			},
    			check: func(got, logs string) error {
    				if !strings.Contains(got, "Content-Type: some/type") {
    					return errors.New("wrong content-type; want html")
    				}
    				return nil
    			},
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/ClosingFuture.java

    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A step in a pipeline of an asynchronous computation. When the last step in the computation is
     * complete, some objects captured during the computation are closed.
     *
     * <p>A pipeline of {@code ClosingFuture}s is a tree of steps. Each step represents either an
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
Back to top