Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 671 for dumpbv (0.15 sec)

  1. pilot/test/xdstest/validate.go

    			continue
    		}
    
    		s := Dump(t, l1.FilterChainMatch)
    		if i2, ok := check[s]; ok {
    			var fcms []string
    			for _, fc := range l.FilterChains {
    				fcms = append(fcms, Dump(t, fc.GetFilterChainMatch()))
    			}
    			t.Errorf("overlapping filter chains %d and %d:\n%v\n Full listener: %v", i1, i2, strings.Join(fcms, ",\n"), Dump(t, l))
    		} else {
    			check[s] = i1
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/ztunnel/configdump/configdump_test.go

    			inputFile:   "testdata/dump.json",
    			wantConfigs: 27,
    			wantErr:     false,
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			cw := &ConfigWriter{}
    			cd, _ := os.ReadFile(tt.inputFile)
    			err := cw.Prime(cd)
    			if cw.ztunnelDump == nil {
    				if tt.wantConfigs != 0 {
    					t.Errorf("wanted some configs loaded but config dump was nil")
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/data_dumper_logger_config.cc

      std::unique_ptr<llvm::raw_ostream> os;
      std::string filepath;
      if (tensorflow::CreateFileForDumping(filename, &os, &filepath).ok()) {
        print_callback(*os);
        LOG(INFO) << "Dumped MLIR module to " << filepath;
      }
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 31 00:41:24 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/debug/debug_test.cc

      pm.addPass(std::make_unique<NopPass>());
      ASSERT_TRUE(mlir::succeeded(pm.run(*module_)));
    
      EXPECT_THAT(captured_out,
                  HasSubstr("IR Dump Before tensorflow::debug_test::NopPass"));
      EXPECT_THAT(captured_out,
                  Not(HasSubstr("IR Dump After tensorflow::debug_test::NopPass")));
    }
    
    TEST_F(InitPassManagerTest, PrintIRAfterEverything) {
      converter::DebugOptions debug_options;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 11:15:16 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/cache/debugger/comparer.go

    	if err != nil {
    		return err
    	}
    
    	dump := c.Cache.Dump()
    
    	pendingPods, _ := c.PodQueue.PendingPods()
    
    	if missed, redundant := c.CompareNodes(nodes, dump.Nodes); len(missed)+len(redundant) != 0 {
    		logger.Info("Cache mismatch", "missedNodes", missed, "redundantNodes", redundant)
    	}
    
    	if missed, redundant := c.ComparePods(pods, pendingPods, dump.Nodes); len(missed)+len(redundant) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. .github/workflows/test-redistribute.yml

          - synchronize
    
    jobs:
      test-redistribute:
        runs-on: ubuntu-latest
        strategy:
          matrix:
            package:
              - fastapi
              - fastapi-slim
        steps:
          - name: Dump GitHub context
            env:
              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
          - uses: actions/checkout@v4
          - name: Set up Python
            uses: actions/setup-python@v5
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue May 07 18:31:27 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. .github/workflows/test.yml

      pull_request:
        types:
          - opened
          - synchronize
      schedule:
        # cron every week on monday
        - cron: "0 0 * * 1"
    
    jobs:
      lint:
        runs-on: ubuntu-latest
        steps:
          - name: Dump GitHub context
            env:
              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
          - uses: actions/checkout@v4
          - name: Set up Python
            uses: actions/setup-python@v5
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 00:30:25 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. src/runtime/debug/heapdump_test.go

    	// Trigger collection of x and y, queueing of their finalizers.
    	println("starting gc")
    	runtime.GC()
    
    	// Make sure WriteHeapDump doesn't fail with multiple queued finalizers.
    	println("starting dump")
    	WriteHeapDump(f.Fd())
    	println("done dump")
    }
    
    type G[T any] struct{}
    type I interface {
    	M()
    }
    
    //go:noinline
    func (g G[T]) M() {}
    
    var dummy I = G[int]{}
    var dummy2 I = G[G[int]]{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 12 00:32:29 UTC 2022
    - 2K bytes
    - Viewed (0)
  9. istioctl/pkg/util/configdump/util.go

    )
    
    // getSection takes a TypeURL and returns the types.Any from the config dump corresponding to that URL
    func (w *Wrapper) getSection(sectionTypeURL configTypeURL) (*anypb.Any, error) {
    	var dumpAny *anypb.Any
    	for _, conf := range w.Configs {
    		if conf.TypeUrl == string(sectionTypeURL) {
    			dumpAny = conf
    		}
    	}
    	if dumpAny == nil {
    		return nil, fmt.Errorf("config dump has no configuration type %s", sectionTypeURL)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 24 08:16:26 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. .github/workflows/publish.yml

    jobs:
      publish:
        runs-on: ubuntu-latest
        strategy:
          matrix:
            package:
              - fastapi
              - fastapi-slim
        permissions:
          id-token: write
        steps:
          - name: Dump GitHub context
            env:
              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
          - uses: actions/checkout@v4
          - name: Set up Python
            uses: actions/setup-python@v5
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 30 06:38:13 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top