Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for mdump (0.07 sec)

  1. pkg/kube/inject/testdata/inputs/enable-core-dump.yaml.5.template.gen.yaml

              runAsNonRoot: true
            {{- end }}
          {{ end -}}
          {{- if eq (annotation .ObjectMeta `sidecar.istio.io/enableCoreDump` .Values.global.proxy.enableCoreDump) "true" }}
          - name: enable-core-dump
            args:
            - -c
            - sysctl -w kernel.core_pattern=/var/lib/istio/data/core.proxy && ulimit -c unlimited
            command:
              - /bin/sh
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  2. pilot/pkg/security/authn/policy_applier_test.go

    				t.Errorf("got:\n%s\nwanted:\n%s\n", spew.Sdump(got), spew.Sdump(c.expected))
    			}
    		})
    	}
    }
    
    func humanReadableAuthnFilterDump(filter *hcm.HttpFilter) string {
    	if filter == nil {
    		return "<nil>"
    	}
    	config := &authn_filter.FilterConfig{}
    	filter.GetTypedConfig().UnmarshalTo(config)
    	return spew.Sdump(config)
    }
    
    func TestAuthnFilterConfig(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
  3. istioctl/pkg/describe/describe.go

    		// not associated with the inbound traffic.
    		Direction: model.TrafficDirectionOutbound,
    	}
    
    	dump, err := cd.GetClusterConfigDump()
    	if err != nil {
    		return "", err
    	}
    
    	for _, dac := range dump.DynamicActiveClusters {
    		clusterTyped := &cluster.Cluster{}
    		// Support v2 or v3 in config dump. See ads.go:RequestedTypes for more info.
    		dac.Cluster.TypeUrl = v3.ClusterType
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  4. src/runtime/pprof/pprof_test.go

    	dumpCallers(pcs)
    }
    
    type inlineWrapperInterface interface {
    	dump(stack []uintptr)
    }
    
    type inlineWrapper struct {
    }
    
    func (h inlineWrapper) dump(pcs []uintptr) {
    	dumpCallers(pcs)
    }
    
    func inlinedWrapperCallerDump(pcs []uintptr) {
    	var h inlineWrapperInterface
    	h = &inlineWrapper{}
    	h.dump(pcs)
    }
    
    func TestCPUProfileRecursion(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    						t.Errorf("unexpected info: %v", dump.Pretty(v.Object))
    					}
    				case *v1.ReplicationController:
    					if _, ok := v.Object.(*v1.ReplicationController); !ok || v.Name != tt.expectedNames[i] || v.Namespace != "test" {
    						t.Errorf("unexpected info: %v", dump.Pretty(v.Object))
    					}
    				}
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    			return networkID
    		},
    	})
    	cl.RunAndWait(test.NewStop(t))
    
    	t.Cleanup(func() {
    		if t.Failed() {
    			idx := idx.(*index)
    			krt.Dump(idx.authorizationPolicies)
    			krt.Dump(idx.workloads.Collection)
    			krt.Dump(idx.services.Collection)
    			krt.Dump(idx.waypoints.Collection)
    		}
    	})
    	a := &ambientTestServer{
    		t:         t,
    		clusterID: clusterID,
    		network:   networkID,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/cache/cache_test.go

    			}
    
    			// Step 2: dump cached nodes successfully.
    			cachedNodes := NewEmptySnapshot()
    			if err := cache.UpdateSnapshot(logger, cachedNodes); err != nil {
    				t.Error(err)
    			}
    			newNode, found := cachedNodes.nodeInfoMap[node.Name]
    			if !found || len(cachedNodes.nodeInfoMap) != len(tc.nodes) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  8. src/cmd/internal/testdir/testdir_test.go

    		}
    		comment = ""
    	}
    
    	return ops
    }
    
    func (t test) asmCheck(outStr string, fn string, env buildEnv, fullops map[string][]wantedAsmOpcode) error {
    	// The assembly output contains the concatenated dump of multiple functions.
    	// the first line of each function begins at column 0, while the rest is
    	// indented by a tabulation. These data structures help us index the
    	// output by function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		}
    		if p.potentialNodes != nil {
    			schedulingCtx.Spec.PotentialNodes = *p.potentialNodes
    		}
    		if loggerV := logger.V(6); loggerV.Enabled() {
    			// At a high enough log level, dump the entire object.
    			loggerV.Info("Updating PodSchedulingContext", "podSchedulingCtx", klog.KObj(schedulingCtx), "podSchedulingCtxObject", klog.Format(schedulingCtx))
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/xcoff.go

    const (
    	// Total amount of space to reserve at the start of the file
    	// for File Header, Auxiliary Header, and Section Headers.
    	// May waste some.
    	XCOFFHDRRESERVE = FILHSZ_64 + AOUTHSZ_EXEC64 + SCNHSZ_64*23
    
    	// base on dump -o, then rounded from 32B to 64B to
    	// match worst case elf text section alignment on ppc64.
    	XCOFFSECTALIGN int64 = 64
    
    	// XCOFF binaries should normally have all its sections position-independent.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
Back to top