Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 161 for Dumps (0.03 sec)

  1. pilot/pkg/xds/debug_test.go

    		}
    		errorHandler("node id %v not found", nodeID)
    	}
    }
    
    func TestConfigDump(t *testing.T) {
    	tests := []struct {
    		name     string
    		wantCode int
    		proxyID  string
    	}{
    		{
    			name:     "dumps most recent proxy with 200",
    			proxyID:  "test.default",
    			wantCode: 200,
    		},
    		{
    			name:     "returns 404 if proxy not found",
    			proxyID:  "not-found",
    			wantCode: 404,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. pkg/envoy/proxy.go

    	} else if cfg.ComponentLogLevel != "" {
    		// Use the old setting if we don't set any component log levels in LogLevel
    		args = append(args, "--component-log-level", cfg.ComponentLogLevel)
    	}
    
    	// Explicitly enable core dumps. This may be desirable more often (by default), but for now we only set it in VM tests.
    	if enableEnvoyCoreDump {
    		args = append(args, "--enable-core-dump")
    	}
    	return &envoy{
    		ProxyConfig: cfg,
    		extraArgs:   args,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitor.java

     * 1. NOT DEPENDS ON ANY 3RD-PARTY LIBRARIES except JDK 11.
     * 2. UPDATE build-logic/lifecycle/src/main/kotlin/PrintStackTracesOnTimeoutBuildService.kt if this class is moved to another package.
     *
     * Used to print all JVMs' thread dumps on the machine. When it starts working, the process/machine might be in a bad state (e.g. deadlock),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. 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)
  5. tests/test_dependency_contextmanager.py

        return state
    
    
    @app.middleware("http")
    async def middleware(request, call_next):
        response: StreamingResponse = await call_next(request)
        response.headers["x-state"] = json.dumps(state.copy())
        return response
    
    
    client = TestClient(app)
    
    
    def test_async_state():
        assert state["/async"] == "asyncgen not started"
        response = client.get("/async")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Feb 24 23:06:37 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/quantization_context.h

                           bool *changed);
    
      // Updates the port quantization specifications of all the quant region ops
      // with the propagation results.
      LogicalResult Finalize();
    
      // Dumps the states stores in the state manager.
      void DumpStates(quantfork::QuantizeRegionOp current_op = {});
    
      // Update the quantization parameter for certain result of the op. By this
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. pkg/test/framework/resource/settings.go

    	EchoImage string
    
    	// CustomGRPCEchoImage if specified will run an extra container in the echo Pods responsible for gRPC ports
    	CustomGRPCEchoImage string
    
    	// MaxDumps is the maximum number of full test dumps that are allowed to occur within a test suite.
    	MaxDumps uint64
    
    	// EnableDualStack indicates the test should have dual stack enabled or not.
    	EnableDualStack bool
    
    	// Helm repo to be used for tests
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/add_dump_tensor_op.cc

              clEnumValN(DebuggerConfig::DEBUGGER_TYPE_FLOAT_PER_LAYER,
                         "float_per_layer", "Float Per-layer verify"))};
    
      std::string log_dir_path_ = "/tmp/dumps";
    };
    
    template <typename LiftedOpT>
    class AddDumpTensorOp : public OpRewritePattern<LiftedOpT> {
     public:
      // Does not take ownership of context, which must refer to a valid value that
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. 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)
  10. src/internal/coverage/cformat/format.go

    // importpath, source file, and line number before emitting (this sorting
    // is not explicitly mandated by the format, but seems like a good idea
    // for repeatable/deterministic dumps).
    func (fm *Formatter) EmitTextual(w io.Writer) error {
    	if fm.cm == coverage.CtrModeInvalid {
    		panic("internal error, counter mode unset")
    	}
    	if _, err := fmt.Fprintf(w, "mode: %s\n", fm.cm.String()); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top