Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 779 for Directories (0.26 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/DefaultFlatDirArtifactRepositoryTest.groovy

        final IvyMutableModuleMetadataFactory metadataFactory = DependencyManagementTestUtil.ivyMetadataFactory()
    
        final DefaultFlatDirArtifactRepository repository = newRepo()
    
        def "creates a repository with multiple root directories"() {
            given:
            def dir1 = new File('a')
            def dir2 = new File('b')
            _ * fileCollectionFactory.resolving(['a', 'b']) >> TestFiles.fixed(dir1, dir2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/io/TempFileCreator.java

        }
    
        /** Maximum loop count when creating temp directories. */
        private static final int TEMP_DIR_ATTEMPTS = 10000;
      }
    
      private static final class ThrowingCreator extends TempFileCreator {
        private static final String MESSAGE =
            "Guava cannot securely create temporary files or directories under SDK versions before"
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 06 17:11:11 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/list_wildcard_skip_nonmatching.txt

    # Test that wildcards don't look in useless directories.
    
    # First make sure that badpkg fails the list of '...'.
    ! go list ./...
    stderr badpkg
    
    # Check that the list of './goodpkg...' succeeds. That implies badpkg was skipped.
    go list ./goodpkg...
    
    -- go.mod --
    module m
    
    go 1.16
    -- goodpkg/x.go --
    package goodpkg
    -- badpkg/x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 344 bytes
    - Viewed (0)
  4. src/cmd/go/internal/toolchain/path_none.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !unix && !plan9 && !windows
    
    package toolchain
    
    import "io/fs"
    
    // pathDirs returns the directories in the system search path.
    func pathDirs() []string {
    	return nil
    }
    
    // pathVersion returns the Go version implemented by the file
    // described by de and info in directory dir.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 31 15:15:19 UTC 2023
    - 620 bytes
    - Viewed (0)
  5. src/crypto/x509/root_bsd.go

    	"/etc/ssl/cert.pem",                      // OpenBSD
    	"/usr/local/share/certs/ca-root-nss.crt", // DragonFly
    	"/etc/openssl/certs/ca-certificates.crt", // NetBSD
    }
    
    // Possible directories with certificate files; all will be read.
    var certDirectories = []string{
    	"/etc/ssl/certs",         // FreeBSD 12.2+
    	"/usr/local/share/certs", // FreeBSD
    	"/etc/openssl/certs",     // NetBSD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 02 22:53:18 UTC 2021
    - 748 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_vendor_issue46867.txt

    # Regression test for golang.org/issue/46867:
    # 'go mod vendor' on Windows attempted to open and copy
    # files from directories outside of the module.
    
    cd subdir
    go mod vendor
    ! exists vendor/example.net/NOTICE
    exists vendor/example.net/m/NOTICE
    
    -- subdir/go.mod --
    module golang.org/issue46867
    
    go 1.17
    
    replace example.net/m v0.1.0 => ./m
    
    require example.net/m v0.1.0
    -- subdir/issue.go --
    package issue
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 01 17:10:57 UTC 2021
    - 675 bytes
    - Viewed (0)
  7. src/Make.dist

    # Run go tool dist to install a command.
    # The -v causes dist to print the name of each directory as it runs.
    # The -vv causes dist to print each build command as it runs.
    # go tool dist clean cleans all directories, not just this one,
    # but it's as close as we can get.
    
    # Default target (first).
    install:
    	go tool dist install -v
    
    verbose:
    	go tool dist install -vv
    
    clean:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:26:47 UTC 2012
    - 553 bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/util/WarmupEc2Agent.kt

        id("Util_WarmupEc2Agent")
    
        vcs.useAbsoluteVcs(VersionedSettingsBranch.fromDslContext().vcsRootId())
    
        features {
            freeDiskSpace {
                // Lower the limit such that the agent work directories aren't cleaned during the AMI baking process
                requiredSpace = "100mb"
            }
        }
    
        params {
            param("defaultBranchName", "master")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. .github/bot_config.yml

           * Try adding the CUDA, CUPTI, and cuDNN installation directories to the %PATH% environment variable.
           * Refer [windows setup guide](https://www.tensorflow.org/install/gpu#windows_setup).
         * If you have above configuration and using _**Ubuntu/Linux**_ platform -
           * Try adding the CUDA, CUPTI, and cuDNN installation directories to the $LD_LIBRARY_PATH environment variable.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 04:55:57 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. cmd/os_other.go

    					// file/directory.
    					if osIsNotExist(err) || isSysErrPathNotFound(err) ||
    						isSysErrTooManySymlinks(err) {
    						continue
    					}
    					return err
    				}
    
    				// Ignore symlinked directories.
    				if fi.IsDir() {
    					continue
    				}
    			}
    			if err = filter(fi.Name(), fi.Mode()); err == errDoneForNow {
    				// filtering requested to return by caller.
    				return nil
    			}
    		}
    	}
    	return nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 13 15:14:36 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top