Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 67 for dumpling (0.2 sec)

  1. tensorflow/compiler/mlir/tensorflow_to_stablehlo/tf_to_stablehlo_translate.cc

        llvm::cl::Optional, llvm::cl::init("serve"));
    
    // NOLINTNEXTLINE
    opt<bool> elide_large_elements_attrs(
        "e",
        llvm::cl::desc(
            "Elide large elements attrs while dumping the output StableHLO."),
        llvm::cl::Optional, llvm::cl::init(false));
    
    }  // namespace
    
    namespace mlir {
    
    namespace {
    // Dump the ModuleOp 'module' to the file specified using 'outputFileName'
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtCompilerFacility.kt

        ): KaCompilationResult
    }
    
    public typealias KtCompilerFacility = KaCompilerFacility
    
    public interface KaCompilerFacilityMixIn : KaSessionMixIn {
        /**
         * Compile the given [file] in-memory (without dumping the compiled binaries to a disk).
         *
         * @param file A file to compile.
         *  The file must be either a source module file, or a [KtCodeFragment].
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. samples/bookinfo/src/productpage/productpage.py

        incoming_headers = [
            # All applications should propagate x-request-id. This header is
            # included in access log statements and is used for consistent trace
            # sampling and log sampling decisions in Istio.
            'x-request-id',
    
            # Lightstep tracing header. Propagate this if you use lightstep tracing
            # in Istio (see
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. src/runtime/pprof/protomem.go

    			}
    		})
    	}
    	b.build()
    	return nil
    }
    
    // scaleHeapSample adjusts the data from a heap Sample to
    // account for its probability of appearing in the collected
    // data. heap profiles are a sampling of the memory allocations
    // requests in a program. We estimate the unsampled value by dividing
    // each collected sample by its probability of appearing in the
    // profile. heap profiles rely on a poisson process to determine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_test.go

    		tproxy           *model.Proxy
    		envPilotSampling float64
    	}{
    		{
    			name:             "random-sampling-env",
    			tproxy:           getProxy(),
    			envPilotSampling: 80.0,
    			in: &meshconfig.Tracing{
    				Tracer:           nil,
    				CustomTags:       nil,
    				MaxPathTagLength: 0,
    				Sampling:         0,
    			},
    			out: &hcm.HttpConnectionManager_Tracing{
    				MaxPathTagLength: nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  6. src/runtime/pprof/pprof.go

    //
    // Each Profile has a unique name. A few profiles are predefined:
    //
    //	goroutine    - stack traces of all current goroutines
    //	heap         - a sampling of memory allocations of live objects
    //	allocs       - a sampling of all past memory allocations
    //	threadcreate - stack traces that led to the creation of new OS threads
    //	block        - stack traces that led to blocking on synchronization primitives
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  7. pkg/apis/resource/validation/validation.go

    			allErrs = append(allErrs, field.Invalid(idxPath, nil, "data and structuredData are mutually exclusive"))
    		}
    	}
    	if len(resourceHandles) > maxSize {
    		// Dumping the entire field into the error message is likely to be too long,
    		// in particular when it is already beyond the maximum size. Instead this
    		// just shows the number of entries.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/lower_cluster_to_runtime_ops.cc

    namespace {
    
    using mlir::LogicalResult;
    using mlir::OpPassManager;
    using mlir::PassManager;
    using mlir::func::FuncOp;
    using mlir::TF::StandardPipelineOptions;
    
    // Setup the input pass manager to enable IR dumping after each pass.
    // Note a side effect of this method is that multi threading will be disabled.
    void EnablePassIRPrinting(PassManager& pm, const std::string& dump_group_name,
                              llvm::StringRef module_name) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. src/cmd/covdata/covdata.go

    var memprofileflag = flag.String("memprofile", "", "Write memory profile to specified file")
    var memprofilerateflag = flag.Int("memprofilerate", 0, "Set memprofile sampling rate to value")
    
    var matchpkg func(name string) bool
    
    var atExitFuncs []func()
    
    func atExit(f func()) {
    	atExitFuncs = append(atExitFuncs, f)
    }
    
    func Exit(code int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/AbstractCompile.java

         */
        @ReplacedBy("destinationDirectory")
        @Deprecated
        public File getDestinationDir() {
            // Used in Kotlin plugin - needs updating there and bumping the version first. Followup with https://github.com/gradle/gradle/issues/16783
            DeprecationLogger.deprecateProperty(AbstractCompile.class, "destinationDir")
                .replaceWith("destinationDirectory")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top