Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 122 for somme (0.17 sec)

  1. 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)
  2. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    ,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,menuitem:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0};function jt(t){return V(t).some(function(t){return Ft[t.tagName.toLowerCase()]})}function Wt(t){return V(t).some(function(t){return t.offsetWidth||t.offsetHeight||t.getClientRects().length})}var Vt="input,select,textarea,button";function Rt(t){return V(t).some(function(t){return Mt(t,Vt)})}function qt(t,e){return V(t).filter(function(t){return Mt(t,e)})}function Yt(t,e){return D(e)?Mt(t,e)||...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    			Original: []byte(`
    name: my-object
    value: some-value
    other: current-other
    replacingItem:
      Some: Generic
      Yaml: Inside
      The: RawExtension
      Field: Period
    `),
    			Current: []byte(`
    name: my-object
    value: some-value
    other: current-other
    mergingList:
      - name: 1
      - name: 2
      - name: 3
    replacingItem:
      Some: Generic
      Yaml: Inside
      The: RawExtension
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. android/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: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
Back to top