Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 243 for physical (0.16 sec)

  1. releasenotes/notes/fix-concurrency.yaml

        was inconsistently configured between sidecars and different gateway installation mechanisms.
        This often led to gateways running with concurrency based on the number of physical cores on the host machine,
        despite having CPU limits, leading to decreased performance and increased resource usage.
        
        In this release, concurrency configuration has been tweaked to be consistent across deployment types.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 13 11:53:23 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. src/runtime/pprof/vminfo_darwin_test.go

    	// Report Version:  7
    	// Analysis Tool:   /Applications/Xcode.app/Contents/Developer/usr/bin/vmmap
    	// Analysis Tool Version:  Xcode 14.3 (14E222b)
    	//
    	// Physical footprint:         1.2G
    	// Physical footprint (peak):  1.2G
    	// Idle exit:                  untracked
    	// ----
    	//
    	// Virtual Memory Map of process 53799 (gopls)
    	// Output report format:  2.4  -64-bit process
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 19:59:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/OsMemoryStatusAspect.java

     * limitations under the License.
     */
    
    package org.gradle.process.internal.health.memory;
    
    import org.gradle.api.Named;
    import org.gradle.api.NonNullApi;
    
    /**
     * Memory status information, usually either physical or virtual.
     */
    @NonNullApi
    public interface OsMemoryStatusAspect extends Named {
        /**
         * Get the name of this category.
         *
         * @return the name of this category
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/lower_cluster_to_runtime_ops.h

    //     xla_device_type - The device type that is being targeted.
    // Output:
    //     Tensorflow Dialect MLIR with Runtime specific ops. All tf_device.cluster
    //     ops are removed. Physical devices are assigned to ops instead of virtual
    //     devices.
    tensorflow::Status RunLowerClusterToRuntimeOpsPassPipeline(
        mlir::ModuleOp module, tsl::DeviceType xla_device_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 21:47:17 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/process-services/src/test/groovy/org/gradle/process/internal/health/memory/DefaultMemoryManagerTest.groovy

            return memoryManager
        }
    
        def newMemoryManager() {
            newMemoryManager(osMemoryInfo)
        }
    
        def "does not attempt to release memory when claiming 0 memory and free physical memory is available"() {
            given:
            osMemoryInfo.freeMemory = MemoryAmount.of('4g').bytes
            def memoryManager = newMemoryManager()
    
            and:
            def holder = Mock(MemoryHolder)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 23:56:19 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/configurators/AnalysisApiLibraryBaseTestServiceRegistrar.kt

                KlibMetaFileType,
                FileViewProviderFactory { file, _, manager, _ ->
                    K2KotlinNativeMetadataDecompiler().createFileViewProvider(file, manager, physical = true)
                })
            BinaryFileStubBuilders.INSTANCE.addExplicitExtension(KlibMetaFileType, ClassFileStubBuilder())
    
            ClassFileDecompilers.getInstance().EP_NAME.point.apply {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Dec 01 18:12:23 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/device_util.cc

    namespace {
    
    // Parse GPU compute capability from physical device description. If compute
    // capability is not found in device description, return a unit attribute.
    mlir::Attribute ParseGpuDeviceMetadata(const Device& device,
                                           mlir::Builder* builder) {
      // Parse GPU device compute capability from physical device description.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. src/net/net_windows_test.go

    	//
    	//Connection Name:  Local Area Connection
    	//Network Adapter:  Intel Gigabit Network Connection
    	//Physical Address: XX-XX-XX-XX-XX-XX
    	//Transport Name:   \Device\Tcpip_{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}
    	//
    	//Connection Name:  Wireless Network Connection
    	//Network Adapter:  Wireles WLAN Card
    	//Physical Address: XX-XX-XX-XX-XX-XX
    	//Transport Name:   Media disconnected
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. src/net/mac.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package net
    
    const hexDigit = "0123456789abcdef"
    
    // A HardwareAddr represents a physical hardware address.
    type HardwareAddr []byte
    
    func (a HardwareAddr) String() string {
    	if len(a) == 0 {
    		return ""
    	}
    	buf := make([]byte, 0, len(a)*3-1)
    	for i, b := range a {
    		if i > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  10. src/runtime/internal/sys/consts.go

    // This arithmetic must match that in cmd/internal/objabi/stack.go:stackGuardMultiplier.
    const StackGuardMultiplier = 1 + goos.IsAix + isRace
    
    // DefaultPhysPageSize is the default physical page size.
    const DefaultPhysPageSize = goarch.DefaultPhysPageSize
    
    // PCQuantum is the minimal unit for a program counter (1 on x86, 4 on most other systems).
    // The various PC tables record PC deltas pre-divided by PCQuantum.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 16:26:25 UTC 2022
    - 1.4K bytes
    - Viewed (0)
Back to top