Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,841 for unserved (7.3 sec)

  1. pkg/kubelet/cm/node_container_manager_linux.go

    				time.Sleep(time.Minute)
    			}
    		}()
    	}
    	// Now apply kube reserved and system reserved limits if required.
    	if nc.EnforceNodeAllocatable.Has(kubetypes.SystemReservedEnforcementKey) {
    		klog.V(2).InfoS("Enforcing system reserved on cgroup", "cgroupName", nc.SystemReservedCgroupName, "limits", nc.SystemReserved)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/cpumanager/policy_static.go

    	if reserved.Size() != numReservedCPUs {
    		err := fmt.Errorf("[cpumanager] unable to reserve the required amount of CPUs (size of %s did not equal %d)", reserved, numReservedCPUs)
    		return nil, err
    	}
    
    	var reservedPhysicalCPUs cpuset.CPUSet
    	for _, cpu := range reserved.UnsortedList() {
    		core, err := topology.CPUCoreID(cpu)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/memorymanager/state/state_checkpoint_test.go

    								Free:           1024,
    								Reserved:       512,
    								SystemReserved: 512,
    								TotalMemSize:   2048,
    							},
    						},
    					},
    				},
    			},
    		},
    		{
    			"Restore checkpoint with invalid checksum",
    			`{
    				"policyName":"static",
    				"machineState":{"0":{"numberOfAssignments":0,"memoryMap":{"memory":{"total":2048,"systemReserved":512,"allocatable":1536,"reserved":512,"free":1024}},"cells":[]}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 30 03:35:26 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/collections/AbstractIterationOrderRetainingElementSource.java

        List<Element<T>> getInserted() {
            return inserted;
        }
    
        @Override
        public boolean isEmpty() {
            for (Element<T> element : inserted) {
                if (element.size() != 0) {
                    return false;
                }
            }
            return true;
        }
    
        @Override
        public boolean constantTimeIsEmpty() {
            return inserted.isEmpty();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 20:04:06 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. src/crypto/tls/conn_test.go

    // Copyright 2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package tls
    
    import (
    	"bytes"
    	"io"
    	"net"
    	"testing"
    )
    
    func TestRoundUp(t *testing.T) {
    	if roundUp(0, 16) != 0 ||
    		roundUp(1, 16) != 16 ||
    		roundUp(15, 16) != 16 ||
    		roundUp(16, 16) != 16 ||
    		roundUp(17, 16) != 32 {
    		t.Error("roundUp broken")
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:35:01 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/config/validation/validation_test.go

    		},
    		errMsg: "invalid configuration: can't use reservedSystemCPUs (--reserved-cpus) with systemReservedCgroup (--system-reserved-cgroup) or kubeReservedCgroup (--kube-reserved-cgroup)",
    	}, {
    		name: "invalid ReservedSystemCPUs",
    		configure: func(conf *kubeletconfig.KubeletConfiguration) *kubeletconfig.KubeletConfiguration {
    			conf.ReservedSystemCPUs = "invalid-reserved-system-cpus"
    			return conf
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/memorymanager/policy_static.go

    	// State has already been initialized from file (is not empty)
    	// Validate that total size, system reserved and reserved memory not changed, it can happen, when:
    	// - adding or removing physical memory bank from the node
    	// - change of kubelet system-reserved, kube-reserved or pre-reserved-memory-zone parameters
    	if !areMachineStatesEqual(machineState, expectedMachineState) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 12 07:34:55 UTC 2023
    - 34K bytes
    - Viewed (0)
  8. src/crypto/internal/edwards25519/scalar.go

    // Copyright (c) 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package edwards25519
    
    import (
    	"errors"
    	"internal/byteorder"
    )
    
    // A Scalar is an integer modulo
    //
    //	l = 2^252 + 27742317777372353535851937790883648493
    //
    // which is the prime order of the edwards25519 group.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/insert_weight_param.mlir

    // RUN: stablehlo-quant-opt %s -split-input-file -stablehlo-insert-weight-param | FileCheck %s
    
    // Test that q/dq pair with per-tensor quantization parameter is inserted
    // between constant and XlaCallModule op with empty `weight_only_ptq` method
    // and function name containing conv.
    
    func.func @qdq_for_conv_weight_empty(%arg0: tensor<1x3x2x3xf32>) -> tensor<1x2x2x2xf32> attributes {tf._original_func_name = "main_0"} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 22K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/stream_executor/stream_executor.h

      size_t struct_size;
      void* ext;  // reserved for future use
    
      SP_DeviceFns* device_fns;  // output, to be filled by plugin
    } SE_CreateDeviceFnsParams;
    
    #define SE_CREATE_DEVICE_FNS_PARAMS_STRUCT_SIZE \
      TF_OFFSET_OF_END(SE_CreateDeviceFnsParams, device_fns)
    
    typedef struct SP_StreamExecutor {
      size_t struct_size;
      void* ext;  // reserved for future use
    
      /*** ALLOCATION CALLBACKS ***/
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 24 08:40:35 UTC 2022
    - 21.6K bytes
    - Viewed (0)
Back to top