Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DumpAll (0.09 sec)

  1. pkg/scheduler/internal/cache/debugger/dumper.go

    // scheduler logs for debugging purposes.
    type CacheDumper struct {
    	cache    internalcache.Cache
    	podQueue queue.SchedulingQueue
    }
    
    // DumpAll writes cached nodes and scheduling queue information to the scheduler logs.
    func (d *CacheDumper) DumpAll(logger klog.Logger) {
    	d.dumpNodes(logger)
    	d.dumpSchedulingQueue(logger)
    }
    
    // dumpNodes writes NodeInfo to the scheduler logs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/cache/debugger/debugger.go

    	ch := make(chan os.Signal, 1)
    	signal.Notify(ch, compareSignal)
    
    	go func() {
    		for {
    			select {
    			case <-stopCh:
    				return
    			case <-ch:
    				d.Comparer.Compare(logger)
    				d.Dumper.DumpAll(logger)
    			}
    		}
    	}()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. tests/integration/pilot/istioctl_test.go

    			}
    			output, _ = istioCtl.InvokeOrFail(t, args)
    			jsonOutput = jsonUnmarshallOrFail(t, strings.Join(args, " "), output)
    			dumpAll, ok := jsonOutput.(map[string]any)
    			if !ok {
    				t.Fatalf("Failed to parse istioctl %s config dump to top level map", strings.Join(args, " "))
    			}
    			rawConfigs, ok := dumpAll["configs"].([]any)
    			if !ok {
    				t.Fatalf("Failed to parse istioctl %s config dump to slice of any", strings.Join(args, " "))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top