Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 111 for statx (0.06 sec)

  1. pilot/pkg/networking/core/gateway_test.go

    							wellknown.RoleBasedAccessControl,
    							"extenstions.istio.io/wasmplugin/istio-system.wasm-stats",
    							xds.StatsFilterName,
    							wellknown.TCPProxy,
    						},
    					},
    				},
    			},
    		},
    		{
    			name: "HTTP RBAC, WASM, and Stats",
    			configs: []config.Config{
    				{
    					Meta: config.Meta{Name: "gateway", Namespace: "testns", GroupVersionKind: gvk.Gateway},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    			p := pl.(*PodTopologySpread)
    			b.ResetTimer()
    			for i := 0; i < b.N; i++ {
    				state = framework.NewCycleState()
    				if _, s := p.PreFilter(ctx, state, tt.pod); !s.IsSuccess() {
    					b.Fatal(s.AsError())
    				}
    				filterNode := func(i int) {
    					n, _ := p.sharedLister.NodeInfos().Get(allNodes[i].Name)
    					p.Filter(ctx, state, tt.pod, n)
    				}
    				p.parallelizer.Until(ctx, len(allNodes), filterNode, "")
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/proxier_test.go

    			populateEndpointSlices(fp, test.endpoints...)
    
    			fp.syncProxyRules()
    
    			if !reflect.DeepEqual(ipvs, test.expectedIPVS) {
    				t.Logf("actual ipvs state: %+v", ipvs)
    				t.Logf("expected ipvs state: %+v", test.expectedIPVS)
    				t.Errorf("unexpected IPVS state")
    			}
    
    			if test.expectedIPSets != nil {
    				checkIPSet(t, fp, test.expectedIPSets)
    			}
    
    			if test.expectedIptablesChains != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  4. cmd/bucket-replication.go

    	var replicationStatus replication.StatusType
    	defer func() {
    		if replicationStatus.Empty() {
    			// replication status is empty means
    			// replication was not attempted for some
    			// reason, notify the state of the object
    			// on disk.
    			replicationStatus = ri.ReplicationStatus
    		}
    		auditLogInternal(ctx, AuditLogOptions{
    			Event:     ri.EventType,
    			APIName:   ReplicateObjectAPI,
    			Bucket:    ri.Bucket,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/istio-service-dashboard.json

              "format": "time_series",
              "intervalFactor": 1,
              "refId": "A",
              "step": 4
            }
          ],
          "title": "Client Request Volume",
          "type": "stat"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${datasource}"
          },
          "fieldConfig": {
            "defaults": {
              "color": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 111.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "boolean"
            },
            "state": {
              "$ref": "#/definitions/io.k8s.api.core.v1.ContainerState",
              "description": "Details about the container's current condition."
            }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  7. pkg/scheduler/schedule_one_test.go

    			}
    			sched.applyDefaultHandlers()
    
    			state := framework.NewCycleState()
    			_, _, err = sched.findNodesThatFitPod(ctx, fwk, state, test.pod)
    			if err != nil {
    				t.Fatalf("error filtering nodes: %+v", err)
    			}
    			fwk.RunPreScorePlugins(ctx, state, test.pod, tf.BuildNodeInfos(test.nodes))
    			list, err := prioritizeNodes(ctx, nil, fwk, state, test.pod, tf.BuildNodeInfos(test.nodes))
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	MOVOU ·chacha20Constants<>(SB), A0
    	MOVOU (1*16)(keyp), B0
    	MOVOU (2*16)(keyp), C0
    	MOVOU (3*16)(keyp), D0
    
    	// Store state on stack for future use
    	MOVO B0, state1Store
    	MOVO C0, state2Store
    
    	// Load state, increment counter blocks
    	MOVO A0, A1; MOVO B0, B1; MOVO C0, C1; MOVO D0, D1; PADDL ·sseIncMask<>(SB), D1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    		ts.Config.ConnState = func(c net.Conn, state ConnState) {
    			if c == nil {
    				t.Errorf("nil conn seen in state %s", state)
    				return
    			}
    			sl := <-activeLog
    			if sl.active == nil && state == StateNew {
    				sl.active = c
    			} else if sl.active != c {
    				t.Errorf("unexpected conn in state %s", state)
    				activeLog <- sl
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/pkg.go

    var preloadWorkerCount = runtime.GOMAXPROCS(0)
    
    // preload holds state for managing concurrent preloading of package data.
    //
    // A preload should be created with newPreload before loading a large
    // package graph. flush must be called when package loading is complete
    // to ensure preload goroutines are no longer active. This is necessary
    // because of global mutable state that cannot safely be read and written
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top