Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 277 for microsoft (0.15 sec)

  1. pkg/bootstrap/platform/azure_test.go

    // limitations under the License.
    
    package platform
    
    import (
    	"fmt"
    	"reflect"
    	"testing"
    )
    
    // Mock responses for Azure Metadata (based on Microsoft API documentation samples)
    // https://docs.microsoft.com/en-us/azure/virtual-machines/windows/instance-metadata-service
    const (
    	MockVersionsTemplate = `{"error": "Bad request. api-version was not specified in the request","newest-versions": ["%s"]}`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 03 22:26:47 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/tool-chains/groovy/build.gradle

    plugins {
        id 'cpp'
    }
    
    // tag::toolChains[]
    model {
        toolChains {
            visualCpp(VisualCpp) {
                // Specify the installDir if Visual Studio cannot be located
                // installDir "C:/Apps/Microsoft Visual Studio 10.0"
            }
            gcc(Gcc) {
                // Uncomment to use a GCC install that is not in the PATH
                // path "/usr/bin/gcc"
            }
            clang(Clang)
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    * Oracle JRE v17.0.1
    * Oracle JDK v17.0.0
    * Microsoft JDK 17.0.0
    * Microsoft JRE 17.0.1
    * Microsoft JDK 17.0.1
    
    Assume that Gradle runs on a major Java version other than 17.
    Otherwise, that installation would have priority.
    
    When we apply the above rules to sort this set we will end up with following ordering:
    
    . Microsoft JDK 17.0.1
    . Microsoft JDK 17.0.0
    . Oracle JDK v17.0.0
    . Microsoft JRE v17.0.1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  4. src/internal/syscall/windows/registry/key.go

    // Package registry provides access to the Windows registry.
    //
    // Here is a simple example, opening a registry key and reading a string value from it.
    //
    //	k, err := registry.OpenKey(registry.LOCAL_MACHINE, `SOFTWARE\Microsoft\Windows NT\CurrentVersion`, registry.QUERY_VALUE)
    //	if err != nil {
    //		log.Fatal(err)
    //	}
    //	defer k.Close()
    //
    //	s, _, err := k.GetStringValue("SystemRoot")
    //	if err != nil {
    //		log.Fatal(err)
    //	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/DefaultVisualCppMetadataProvider.java

        private static final String VS2017_METADATA_FILE_PATH = "VC/Auxiliary/Build/Microsoft.VCToolsVersion.default.txt";
        private static final String VS2017_COMPILER_PATH_PREFIX = "VC/Tools/MSVC";
    
        private static final String[] REGISTRY_BASEPATHS = {
            "SOFTWARE\\",
            "SOFTWARE\\Wow6432Node\\"
        };
        private static final String REGISTRY_ROOTPATH_VC = "Microsoft\\VisualStudio\\SxS\\VC7";
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/LegacyWindowsSdkLocator.java

        private static final String REGISTRY_BASEPATHS[] = {
            "SOFTWARE\\",
            "SOFTWARE\\Wow6432Node\\"
        };
        private static final String REGISTRY_ROOTPATH_SDK = "Microsoft\\Microsoft SDKs\\Windows";
        private static final String REGISTRY_ROOTPATH_KIT = "Microsoft\\Windows Kits\\Installed Roots";
        private static final String REGISTRY_FOLDER = "InstallationFolder";
        private static final String REGISTRY_VERSION = "ProductVersion";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/web/url_windows_test.go

    package web
    
    var urlTests = []struct {
    	url          string
    	filePath     string
    	canonicalURL string // If empty, assume equal to url.
    	wantErr      string
    }{
    	// Examples from https://blogs.msdn.microsoft.com/ie/2006/12/06/file-uris-in-windows/:
    
    	{
    		url:      `file://laptop/My%20Documents/FileSchemeURIs.doc`,
    		filePath: `\\laptop\My Documents\FileSchemeURIs.doc`,
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:43:51 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/validation/util_windows.go

    import (
    	"path/filepath"
    )
    
    func isAbs(path string) bool {
    	// on Windows, filepath.IsAbs will not return True for paths prefixed with a slash, even
    	// though they can be used as absolute paths (https://docs.microsoft.com/en-us/dotnet/standard/io/file-path-formats).
    	return filepath.IsAbs(path) || (len(path) > 0 && (path[0] == '\\' || path[0] == '/'))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 13:03:13 UTC 2022
    - 987 bytes
    - Viewed (0)
  9. src/net/sock_windows.go

    	"internal/syscall/windows"
    	"os"
    	"syscall"
    )
    
    func maxListenerBacklog() int {
    	// When the socket backlog is SOMAXCONN, Windows will set the backlog to
    	// "a reasonable maximum value".
    	// See: https://learn.microsoft.com/en-us/windows/win32/api/winsock2/nf-winsock2-listen
    	return syscall.SOMAXCONN
    }
    
    func sysSocket(family, sotype, proto int) (syscall.Handle, error) {
    	s, err := wsaSocketFunc(int32(family), int32(sotype), int32(proto),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 18:52:56 UTC 2024
    - 802 bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

    import org.lastaflute.web.util.LaRequestUtil;
    
    import com.google.common.cache.Cache;
    import com.google.common.cache.CacheBuilder;
    import com.microsoft.aad.adal4j.AuthenticationContext;
    import com.microsoft.aad.adal4j.AuthenticationResult;
    import com.microsoft.aad.adal4j.ClientCredential;
    import com.nimbusds.jwt.JWTClaimsSet;
    import com.nimbusds.jwt.JWTParser;
    import com.nimbusds.oauth2.sdk.AuthorizationCode;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 28.1K bytes
    - Viewed (0)
Back to top