Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 277 for microsoft (0.15 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container_windows.go

    		// There are 3 parts to how this works:
    		// 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)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/DefaultVisualCppMetadataProviderTest.groovy

        }
    
        def "can derive metadata from compiler metadata file"() {
            def installDir = tmpDir.createDir("dir1")
    
            given:
            installDir.createFile("VC/Auxiliary/Build/Microsoft.VCToolsVersion.default.txt").text = "1.2.3.4"
    
            when:
            VisualCppInstallCandidate metadata = metadataProvider.getVisualCppFromMetadataFile(installDir)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/exec_windows.go

    // Fork, exec, wait, etc.
    
    package windows
    
    import (
    	errorspkg "errors"
    	"unsafe"
    )
    
    // EscapeArg rewrites command line argument s as prescribed
    // in http://msdn.microsoft.com/en-us/library/ms880421.
    // This function returns "" (2 double quotes) if s is empty.
    // Alternatively, these transformations are done:
    //   - every back slash (\) is doubled, but only if immediately
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/WindowsFileWatcherRegistryFactory.java

    public class WindowsFileWatcherRegistryFactory extends AbstractFileWatcherRegistryFactory<WindowsFileEventFunctions, WindowsFileWatcher> {
    
        // 64 kB is the limit for SMB drives
        // See https://docs.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-readdirectorychangesw#remarks:~:text=ERROR_INVALID_PARAMETER
        private static final int BUFFER_SIZE = 64 * 1024;
    
        public WindowsFileWatcherRegistryFactory(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/build-configuration/src/integTest/groovy/org/gradle/interal/buildconfiguration/tasks/UpdateDaemonJvmIntegrationTest.groovy

            where:
            vendor << ["ADOPTIUM", "ADOPTOPENJDK", "AMAZON", "APPLE", "AZUL", "BELLSOFT", "GRAAL_VM", "HEWLETT_PACKARD", "IBM", "JETBRAINS", "MICROSOFT", "ORACLE", "SAP", "TENCENT", "UNKNOWN"]
        }
    
        @NotYetImplemented
        def "When execute updateDaemonJvm for valid implementation option Then build properties are populated with expected values"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. pkg/kubelet/network/dns/dns_windows.go

    	maxScopeIDLen     = 256
    
    	// getHostDNSConfig will return the host's DNS configuration if the given resolverConfig argument
    	// is set to "Host".
    	hostResolvConf = "Host"
    )
    
    // FixedInfo information: https://docs.microsoft.com/en-us/windows/win32/api/iptypes/ns-iptypes-fixed_info_w2ksp1
    type FixedInfo struct {
    	HostName         [maxHostnameLen + 4]byte
    	DomainName       [maxDomainNameLen + 4]byte
    	CurrentDNSServer *syscall.IpAddrString
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 22:21:57 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  7. docs/de/docs/project-generation.md

    ## Modelle für maschinelles Lernen mit spaCy und FastAPI
    
    GitHub: <a href="https://github.com/microsoft/cookiecutter-spacy-fastapi" class="external-link" target="_blank">https://github.com/microsoft/cookiecutter-spacy-fastapi</a>
    
    ### Modelle für maschinelles Lernen mit spaCy und FastAPI – Funktionen
    
    * **spaCy** NER-Modellintegration.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:14:36 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. src/time/zoneinfo_windows_test.go

    	defer ForceUSPacificForTesting()
    	testZoneAbbr(t)
    }
    
    func TestToEnglishName(t *testing.T) {
    	const want = "Central Europe Standard Time"
    	k, err := registry.OpenKey(registry.LOCAL_MACHINE, `SOFTWARE\Microsoft\Windows NT\CurrentVersion\Time Zones\`+want, registry.READ)
    	if err != nil {
    		t.Fatalf("cannot open CEST time zone information from registry: %s", err)
    	}
    	defer k.Close()
    
    	var std, dlt string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 07:20:34 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/DefaultVswhereVersionLocatorTest.groovy

        }
    
        def "finds vswhere executable in system path if vswhere executable in Program Files is not a file"() {
            def programFilesVswhere = programFiles.createDir("Microsoft Visual Studio/Installer").createDir("vswhere.exe")
    
            given:
            vswhereInPath()
            assert vswhere.absolutePath != programFilesVswhere.absolutePath
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3K bytes
    - Viewed (1)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/WindowsRegistryVersionLocator.java

        static final String[] REGISTRY_BASEPATHS = {
            "SOFTWARE\\",
            "SOFTWARE\\Wow6432Node\\"
        };
        static final String REGISTRY_ROOTPATH_VC = "Microsoft\\VisualStudio\\SxS\\VC7";
    
        private final WindowsRegistry windowsRegistry;
    
        public WindowsRegistryVersionLocator(WindowsRegistry windowsRegistry) {
            this.windowsRegistry = windowsRegistry;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top