Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 277 for microsoft (0.46 sec)

  1. cmd/kubeadm/app/util/runtime/runtime_windows.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package runtime
    
    import (
    	"net/url"
    
    	winio "github.com/Microsoft/go-winio"
    )
    
    // isExistingSocket checks if path exists and is domain socket
    func isExistingSocket(path string) bool {
    	u, err := url.Parse(path)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 12 15:15:45 UTC 2022
    - 1K bytes
    - Viewed (0)
  2. src/net/dnsconfig_windows.go

    			case *syscall.SockaddrInet6:
    				ip = make(IP, IPv6len)
    				copy(ip, sa.Addr[:])
    				if ip[0] == 0xfe && ip[1] == 0xc0 {
    					// fec0/10 IPv6 addresses are site local anycast DNS
    					// addresses Microsoft sets by default if no other
    					// IPv6 DNS address is set. Site local anycast is
    					// deprecated since 2004, see
    					// https://datatracker.ietf.org/doc/html/rfc3879
    					continue
    				}
    			default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 10:25:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. pkg/kubelet/pluginmanager/pluginwatcher/plugin_watcher_windows_test.go

    	event := fsnotify.Event{Name: "name", Op: fsnotify.Create}
    	fi, err := getStat(event)
    	fiExpected, errExpected := os.Stat(event.Name)
    	// TODO: This is a workaround for Windows 20H2 issue for os.Stat(). Please see
    	// microsoft/Windows-Containers#97 for details.
    	// Once the issue is resvolved, the following os.Lstat() is not needed.
    	if errExpected != nil {
    		fiExpected, errExpected = os.Lstat(event.Name)
    	}
    
    	assert.Equal(t, fi, fiExpected)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 01 00:26:37 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. licenses/github.com/docker/docker/contrib/busybox/LICENSE

    The MIT License (MIT)
    
    Copyright (c) 2015 John Howard (Microsoft)
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the Software is
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 15 21:25:06 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  5. src/internal/filepathlite/path_windows.go

    }
    
    // isReservedName reports if name is a Windows reserved device name.
    // It does not detect names with an extension, which are also reserved on some Windows versions.
    //
    // For details, search for PRN in
    // https://docs.microsoft.com/en-us/windows/desktop/fileio/naming-a-file.
    func isReservedName(name string) bool {
    	// Device names can have arbitrary trailing characters following a dot or colon.
    	base := name
    	for i := 0; i < len(base); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. pkg/util/filesystem/util_windows.go

    	// we need to dial the file and check if we receive an error to determine if a file is Unix Domain Socket file.
    
    	// Note that querrying for the Reparse Points (https://docs.microsoft.com/en-us/windows/win32/fileio/reparse-points)
    	// for the file (using FSCTL_GET_REPARSE_POINT) and checking for reparse tag: reparseTagSocket
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. platforms/core-runtime/native/src/testFixtures/groovy/org/gradle/util/WindowsSymbolicLinkUtil.groovy

            assertAdministrator()
            assert ["cmd.exe", "/d", "/c", "mklink", "/h", link, target].execute().waitFor() == 0
        }
    
        // See: https://support.microsoft.com/en-us/help/243330/well-known-security-identifiers-in-windows-operating-systems
        private static final String WELL_KNOWN_ADMINISTRATORS_GROUP_SID = "S-1-5-32-544"
        private static void assertAdministrator() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. docs/em/docs/project-generation.md

    👆 💪 ✍ 🌅 🔃 ⚫️ 🩺 🏦.
    
    ## 🌕 📚 FastAPI ✳
    
    ...💪 👟 ⏪, ⚓️ 🔛 👇 🕰 🚚 &amp; 🎏 ⚖. 👶 👶
    
    ## 🎰 🏫 🏷 ⏮️ 🌈 &amp; FastAPI
    
    📂: <a href="https://github.com/microsoft/cookiecutter-spacy-fastapi" class="external-link" target="_blank">https://github.com/microsoft/cookiecutter-spacy-fastapi</a>
    
    ### 🎰 🏫 🏷 ⏮️ 🌈 &amp; FastAPI - ⚒
    
    * **🌈** 🕜 🏷 🛠️.
    * **☁ 🧠 🔎** 📨 📁 🏗.
    * **🏭 🔜** 🐍 🕸 💽 ⚙️ Uvicorn &amp; 🐁.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Oct 20 09:00:44 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/plugins/MicrosoftVisualCppCompilerPluginTest.groovy

            VisualCpp
        }
    
        @Override
        String getToolchainName() {
            VisualCppToolChain.DEFAULT_NAME
        }
    
        def "can apply plugin by id"() {
            given:
            project.apply plugin: 'microsoft-visual-cpp-compiler'
    
            expect:
            project.plugins.hasPlugin(pluginClass)
        }
    
        def "makes a VisualCpp tool chain available"() {
            when:
            register()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. src/runtime/defs_windows.go

    	baseAddress       uintptr
    	allocationBase    uintptr
    	allocationProtect uint32
    	regionSize        uintptr
    	state             uint32
    	protect           uint32
    	type_             uint32
    }
    
    // https://learn.microsoft.com/en-us/windows-hardware/drivers/ddi/wdm/ns-wdm-_osversioninfow
    type _OSVERSIONINFOW struct {
    	osVersionInfoSize uint32
    	majorVersion      uint32
    	minorVersion      uint32
    	buildNumber       uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top