Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for Dumps (0.04 sec)

  1. pilot/pkg/xds/debug.go

    							}
    						}
    						dumps[resourceType] = append(dumps[resourceType], &discoveryv3.Resource{
    							Name:     w.Config.Name,
    							Resource: protoconv.MessageToAny(w),
    						})
    					default:
    						dumps[resourceType] = append(dumps[resourceType], rr)
    					}
    				default:
    					dumps[resourceType] = append(dumps[resourceType], rr)
    				}
    			}
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  2. samples/bookinfo/src/productpage/productpage.py

    # The API:
    @app.route('/api/v1/products')
    def productsRoute():
        return json.dumps(getProducts()), 200, {'Content-Type': 'application/json'}
    
    
    @app.route('/api/v1/products/<product_id>')
    def productRoute(product_id):
        headers = getForwardHeaders(request)
        status, details = getProductDetails(product_id, headers)
        return json.dumps(details), status, {'Content-Type': 'application/json'}
    
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K 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. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoTaskExtension.java

         * Path to dump all class files the agent sees are dumped to. Defaults to no dumps.
         *
         * @since 3.4
         */
        @Nullable
        @Optional
        @LocalState
        public File getClassDumpDir() {
            return classDumpDir;
        }
    
        /**
         * Sets path to dump all class files the agent sees are dumped to. Defaults to no dumps.
         *
         * @since 3.4
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    		i := 0
    		for unit := range values {
    			units[i] = unit
    			i++
    		}
    		sort.Strings(units)
    		unitsIgnored[key] = units
    	}
    
    	return numLabelUnits, unitsIgnored
    }
    
    // String dumps a text representation of a profile. Intended mainly
    // for debugging purposes.
    func (p *Profile) String() string {
    	ss := make([]string, 0, len(p.Comments)+len(p.Sample)+len(p.Mapping)+len(p.Location))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  6. pkg/test/kube/dump.go

    			}
    
    			findDumps := fmt.Sprintf("find %s -name core.*", coredumpDir)
    			stdout, _, err := c.PodExec(pod.Name, pod.Namespace, container.Name, findDumps)
    			if err != nil {
    				scopes.Framework.Warnf("Unable to get core dumps for cluster/pod: %s/%s/%s: %v",
    					c.Name(), pod.Namespace, pod.Name, err)
    				continue
    			}
    			for _, cd := range strings.Split(stdout, "\n") {
    				if strings.TrimSpace(cd) == "" {
    					continue
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

        DEBUGGER_TYPE_UNSPECIFIED = 0;
        // DEBUGGER_TYPE_WHOLE_MODEL creates two tf.Savedmodel - unquantized and
        // quantized model with DumpTensor added to outputs of quantizable layers.
        // The DumpTensor dumps entire value of its input to a specified file. When
        // DEBUGGER_TYPE_WHOLE_MODEL is used unquantized_dump_model_path has to be
        // specified.
        DEBUGGER_TYPE_WHOLE_MODEL = 1;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. pkg/volume/downwardapi/downwardapi.go

    	plugin  *downwardAPIPlugin
    	volume.MetricsProvider
    }
    
    // downwardAPIVolumeMounter fetches info from downward API from the pod
    // and dumps it in files
    type downwardAPIVolumeMounter struct {
    	*downwardAPIVolume
    	source v1.DownwardAPIVolumeSource
    	opts   *volume.VolumeOptions
    }
    
    // downwardAPIVolumeMounter implements volume.Mounter interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. pkg/test/framework/resource/flags.go

    			"Secret should already exist when used with istio.test.stableNamespaces.")
    	flag.Uint64Var(&settingsFromCommandLine.MaxDumps, "istio.test.maxDumps", settingsFromCommandLine.MaxDumps,
    		"Maximum number of full test dumps that are allowed to occur within a test suite.")
    	flag.BoolVar(&settingsFromCommandLine.EnableDualStack, "istio.test.enableDualStack", settingsFromCommandLine.EnableDualStack,
    		"Deploy Istio with Dual Stack enabled.")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/python/tf_tfl_flatbuffer_helpers.cc

          toco_flags.enable_mlir_variable_quantization();
      quant_specs->disable_per_channel_for_dense_layers =
          toco_flags.disable_per_channel_quantization_for_dense_layers();
      return absl::OkStatus();
    }
    
    // Dumps the op graph of the `module` to `filename` in DOT format.
    absl::Status DumpOpGraphToFile(mlir::ModuleOp module,
                                   const std::string& filename) {
      std::string error_message;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top