Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 88 for microsoft (0.35 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheReportIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl
    
    import com.microsoft.playwright.Browser
    import com.microsoft.playwright.BrowserContext
    import com.microsoft.playwright.Page
    import com.microsoft.playwright.Playwright
    import org.gradle.test.fixtures.Flaky
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.UnitTestPreconditions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. tests/go.mod

    )
    
    replace gorm.io/gorm => ../
    
    replace github.com/jackc/pgx/v5 => github.com/jackc/pgx/v5 v5.4.3
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:24:34 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/internal/configstore/download_windows.go

    	// subprocess in the default setup.
    	//
    	// Ensure no new console is attached to the subprocess by setting CREATE_NO_WINDOW.
    	//   https://learn.microsoft.com/en-us/windows/console/creation-of-a-console
    	//   https://learn.microsoft.com/en-us/windows/win32/procthread/process-creation-flags
    	cmd.SysProcAttr = &syscall.SysProcAttr{
    		CreationFlags: windows.CREATE_NO_WINDOW,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 1K bytes
    - Viewed (0)
  4. .devcontainer/devcontainer.json

    {
      "image": "mcr.microsoft.com/devcontainers/java:21-bookworm",
      "features": {
          "ghcr.io/devcontainers/features/java:1": {
              "version": "17"
          }
      },
      "customizations": {
          "vscode": {
              "settings": {
                  "java.server.launchMode": "Standard"
              },
              "extensions": [
                  "vscjava.vscode-java-pack",
                  "vscjava.vscode-gradle"
              ]
          }
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat May 18 23:34:57 UTC 2024
    - 429 bytes
    - Viewed (0)
  5. src/os/types_windows.go

    // reparse point is a surrogate for another named entity (for example, a mounted folder).
    //
    // See https://learn.microsoft.com/en-us/windows/win32/api/winnt/nf-winnt-isreparsetagnamesurrogate
    // and https://learn.microsoft.com/en-us/windows/win32/fileio/reparse-point-tags.
    func (fs *fileStat) isReparseTagNameSurrogate() bool {
    	// True for IO_REPARSE_TAG_SYMLINK and IO_REPARSE_TAG_MOUNT_POINT.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/compiler/mlir/tensorflow_to_stablehlo/README.md

    * `--output_filename`: Path to the output file where the textual StableHLO MLIR
      module will be written (default: stdout).
    
    
    ### Examples
    
    * To convert [microsoft/resnet-50](https://huggingface.co/microsoft/resnet-50)
    model to StableHLO with static input shape `4x3x224x224` for input argument with
    type `tensor<?x3x224x224xf32>`.
    
    ```bash
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/os/stat_windows.go

    	h, err := syscall.CreateFile(namep, 0, 0, nil, syscall.OPEN_EXISTING, flags, 0)
    
    	if err == windows.ERROR_INVALID_PARAMETER {
    		// Console handles, like "\\.\con", require generic read access. See
    		// https://learn.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-createfilew#consoles.
    		// We haven't set it previously because it is normally not required
    		// to read attributes and some files may not allow it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top