Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 361 for Amount (0.12 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container_linux.go

    	if utilfeature.DefaultFeatureGate.Enabled(kubefeatures.UserNamespacesSupport) {
    		if cl.SecurityContext.NamespaceOptions.UsernsOptions != nil {
    			for _, mount := range config.Mounts {
    				mount.UidMappings = cl.SecurityContext.NamespaceOptions.UsernsOptions.Uids
    				mount.GidMappings = cl.SecurityContext.NamespaceOptions.UsernsOptions.Gids
    			}
    		}
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/connection/ConnectionPoolTest.kt

      }
    
      private fun updateMaxConcurrentStreams(
        connection: Http2Connection,
        amount: Int,
      ) {
        val settings = Settings()
        settings[Settings.MAX_CONCURRENT_STREAMS] = amount
        connection.readerRunnable.applyAndAckSettings(true, settings)
        assertThat(connection.peerSettings[Settings.MAX_CONCURRENT_STREAMS]).isEqualTo(amount)
        taskFaker.runTasks()
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 24 04:40:49 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. src/runtime/debug/garbage.go

    // as possible. (Even if this is not called, the runtime gradually
    // returns memory to the operating system in a background task.)
    func FreeOSMemory() {
    	freeOSMemory()
    }
    
    // SetMaxStack sets the maximum amount of memory that
    // can be used by a single goroutine stack.
    // If any goroutine exceeds this limit while growing its stack,
    // the program crashes.
    // SetMaxStack returns the previous setting.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/types.go

    	// KubernetesAPICall is the amount of time to wait for the kubeadm client to complete a request to
    	// the API server. This applies to all types of methods (GET, POST, etc).
    	KubernetesAPICall *metav1.Duration
    
    	// EtcdAPICall is the amount of time to wait for the kubeadm etcd client to complete a request to
    	// the etcd cluster.
    	EtcdAPICall *metav1.Duration
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnectionPool.kt

          return state.policy.backoffDelayMillis.jitterBy(state.policy.backoffJitterMillis) * 1_000_000
        }
      }
    
      private fun Long.jitterBy(amount: Int): Long {
        return this + ThreadLocalRandom.current().nextInt(amount * -1, amount)
      }
    
      class AddressState(
        val address: Address,
        val queue: TaskQueue,
        var policy: ConnectionPool.AddressPolicy,
      ) {
        /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/reconciler/reconciler_common.go

    // controller is responsible for managing the attach/detach operations for
    // this node, and therefore the volume manager should not
    //
    // loopSleepDuration - the amount of time the reconciler loop sleeps between
    // successive executions
    //
    // waitForAttachTimeout - the amount of time the Mount function will wait for
    // the volume to be attached
    //
    // nodeName - the Name for this node, used by Attach and Detach methods
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/memorymanager/policy_static.go

    			if totalAllocatableSize[resourceName] < requestedSize {
    				return
    			}
    		}
    
    		// set the minimum amount of NUMA nodes that can satisfy the container resources requests
    		if mask.Count() < minAffinitySize {
    			minAffinitySize = mask.Count()
    		}
    
    		// the node already in group with another node, it can not be used for the single NUMA node allocation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 12 07:34:55 UTC 2023
    - 34K bytes
    - Viewed (0)
  8. docs/en/docs/deployment/concepts.md

    And multiple processes normally **don't share any memory**. This means that each running process has its own things, variables, and memory. And if you are consuming a large amount of memory in your code, **each process** will consume an equivalent amount of memory.
    
    ### Server Memory
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  9. pkg/kubelet/metrics/collectors/resource_metrics_test.go

    				container_start_time_seconds{container="container_b",namespace="namespace_a",pod="pod_a"} 1.6243961583020916e+09
            		# HELP container_swap_usage_bytes [ALPHA] Current amount of the container swap usage in bytes. Reported only on non-windows systems
            		# TYPE container_swap_usage_bytes gauge
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 15.3K bytes
    - Viewed (1)
  10. src/runtime/metrics/description.go

    		Kind:        KindFloat64Histogram,
    		Cumulative:  true,
    	},
    	{
    		Name:        "/gc/scan/globals:bytes",
    		Description: "The total amount of global variable space that is scannable.",
    		Kind:        KindUint64,
    	},
    	{
    		Name:        "/gc/scan/heap:bytes",
    		Description: "The total amount of heap space that is scannable.",
    		Kind:        KindUint64,
    	},
    	{
    		Name:        "/gc/scan/stack:bytes",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
Back to top