Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 73 for subdir (0.24 sec)

  1. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    // but if a file exists but has old content or isn't a kubeconfig file, this function returns an error.
    func createKubeConfigFileIfNotExists(outDir, filename string, config *clientcmdapi.Config) error {
    	kubeConfigFilePath := filepath.Join(outDir, filename)
    
    	err := validateKubeConfig(outDir, filename, config)
    	if err != nil {
    		// Check if the file exist, and if it doesn't, just write it to disk
    		if !os.IsNotExist(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
  2. settings.gradle.kts

    val localProperties = Properties().apply {
      val file = File("local.properties")
      if (file.exists()) {
        load(file.inputStream())
      }
    }
    val sdkDir = localProperties.getProperty("sdk.dir")
    if ((androidHome != null || sdkDir != null) && !isKnownBrokenIntelliJ()) {
      include(":okhttp-android")
      include(":android-test")
      include(":android-test-app")
    }
    
    enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Apr 14 14:24:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/clean/clean.go

    			// the access log for future analysis, even if the cache is cleared.
    			subdirs, _ := filepath.Glob(filepath.Join(str.QuoteGlob(dir), "[0-9a-f][0-9a-f]"))
    			printedErrors := false
    			if len(subdirs) > 0 {
    				if err := sh.RemoveAll(subdirs...); err != nil && !printedErrors {
    					printedErrors = true
    					base.Error(err)
    				}
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DistributionFactory.java

                }
                File libDir = new File(gradleHomeDir, "lib");
                if (!libDir.isDirectory()) {
                    throw new IllegalArgumentException(String.format("The specified %s does not appear to contain a Gradle distribution.", locationDisplayName));
                }
                File[] files = libDir.listFiles(new FileFilter() {
                    @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. hack/lib/init.sh

    # Where output goes.  We should avoid redefining these anywhere else.
    #
    # KUBE_OUTPUT: the root directory (absolute) where this build should drop any
    #     files (subdirs are encouraged).
    # KUBE_OUTPUT_BIN: the directory in which compiled binaries will be placed,
    #     under OS/ARCH specific subdirs
    # THIS_PLATFORM_BIN: a symlink to the output directory for binaries built for
    #     the current host platform (e.g. build/test tools).
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:18:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. src/cmd/covdata/metamerge.go

    	mm.ResetModeAndGranularity()
    }
    
    // emitMeta encodes and writes out a new coverage meta-data file as
    // part of a merge operation, specifically a merge with the
    // "-pcombine" flag.
    func (mm *metaMerge) emitMeta(outdir string, pcombine bool) [16]byte {
    	fh := md5.New()
    	blobs := [][]byte{}
    	tlen := uint64(unsafe.Sizeof(coverage.MetaFileHeader{}))
    	for _, p := range mm.pkgs {
    		var blob []byte
    		if pcombine {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:17:47 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/job/ExecJob.java

            }
        }
    
        protected void appendJarFile(final String cpSeparator, final StringBuilder buf, final File libDir, final String basePath) {
            final File[] jarFiles = libDir.listFiles((FilenameFilter) (dir, name) -> name.toLowerCase().endsWith(".jar"));
            if (jarFiles != null) {
                for (final File file : jarFiles) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/DefaultModuleRegistry.java

            Pattern pattern = Pattern.compile(Pattern.quote(name) + "-\\d.*\\.jar");
            if (gradleInstallation != null) {
                for (File libDir : gradleInstallation.getLibDirs()) {
                    for (File file : libDir.listFiles()) {
                        if (pattern.matcher(file.getName()).matches()) {
                            return file;
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  9. pkg/volume/util/atomic_writer_test.go

    			},
    			payload2: map[string]FileProjection{
    				"foo.txt": {Mode: 0644, Data: []byte("foo")},
    			},
    			expected: sets.New[string]("zip/bar.txt", "zip"),
    		},
    		{
    			name: "subdirs 1",
    			payload1: map[string]FileProjection{
    				"foo.txt":         {Mode: 0644, Data: []byte("foo")},
    				"zip/zap/bar.txt": {Mode: 0644, Data: []byte("zip/bar")},
    			},
    			payload2: map[string]FileProjection{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  10. pkg/test/framework/suite.go

    	scopes.Framework.Infof("===============================")
    
    	// Ensure that the work dir is set.
    	if err := os.MkdirAll(settings.RunDir(), os.ModePerm); err != nil {
    		return fmt.Errorf("error creating rundir %q: %v", settings.RunDir(), err)
    	}
    	scopes.Framework.Infof("Test run dir: %v", settings.RunDir())
    
    	rt, err = newRuntime(settings, environmentFactory, s.labels)
    	return err
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top