Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 107 for somme (0.25 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. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

                    projectDir.mkdirs()
                    def file1 = file('lib1.size')
                    file1.text = 'some text'
                    def file2 = file('lib2.size')
                    file2.text = 'some text'
                    def jar1 = file('lib1.jar')
                    jar1.text = 'some text'
    
                    dependencies {
                        compile files(file1, jar1)
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top