Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 554 for mdump (0.05 sec)

  1. pkg/kube/krt/index.go

    		if got == k {
    			return true
    		}
    	}
    	return false
    }
    
    func (i *Index[I, K]) Dump() {
    	i.mu.RLock()
    	defer i.mu.RUnlock()
    	log.Errorf("> BEGIN DUMP (index %v[%T])", i.c.(internalCollection[I]).name(), ptr.TypeName[K]())
    	for k, v := range i.objects {
    		log.Errorf("key %v: %v", k, v.UnsortedList())
    	}
    	log.Errorf("< END DUMP (index %v[%T]", i.c.(internalCollection[I]).name(), ptr.TypeName[K]())
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 04:53:45 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. src/main/assemblies/files/fess.in.sh

    FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Dlog4j2.formatMsgNoLookups=true"
    FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Dlog4j.skipJansi=true"
    
    # Causes the JVM to dump its heap on OutOfMemory.
    #FESS_JAVA_OPTS="$FESS_JAVA_OPTS -XX:+HeapDumpOnOutOfMemoryError"
    # The path to the heap dump location, note directory must exists and have enough
    # space for a full heap dump.
    #FESS_JAVA_OPTS="$FESS_JAVA_OPTS -XX:HeapDumpPath=$FESS_HOME/logs/heapdump.hprof"
    
    # Disables explicit GC
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. src/main/assemblies/files/fess.in.bat

    REM FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Djavax.net.ssl.trustStorePassword=changeit
    
    REM Causes the JVM to dump its heap on OutOfMemory.
    REM set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -XX:+HeapDumpOnOutOfMemoryError
    REM The path to the heap dump location, note directory must exists and have enough
    REM space for a full heap dump.
    REM FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -XX:HeapDumpPath=%FESS_HOME%/logs/heapdump.hprof
    
    REM Disables explicit GC
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. pilot/pkg/xds/debug.go

    		return
    	}
    
    	dump := s.getConfigDumpByResourceType(con, nil, []string{v3.ExtensionConfigurationType})
    	if len(dump[v3.ExtensionConfigurationType]) == 0 {
    		w.WriteHeader(http.StatusNotFound)
    		return
    	}
    	writeJSON(w, dump[v3.ExtensionConfigurationType], req)
    }
    
    // ConfigDump returns information in the form of the Envoy admin API config dump for the specified proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/ztunnel/configdump/certificates.go

    // PrintSecretDump prints just the secret config dump to the ConfigWriter stdout
    func (c *ConfigWriter) PrintSecretDump(outputFormat string) error {
    	if c.ztunnelDump == nil {
    		return fmt.Errorf("config writer has not been primed")
    	}
    	secretDump := c.ztunnelDump.Certificates
    	out, err := json.MarshalIndent(secretDump, "", "    ")
    	if err != nil {
    		return fmt.Errorf("failed to marshal secrets dump: %v", err)
    	}
    	if outputFormat == "yaml" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 16:38:16 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. test/fixedbugs/issue4909b.go

    // such that T(n) embeds T(2n) and *T(2n+1).
    
    func main() {
    	fmt.Printf("// errorcheck\n\n")
    	fmt.Printf("package p\n\n")
    	fmt.Println(`import "unsafe"`)
    
    	// Dump types.
    	for n := 1; n < 256; n++ {
    		writeStruct(n)
    	}
    	// Dump leaves
    	for n := 256; n < 512; n++ {
    		fmt.Printf("type T%d int\n", n)
    	}
    
    	fmt.Printf("var t T1\n")
    	fmt.Printf("var p *T1\n")
    
    	// Simple selectors
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 19 06:26:35 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  7. istioctl/pkg/authz/analyzer.go

    		return nil, fmt.Errorf("failed to get dynamic listener dump: %s", err)
    	}
    
    	return &Analyzer{listenerDump: listeners}, nil
    }
    
    // Print print the analysis results.
    func (a *Analyzer) Print(writer io.Writer) {
    	var listeners []*listener.Listener
    	for _, l := range a.listenerDump.DynamicListeners {
    		listenerTyped := &listener.Listener{}
    		// Support v2 or v3 in config dump. See ads.go:RequestedTypes for more info.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 13 01:59:17 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  8. src/cmd/covdata/tool_test.go

    							check.tag, m[1])
    					}
    				}
    				break
    			}
    		}
    		if !found && !check.negate {
    			t.Errorf("dump output regexp match failed for %s", check.tag)
    			bad = true
    		}
    	}
    	if bad {
    		fmt.Printf("output from 'dump' run:\n")
    		dumplines(lines)
    	}
    }
    
    func testMergeSimple(t *testing.T, s state, indir1, indir2, tag string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/compare/comparator.go

    	"google.golang.org/protobuf/reflect/protoregistry"
    	"google.golang.org/protobuf/types/known/emptypb"
    
    	"istio.io/istio/istioctl/pkg/util/configdump"
    )
    
    // Comparator diffs between a config dump from Istiod and one from Envoy
    type Comparator struct {
    	envoy, istiod *configdump.Wrapper
    	w             io.Writer
    	context       int
    	location      string
    }
    
    // NewComparator is a comparator constructor
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/diff/diff.go

    }
    
    // ObjectGoPrintSideBySide prints a and b as textual dumps side by side,
    // enabling easy visual scanning for mismatches.
    func ObjectGoPrintSideBySide(a, b interface{}) string {
    	sA := dump.Pretty(a)
    	sB := dump.Pretty(b)
    
    	linesA := strings.Split(sA, "\n")
    	linesB := strings.Split(sB, "\n")
    	width := 0
    	for _, s := range linesA {
    		l := len(s)
    		if l > width {
    			width = l
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:45:31 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top