Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 651 for storeVcs (0.34 sec)

  1. pkg/kubelet/cm/memorymanager/state/state.go

    	// GetMemoryAssignments returns ContainerMemoryAssignments
    	GetMemoryAssignments() ContainerMemoryAssignments
    }
    
    type writer interface {
    	// SetMachineState stores NUMANodeMap in State
    	SetMachineState(memoryMap NUMANodeMap)
    	// SetMemoryBlocks stores memory assignments of a container
    	SetMemoryBlocks(podUID string, containerName string, blocks []Block)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 08 23:10:00 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  2. src/encoding/gob/decode.go

    			v.Set(reflect.New(v.Type().Elem()))
    		}
    		v = v.Elem()
    	}
    	return v
    }
    
    // decBool decodes a uint and stores it as a boolean in value.
    func decBool(i *decInstr, state *decoderState, value reflect.Value) {
    	value.SetBool(state.decodeUint() != 0)
    }
    
    // decInt8 decodes an integer and stores it as an int8 in value.
    func decInt8(i *decInstr, state *decoderState, value reflect.Value) {
    	v := state.decodeInt()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/ir/QuantizeUtils.h

    /// quantizedElementType.getStorageType(), where quantizedElementType is as from
    /// QuantizedType::getQuantizedElementType().
    /// Returns nullptr if the conversion is not supported. On success, stores the
    /// converted type in outConvertedType.
    ///
    /// Examples:
    /// 1. realValue is a primitive value attribute:
    /// (realValue: FloatAttr, quantizedElementType: UniformQuantizedType[i8:f32])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 29 18:55:28 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  4. src/internal/runtime/atomic/atomic_arm.s

    	MOVW	new_lo+12(FP), R4
    	MOVW	new_hi+16(FP), R5
    cas64loop:
    	LDREXD	(R1), R6	// loads R6 and R7
    	CMP	R2, R6
    	BNE	cas64fail
    	CMP	R3, R7
    	BNE	cas64fail
    
    	DMB	MB_ISHST
    
    	STREXD	R4, (R1), R0	// stores R4 and R5
    	CMP	$0, R0
    	BNE	cas64loop
    	MOVW	$1, R0
    
    	DMB	MB_ISH
    
    	MOVBU	R0, swapped+20(FP)
    	RET
    cas64fail:
    	MOVW	$0, R0
    	MOVBU	R0, swapped+20(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/memorymanager/state/state_mem.go

    	s.RLock()
    	defer s.RUnlock()
    
    	return s.assignments.Clone()
    }
    
    // SetMachineState stores NUMANodeMap in State
    func (s *stateMemory) SetMachineState(nodeMap NUMANodeMap) {
    	s.Lock()
    	defer s.Unlock()
    
    	s.machineState = nodeMap.Clone()
    	klog.InfoS("Updated machine memory state")
    }
    
    // SetMemoryBlocks stores memory assignments of container
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 15 19:51:19 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/VirtualFileSystem.java

        /**
         * Returns all root snapshots in the hierarchy below {@code absolutePath}.
         */
        Stream<FileSystemLocationSnapshot> findRootSnapshotsUnder(String absolutePath);
    
        /**
         * Snapshots and stores the result in the VFS.
         *
         * If the snapshotted location is invalidated while snapshotting,
         * then the snapshot is not stored in the VFS to avoid inconsistent state.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. cluster/addons/calico-policy-controller/calico-clusterrole.yaml

          - list
          # Used to discover Typhas.
          - get
      - apiGroups: [""]
        resources:
          - nodes/status
        verbs:
          # Needed for clearing NodeNetworkUnavailable flag.
          - patch
          # Calico stores some configuration information in node annotations.
          - update
      # Watch for changes to Kubernetes NetworkPolicies.
      - apiGroups: ["networking.k8s.io"]
        resources:
          - networkpolicies
        verbs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 26 02:52:06 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1/types_encryption.go

    */
    
    package v1
    
    import (
    	"fmt"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    /*
    EncryptionConfiguration stores the complete configuration for encryption providers.
    It also allows the use of wildcards to specify the resources that should be encrypted.
    Use '*.<group>' to encrypt all resources within a group or '*.*' to encrypt all resources.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types_encryption.go

    */
    
    package apiserver
    
    import (
    	"fmt"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    /*
    EncryptionConfiguration stores the complete configuration for encryption providers.
    It also allows the use of wildcards to specify the resources that should be encrypted.
    Use '*.<group>' to encrypt all resources within a group or '*.*' to encrypt all resources.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  10. src/internal/bytealg/equal_s390x.s

    TEXT runtime·memequal_varlen(SB),NOSPLIT|NOFRAME,$0-17
    	MOVD	a+0(FP), R3
    	MOVD	b+8(FP), R5
    	MOVD	8(R12), R6    // compiler stores size at offset 8 in the closure
    	LA	ret+16(FP), R7
    	BR	memeqbody<>(SB)
    
    // input:
    //   R3 = a
    //   R5 = b
    //   R6 = len
    //   R7 = address of output byte (stores 0 or 1 here)
    //   a and b have the same length
    TEXT memeqbody<>(SB),NOSPLIT|NOFRAME,$0-0
    	CMPBEQ	R3, R5, equal
    loop:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 24 00:56:36 UTC 2019
    - 1.8K bytes
    - Viewed (0)
Back to top