Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 227 for cpos (0.12 sec)

  1. pkg/kubelet/cm/cpumanager/cpu_manager_test.go

    				t.Errorf("Expected reconciliation failure for container: %s", testCase.expectFailedContainerName)
    			}
    		}
    	}
    }
    
    // above test cases are without kubelet --reserved-cpus cmd option
    // the following tests are with --reserved-cpus configured
    func TestCPUManagerAddWithResvList(t *testing.T) {
    	testPolicy, _ := NewStaticPolicy(
    		&topology.CPUTopology{
    			NumCPUs:    4,
    			NumSockets: 1,
    			NumCores:   4,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  2. src/compress/bzip2/bzip2.go

    		if bz2.repeats > 0 {
    			buf[n] = byte(bz2.lastByte)
    			n++
    			bz2.repeats--
    			if bz2.repeats == 0 {
    				bz2.lastByte = -1
    			}
    			continue
    		}
    
    		bz2.tPos = bz2.preRLE[bz2.tPos]
    		b := byte(bz2.tPos)
    		bz2.tPos >>= 8
    		bz2.preRLEUsed++
    
    		if bz2.byteRepeats == 3 {
    			bz2.repeats = uint(b)
    			bz2.byteRepeats = 0
    			continue
    		}
    
    		if bz2.lastByte == int(b) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. src/go/ast/import.go

    	if len(specs) <= 1 {
    		return specs
    	}
    
    	// Record positions for specs.
    	pos := make([]posSpan, len(specs))
    	for i, s := range specs {
    		pos[i] = posSpan{s.Pos(), s.End()}
    	}
    
    	// Identify comments in this range.
    	begSpecs := pos[0].Start
    	endSpecs := pos[len(pos)-1].End
    	beg := fset.File(begSpecs).LineStart(lineAt(fset, begSpecs))
    	endLine := lineAt(fset, endSpecs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. docs/pt/docs/advanced/events.md

    E então, logo após o `yield`, descarregaremos o modelo. Esse código será executado **após** a aplicação **terminar de lidar com as requisições**, pouco antes do *encerramento*. Isso poderia, por exemplo, liberar recursos como memória ou GPU.
    
    !!! tip "Dica"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_container_windows.go

    		// Part one - Windows kernel
    		//   cpuMaximum is documented at https://docs.microsoft.com/en-us/virtualization/windowscontainers/manage-containers/resource-controls
    		//   the range and how it relates to number of CPUs is at https://docs.microsoft.com/en-us/windows/win32/api/winnt/ns-winnt-jobobject_cpu_rate_control_information
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. src/go/doc/comment/testdata/quote.txt

    quotes ` and ' do not. Misplaced markdown fences ``` do not either.
    -- html --
    <p>Doubled single quotes like “ and ” turn into Unicode double quotes,
    but single quotes ` and &apos; do not.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 19:06:16 UTC 2022
    - 656 bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inject/traffic-annotations.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: traffic
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: traffic
      template:
        metadata:
          annotations:
            # We set 4 CPUs here and concurrency=0 below. Expect concurrency to be set to 4.
            sidecar.istio.io/proxyCPU: 4000m
            traffic.sidecar.istio.io/includeInboundPorts: "1,2,3"
            traffic.sidecar.istio.io/excludeInboundPorts: "4,5,6"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 12 16:44:33 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  8. src/main/resources/fess_indices/fess/pt-br/stopwords.txt

    # https://github.com/apache/lucene-solr/blob/master/lucene/analysis/common/src/resources/org/apache/lucene/analysis/br/stopwords.txt
    a
    ainda
    alem
    ambas
    ambos
    antes
    ao
    aonde
    aos
    apos
    aquele
    aqueles
    as
    assim
    com
    como
    contra
    contudo
    cuja
    cujas
    cujo
    cujos
    da
    das
    de
    dela
    dele
    deles
    demais
    depois
    desde
    desta
    deste
    dispoe
    dispoem
    diversa
    diversas
    diversos
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 820 bytes
    - Viewed (0)
  9. src/runtime/os_netbsd_arm.go

    func checkgoarm() {
    	// TODO(minux): FP checks like in os_linux_arm.go.
    
    	// osinit not called yet, so ncpu not set: must use getncpu directly.
    	if getncpu() > 1 && goarm < 7 {
    		print("runtime: this system has multiple CPUs and must use\n")
    		print("atomic synchronization instructions. Recompile using GOARM=7.\n")
    		exit(1)
    	}
    }
    
    //go:nosplit
    func cputicks() int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. tools/docker

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # Setup env vars
    source ./common/scripts/setup_env.sh
    
    set -eu
    
    # Speed up builds when using recent CPUs
    export GGCR_EXPERIMENT_SHA256_SIMD=1
    
    if [[ -f ${LOCAL_OUT}/docker-builder ]]; then
      CURRENT_BUILD="$(./common/scripts/report_build_info.sh | grep buildGitRevision | cut -d= -f2)"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 07 22:50:06 UTC 2022
    - 1.3K bytes
    - Viewed (0)
Back to top