Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 72 for subdir (0.14 sec)

  1. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/ApiGroovyCompiler.java

            Map<String, Object> jointCompilationOptions = new HashMap<String, Object>();
            final File stubDir = spec.getGroovyCompileOptions().getStubDir();
            stubDir.mkdirs();
            jointCompilationOptions.put("stubDir", stubDir);
            jointCompilationOptions.put("keepStubs", spec.getGroovyCompileOptions().isKeepStubs());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  2. src/internal/coverage/cfile/emit.go

    func emitMetaDataToDirectory(outdir string, ml []rtcov.CovMetaBlob) error {
    	ml, err := prepareForMetaEmit()
    	if err != nil {
    		return err
    	}
    	if len(ml) == 0 {
    		return nil
    	}
    
    	metaDataEmitAttempted = true
    
    	s := &emitState{
    		metalist: ml,
    		debug:    os.Getenv("GOCOVERDEBUG") != "",
    		outdir:   outdir,
    	}
    
    	// Open output files.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/volume/projected/projected_test.go

    					"bar": []byte("bar"),
    				},
    			},
    			mode: 0644,
    			payload: map[string]util.FileProjection{
    				"path/to/foo.txt": {Data: []byte("foo"), Mode: 0644},
    			},
    			success: true,
    		},
    		{
    			name: "subdirs",
    			mappings: []v1.KeyToPath{
    				{
    					Key:  "foo",
    					Path: "path/to/1/2/3/foo.txt",
    				},
    			},
    			secret: &v1.Secret{
    				Data: map[string][]byte{
    					"foo": []byte("foo"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 40.5K bytes
    - Viewed (0)
  7. 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)
  8. pkg/volume/configmap/configmap_test.go

    					"bar": "bar",
    				},
    			},
    			mode: 0644,
    			payload: map[string]util.FileProjection{
    				"path/to/foo.txt": {Data: []byte("foo"), Mode: 0644},
    			},
    			success: true,
    		},
    		{
    			name: "subdirs",
    			mappings: []v1.KeyToPath{
    				{
    					Key:  "foo",
    					Path: "path/to/1/2/3/foo.txt",
    				},
    			},
    			configMap: &v1.ConfigMap{
    				Data: map[string]string{
    					"foo": "foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 19.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top