Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 231 for dumpbv (0.16 sec)

  1. scripts/docs.py

        verify_config()
    
    
    @app.command()
    def langs_json():
        langs = []
        for lang_path in get_lang_paths():
            if lang_path.is_dir():
                langs.append(lang_path.name)
        print(json.dumps(langs))
    
    
    if __name__ == "__main__":
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:26:14 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. tests/integration/pilot/istioctl_test.go

    			g.Expect(jsonOutput).To(HaveKey("dynamicActiveSecrets"))
    			dump := &admin.SecretsConfigDump{}
    			if err := protomarshal.Unmarshal([]byte(output), dump); err != nil {
    				t.Fatal(err)
    			}
    			if len(dump.DynamicWarmingSecrets) > 0 {
    				t.Fatalf("found warming secrets: %v", output)
    			}
    			if len(dump.DynamicActiveSecrets) != 2 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. fastapi/openapi/docs.py

        <script>
        const ui = SwaggerUIBundle({{
            url: '{openapi_url}',
        """
    
        for key, value in current_swagger_ui_parameters.items():
            html += f"{json.dumps(key)}: {json.dumps(jsonable_encoder(value))},\n"
    
        if oauth2_redirect_url:
            html += f"oauth2RedirectUrl: window.location.origin + '{oauth2_redirect_url}',"
    
        html += """
        presets: [
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. pkg/controller/garbagecollector/dump_test.go

    	if len(expectedNodes) != len(actualNodes) {
    		t.Fatal(dump.Pretty(actualNodes))
    	}
    	for i := range expectedNodes {
    		currExpected := expectedNodes[i]
    		currActual := actualNodes[i]
    		if currExpected.uid != currActual.uid {
    			t.Errorf("expected %v, got %v", dump.Pretty(currExpected), dump.Pretty(currActual))
    		}
    	}
    	if len(expectedEdges) != len(actualEdges) {
    		t.Fatal(dump.Pretty(actualEdges))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/TreeFormatter.java

        public void blankLine() {
            node("");
        }
    
        /**
         * Starts a new node with the given type name.
         */
        public TreeFormatter node(Class<?> type) {
            // Implementation is currently dumb, can be made smarter
            if (type.isInterface()) {
                node("Interface ");
            } else {
                node("Class ");
            }
            appendType(type);
            return this;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. istioctl/pkg/proxyconfig/proxyconfig.go

    			case jsonOutput, yamlOutput:
    				var dump []byte
    				var err error
    				if len(args) == 1 {
    					podName, podNamespace, err := getPodName(ctx, args[0])
    					if err != nil {
    						return err
    					}
    					dump, err = extractConfigDump(kubeClient, podName, podNamespace, true)
    					if err != nil {
    						return err
    					}
    				} else {
    					dump, err = readFile(configDumpFile)
    					if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/dump_mlir_util.cc

      return filepath;
    }
    
    std::string GetDumpDirFromEnvVar() {
      const char* prefix_env = getenv("TF_DUMP_GRAPH_PREFIX");
      if (!prefix_env) {
        LOG(WARNING)
            << "Failed to dump MLIR module because dump location is not "
            << "specified through TF_DUMP_GRAPH_PREFIX environment variable.";
        return "";
      }
    
      std::string result = prefix_env;
    
      if (absl::EqualsIgnoreCase(result, "sponge") &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 03:03:46 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. src/net/http/httputil/dump_test.go

    			return req
    		}
    
    		if tt.WantDump != "" {
    			req := freshReq(tt)
    			dump, err := DumpRequest(req, !tt.NoBody)
    			if err != nil {
    				t.Errorf("DumpRequest #%d: %s\nWantDump:\n%s", i, err, tt.WantDump)
    				continue
    			}
    			if string(dump) != tt.WantDump {
    				t.Errorf("DumpRequest %d, expecting:\n%s\nGot:\n%s\n", i, tt.WantDump, string(dump))
    				continue
    			}
    		}
    
    		if tt.MustError {
    			req := freshReq(tt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:34:07 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  9. cmd/xl-storage-format_test.go

    					fi.VersionID = ids[rng.Intn(size)]
    					// Update...
    					err = xl.UpdateObjectVersion(fi)
    					if err != nil {
    						b.Fatal(err)
    					}
    					// Save...
    					dump, err = xl.AppendTo(dump[:0])
    					if err != nil {
    						b.Fatal(err)
    					}
    				}
    			})
    			b.Run("DeleteVersion", func(b *testing.B) {
    				b.SetBytes(int64(size))
    				b.ResetTimer()
    				b.ReportAllocs()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/volumezone/volume_zone_test.go

    	}
    }
    
    func BenchmarkVolumeZone(b *testing.B) {
    	tests := []struct {
    		Name      string
    		Pod       *v1.Pod
    		NumPV     int
    		NumPVC    int
    		NumNodes  int
    		PreFilter bool
    	}{
    		{
    			Name:      "with prefilter",
    			Pod:       createPodWithVolume("pod_0", "PVC_Stable_0"),
    			NumPV:     1000,
    			NumPVC:    1000,
    			NumNodes:  1000,
    			PreFilter: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 05:17:04 UTC 2023
    - 20K bytes
    - Viewed (0)
Back to top