Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 117 for Inits (0.04 sec)

  1. subprojects/core-api/src/main/java/org/gradle/process/JavaForkOptions.java

         */
        @Nullable @Optional @Input
        String getMinHeapSize();
    
        /**
         * Sets the minimum heap size for the process.
         * Supports the units megabytes (e.g. "512m") and gigabytes (e.g. "1g").
         *
         * @param heapSize The minimum heap size. Use null for the default minimum heap size.
         */
        void setMinHeapSize(@Nullable String heapSize);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. CITATION.cff

    mutate that state. It maps the nodes of a dataflow graph across many machines in a cluster, and within a machine across multiple computational devices, including multicore CPUs, general purpose GPUs, and custom-designed ASICs known as Tensor Processing Units (TPUs). This architecture gives flexibility to the application developer, whereas in previous “parameter server” designs the management of shared state is built into the system, TensorFlow enables developers to experiment with novel optimizations and...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 06 15:26:23 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise-plugin-performance/src/testFixtures/groovy/org/gradle/performance/AbstractBuildScanPluginPerformanceTest.groovy

            baselineResults.results.addAll(rawResults.collect {
                new MeasuredOperation([totalTime: Amount.valueOf(it.totalTime.value + shift, it.totalTime.units), exception: it.exception])
            })
            return baselineResults
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. src/internal/singleflight/singleflight.go

    	// mutex held before the WaitGroup is done, and are read but
    	// not written after the WaitGroup is done.
    	dups  int
    	chans []chan<- Result
    }
    
    // Group represents a class of work and forms a namespace in
    // which units of work can be executed with duplicate suppression.
    type Group struct {
    	mu sync.Mutex       // protects m
    	m  map[string]*call // lazily initialized
    }
    
    // Result holds the results of Do, so they can be passed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 20:49:56 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  5. src/debug/dwarf/typeunit.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package dwarf
    
    import (
    	"fmt"
    	"strconv"
    )
    
    // Parse the type units stored in a DWARF4 .debug_types section. Each
    // type unit defines a single primary type and an 8-byte signature.
    // Other sections may then use formRefSig8 to refer to the type.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/typecheck/iexport.go

    // index table, which allows efficient random access of individual
    // declarations and inline function bodies. In turn, this allows
    // avoiding unnecessary work for compilation units that import large
    // packages.
    //
    //
    // The top-level data format is structured as:
    //
    //     Header struct {
    //         Tag        byte   // 'i'
    //         Version    uvarint
    //         StringSize uvarint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 21 02:40:02 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/cc/report.cc

        return WalkResult::advance();
      });
    }
    
    // Populates non-quantized ops from `module_op` to `results`. After going
    // through the quantization passes, non-quantized quantizable units remain as
    // `TF::XlaCallModuleOp` with a callee's prefix of `composite_`.
    void PopulateNonQuantizedResults(ModuleOp module_op,
                                     QuantizationResults& results) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/link.go

    	Textp        []loader.Sym
    	Moduledata   loader.Sym
    
    	PackageFile  map[string]string
    	PackageShlib map[string]string
    
    	tramps []loader.Sym // trampolines
    
    	compUnits []*sym.CompilationUnit // DWARF compilation units
    	runtimeCU *sym.CompilationUnit   // One of the runtime CUs, the last one seen.
    
    	loader  *loader.Loader
    	cgodata []cgodata // cgo directives to load, three strings are args for loadcgo
    
    	datap  []loader.Sym
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 19 15:59:22 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  9. CONTRIBUTING.md

    + Create a topic branch from where you want to base your work (this is usually the master branch).
      Push your changes to a topic branch in your fork of the repository.
    + Make commits of logical units.
    + Respect the original code style: by using the same [codestyle][code-style],
      patches should only highlight the actual difference, not being disturbed by any formatting issues:
      + Only use spaces for indentation.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 10 09:48:27 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/resource/math.go

    	decZero = inf.NewDec(0, 0)
    	decOne  = inf.NewDec(1, 0)
    
    	// Largest (in magnitude) number allowed.
    	maxAllowed = infDecAmount{inf.NewDec((1<<63)-1, 0)} // == max int64
    
    	// The maximum value we can represent milli-units for.
    	// Compare with the return value of Quantity.Value() to
    	// see if it's safe to use Quantity.MilliValue().
    	MaxMilliValue = int64(((1 << 63) - 1) / 1000)
    )
    
    const mostNegative = -(mostPositive + 1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 23 13:07:14 UTC 2020
    - 7.3K bytes
    - Viewed (0)
Back to top