Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 191 for mdump (3.33 sec)

  1. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-absolute-override.yaml

              privileged: true
              {{- end }}
            restartPolicy: Always
          {{- end }}
          {{  end -}}
          {{- if eq .Values.global.proxy.enableCoreDump true }}
          - name: enable-core-dump
            args:
            - -c
            - sysctl -w kernel.core_pattern=/var/lib/istio/core.proxy && ulimit -c unlimited
            command:
              - /bin/sh
          {{- if contains "/" .Values.global.proxy_init.image }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  2. pilot/pkg/xds/bench_test.go

    	proxy.SetSidecarScope(pushContext)
    	proxy.SetGatewaysForProxy(pushContext)
    	proxy.SetServiceTargets(env.ServiceDiscovery)
    }
    
    var debugGeneration = env.Register("DEBUG_CONFIG_DUMP", false, "if enabled, print a full config dump of the generated config")
    
    var benchmarkScope = istiolog.RegisterScope("benchmark", "")
    
    // Add additional debug info for a test
    func logDebug(b *testing.B, m model.Resources) {
    	b.Helper()
    	b.StopTimer()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/controller_test.go

    }
    
    func (cqs *ctlrTestQueueSet) BeginConfigChange(qc fq.QueuingConfig) (fq.QueueSetCompleter, error) {
    	return ctlrTestQueueSetCompleter{cqs.cts, cqs, qc}, nil
    }
    
    func (cqs *ctlrTestQueueSet) Dump(bool) debug.QueueSetDump {
    	return debug.QueueSetDump{}
    }
    
    func (cqc ctlrTestQueueSetCompleter) Complete(dc fq.DispatchingConfig) fq.QueueSet {
    	cqc.cts.lock.Lock()
    	defer cqc.cts.lock.Unlock()
    	qs := cqc.cqs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_bsd.go

    		a[i] = _Gid_t(v)
    	}
    	return setgroups(len(a), &a[0])
    }
    
    // Wait status is 7 bits at bottom, either 0 (exited),
    // 0x7F (stopped), or a signal number that caused an exit.
    // The 0x80 bit is whether there was a core dump.
    // An extra number (exit code, signal causing a stop)
    // is in the high bits.
    
    type WaitStatus uint32
    
    const (
    	mask  = 0x7F
    	core  = 0x80
    	shift = 8
    
    	exited  = 0
    	killed  = 9
    	stopped = 0x7F
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 15K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

              privileged: true
              {{- end }}
            restartPolicy: Always
          {{- end }}
          {{  end -}}
          {{- if eq .Values.global.proxy.enableCoreDump true }}
          - name: enable-core-dump
            args:
            - -c
            - sysctl -w kernel.core_pattern=/var/lib/istio/core.proxy && ulimit -c unlimited
            command:
              - /bin/sh
          {{- if contains "/" .Values.global.proxy_init.image }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-configmap.yaml

              privileged: true
              {{- end }}
            restartPolicy: Always
          {{- end }}
          {{  end -}}
          {{- if eq .Values.global.proxy.enableCoreDump true }}
          - name: enable-core-dump
            args:
            - -c
            - sysctl -w kernel.core_pattern=/var/lib/istio/core.proxy && ulimit -c unlimited
            command:
              - /bin/sh
          {{- if contains "/" .Values.global.proxy_init.image }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-enabled-nsbydefault.yaml

              privileged: true
              {{- end }}
            restartPolicy: Always
          {{- end }}
          {{  end -}}
          {{- if eq .Values.global.proxy.enableCoreDump true }}
          - name: enable-core-dump
            args:
            - -c
            - sysctl -w kernel.core_pattern=/var/lib/istio/core.proxy && ulimit -c unlimited
            command:
              - /bin/sh
          {{- if contains "/" .Values.global.proxy_init.image }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  8. src/runtime/runtime1.go

    // If level is 2, show tracebacks including runtime frames.
    // If all is set, print all goroutine stacks. Otherwise, print just the current goroutine.
    // If crash is set, crash (core dump, etc) after tracebacking.
    //
    //go:nosplit
    func gotraceback() (level int32, all, crash bool) {
    	gp := getg()
    	t := atomic.Load(&traceback_cache)
    	crash = t&tracebackCrash != 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. src/syscall/syscall_solaris.go

    	return Getdents(fd, buf, new(uintptr))
    }
    
    // Wait status is 7 bits at bottom, either 0 (exited),
    // 0x7F (stopped), or a signal number that caused an exit.
    // The 0x80 bit is whether there was a core dump.
    // An extra number (exit code, signal causing a stop)
    // is in the high bits.
    
    type WaitStatus uint32
    
    const (
    	mask  = 0x7F
    	core  = 0x80
    	shift = 8
    
    	exited  = 0
    	stopped = 0x7F
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. src/syscall/syscall_linux.go

    // 0x7F (stopped), or a signal number that caused an exit.
    // The 0x80 bit is whether there was a core dump.
    // An extra number (exit code, signal causing a stop)
    // is in the high bits. At least that's the idea.
    // There are various irregularities. For example, the
    // "continued" status is 0xFFFF, distinguishing itself
    // from stopped via the core dump bit.
    
    const (
    	mask    = 0x7F
    	core    = 0x80
    	exited  = 0x00
    	stopped = 0x7F
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
Back to top