Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 346 for folder1 (0.27 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DefaultCopySpecTest.groovy

            PatternMatcher matcher = copyAction.matcher
    
            ['root/folder1/folder2', 'modules/project1'].each {
                assertMatches matcher, it
            }
    
            ['archive/folder/file', 'root/archives/file', 'root/folder/abc',
             'collections/folder/file', 'root/collections/file', 'archives/collections/file',
             'root/folder/cde'].each {
                assertMatches matcher.negate(), it
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 26 08:05:50 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  2. cmd/data-scanner.go

    				into.addChild(h)
    				// We scanned a folder, optionally send update.
    				f.updateCache.deleteRecursive(h)
    				f.updateCache.copyWithChildren(&f.newCache, h, folder.parent)
    				f.sendUpdate()
    			}
    		}
    
    		// Transfer existing
    		if !into.Compacted {
    			for _, folder := range existingFolders {
    				h := hashPath(folder.name)
    				f.updateCache.copyWithChildren(&f.oldCache, h, folder.parent)
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/readme-templates/multi-common-body.adoc.template

    * The latest https://gradle.org/install[Gradle distribution]
    ${toolChain.raw}
    
    == Create a project folder
    
    Gradle comes with a built-in task, called `init`, that initializes a new Gradle project in an empty folder.
    The `init` task uses the (also built-in) `wrapper` task to create a Gradle wrapper script, `gradlew`.
    
    The first step is to create a folder for the new project and change directory into it.
    
    [listing.terminal.sample-command]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 08 11:21:22 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/SourceFoldersCreator.java

            SourceFolder folder = new SourceFolder(relativePath, null);
            folder.setDir(dir);
            folder.setName(dir.getName());
            folder.setIncludes(getIncludesForTree(sourceSet, tree));
            folder.setExcludes(getExcludesForTree(sourceSet, tree));
            folder.setOutput(sourceSetOutputPaths.get(sourceSet));
            addScopeAttributes(folder, sourceSet, sourceSetUsages);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. cmd/data-usage_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	if got.root() == nil {
    		t.Log("cached folders:")
    		for folder := range got.Cache {
    			t.Log("folder:", folder)
    		}
    		t.Fatal("got nil root.")
    	}
    
    	// Test dirs
    	want := []struct {
    		path       string
    		isNil      bool
    		size, objs int
    		oSizes     sizeHistogram
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Mar 27 15:10:40 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    	}
    }
    
    func TestGetKubeConfigSpecs(t *testing.T) {
    	// Create temp folder for the test case
    	tmpdir := testutil.SetupTempDir(t)
    	defer os.RemoveAll(tmpdir)
    
    	// Adds a pki folder with a ca certs to the temp folder
    	pkidir := testutil.SetupPkiDirWithCertificateAuthority(t, tmpdir)
    
    	// Creates InitConfigurations pointing to the pkidir folder
    	cfgs := []*kubeadmapi.InitConfiguration{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  7. cmd/metacache-walk.go

    	if err != nil {
    		return toStorageErr(err)
    	}
    	return toStorageErr(st.Results(func(in []byte) error {
    		_, err := wr.Write(in)
    		return err
    	}))
    }
    
    // WalkDirHandler - remote caller to list files and folders in a requested directory path.
    func (s *storageRESTServer) WalkDirHandler(ctx context.Context, payload []byte, _ <-chan []byte, out chan<- []byte) (gerr *grid.RemoteErr) {
    	var opts WalkDirOptions
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 05:17:37 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseProjectIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        void "allows resource filter for folders"() {
            given:
            buildScript """
    apply plugin: 'java'
    apply plugin: 'eclipse'
    
    eclipse {
      project {
        resourceFilter {
          appliesTo = 'FOLDERS'
          type = 'INCLUDE_ONLY'
          matcher {
            id = 'org.eclipse.some.custom.matcher'
            arguments = 'foobar'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

     *     generatedSourceDirs += file('some-extra-source-folder')
     *
     *     //and some extra dirs that should be excluded by IDEA
     *     excludeDirs += file('some-extra-exclude-dir')
     *
     *     //if you don't like the name Gradle has chosen
     *     name = 'some-better-name'
     *
     *     //if you prefer different output folders
     *     inheritOutputDirs = false
     *     outputDir = file('muchBetterOutputDir')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  10. tools/docker-builder/docker.go

    // all outside and copy them into a staging folder that represents all the dependencies for the
    // Dockerfile. For example, we first build 'foo' to 'out/linux_amd64/foo'. Then, we copy foo to
    // 'out/linux_amd64/dockerx_build/build.docker.foo', along with all other dependencies for the foo
    // Dockerfile (as declared in docker.yaml). Creating this staging folder ensures that we do not copy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 11K bytes
    - Viewed (0)
Back to top