Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for getWindows (0.15 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/TargetMachineFactory.java

     */
    public interface TargetMachineFactory {
        /**
         * Returns a {@link TargetMachineBuilder} for the Windows operating system family and the architecture of the current host.
         */
        TargetMachineBuilder getWindows();
    
        /**
         * Returns a {@link TargetMachineBuilder} for the Linux operating system family and the architecture of the current host.
         */
        TargetMachineBuilder getLinux();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/DefaultTargetMachineFactory.java

            return new TargetMachineImpl(operatingSystemFamily, machineArchitecture);
        }
    
        @Override
        public TargetMachineBuilder getWindows() {
            return new TargetMachineImpl(objectFactory.named(OperatingSystemFamily.class, OperatingSystemFamily.WINDOWS), getDefaultArchitecture());
        }
    
        @Override
        public TargetMachineBuilder getLinux() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedTypeReferencesIntegrationTest.groovy

                    String getName()
                    void setName(String name)
                }
    
                @Managed
                interface OperatingSystems {
                    OperatingSystem getWindows()
                    OperatingSystem getLinux()
                }
    
                class RulePlugin extends RuleSource {
                    @Model
                    void os(OperatingSystems os) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_container_windows.go

    }
    
    func toKubeContainerResources(statusResources *runtimeapi.ContainerResources) *kubecontainer.ContainerResources {
    	var cStatusResources *kubecontainer.ContainerResources
    	runtimeStatusResources := statusResources.GetWindows()
    	if runtimeStatusResources != nil {
    		var memLimit, cpuLimit *resource.Quantity
    
    		// Used the reversed formula from the calculateCPUMaximum function
    		if runtimeStatusResources.CpuMaximum > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. pkg/kubelet/stats/cri_stats_provider_windows.go

    	containerMap map[string]*runtimeapi.Container,
    	podSandbox *runtimeapi.PodSandbox,
    	rootFsInfo *cadvisorapiv2.FsInfo,
    	updateCPUNanoCoreUsage bool) error {
    	for _, criContainerStat := range criSandboxStat.GetWindows().GetContainers() {
    		container, found := containerMap[criContainerStat.Attributes.Id]
    		if !found {
    			continue
    		}
    		// Fill available stats for full set of required pod stats
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 07:03:11 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelPropertyTargetingRuleIntegrationTest.groovy

            buildScript '''
                @Managed
                interface Platforms {
                    OperatingSystem getCurrent()
                    void setCurrent(OperatingSystem os)
    
                    OperatingSystem getWindows()
                    OperatingSystem getLinux()
                }
    
                @Managed
                interface OperatingSystem {
                    String getName()
                    void setName(String name)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/popper.min.js.map

    this;\n}\n","/**\n * Get the window associated with the element\n * @argument {Element} element\n * @returns {Window}\n */\nexport default function getWindow(element) {\n  const ownerDocument = element.ownerDocument;\n  return ownerDocument ? ownerDocument.defaultView : window;\n}\n","import getScrollParent from './getScrollParent';\nimport getWindow from './getWindow';\n\nfunction attachToScrollParents(scrollParent, event, callback, scrollParents) {\n  const isBody = scrollParent.nodeName === 'BODY';\n ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 121K bytes
    - Viewed (0)
Back to top