Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for outdirs (0.16 sec)

  1. src/cmd/covdata/tool_test.go

    	t.Run("MergeSimple", func(t *testing.T) {
    		t.Parallel()
    		testMergeSimple(t, s, s.outdirs[0], s.outdirs[1], "set")
    		testMergeSimple(t, s, s.outdirs[2], s.outdirs[3], "atomic")
    	})
    	t.Run("MergeSelect", func(t *testing.T) {
    		t.Parallel()
    		testMergeSelect(t, s, s.outdirs[0], s.outdirs[1], "set")
    		testMergeSelect(t, s, s.outdirs[2], s.outdirs[3], "atomic")
    	})
    	t.Run("MergePcombine", func(t *testing.T) {
    		t.Parallel()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/integTest/groovy/org/gradle/internal/execution/IncrementalExecutionIntegrationTest.groovy

                virtualFileSystem
            )
        }
    
        def "outputs are created"() {
            def unitOfWork = builder.withOutputDirs(
                dir1: file("outDir1"),
                dir2: file("outDir2")
            ).withOutputFiles(
                "file1": file("parent1/outFile"),
                "file2": file("parent2/outFile")
            ).withWork { ->
                UnitOfWork.WorkResult.DID_WORK
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/ProviderIntegrationTest.groovy

            'task.flatMap { it.outDir }.zip(provider { "baz" }) { d, f -> d.file(f) }' | _
            'task.get().outDir.zip(provider { "baz" }) { d, f -> d.file(f) }'          | _
            'provider { "baz" }.zip(task.flatMap { it.outDir }) { f, d -> d.file(f) }' | _
            'provider { "baz" }.zip(task.get().outDir) { f, d -> d.file(f) }'          | _
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 15:32:52 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. cmd/kubeadm/app/phases/certs/renewal/manager_test.go

    		})
    	}
    }
    
    func TestCreateRenewCSR(t *testing.T) {
    	dir := testutil.SetupTempDir(t)
    	defer os.RemoveAll(dir)
    
    	outdir := filepath.Join(dir, "out")
    
    	if err := os.MkdirAll(outdir, 0755); err != nil {
    		t.Fatalf("couldn't create %s", outdir)
    	}
    
    	if err := pkiutil.WriteCertAndKey(dir, "ca", testCACert, testCAKey); err != nil {
    		t.Fatalf("couldn't write out CA certificate to %s", dir)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheIO.kt

        }
    
        private
        fun collectRootDirs(buildStateRegistry: BuildStateRegistry): MutableSet<File> {
            val rootDirs = mutableSetOf<File>()
            buildStateRegistry.visitBuilds { build ->
                rootDirs.add(build.buildRootDir)
            }
            return rootDirs
        }
    
        /**
         * See [ConfigurationCacheState.writeRootBuildState].
         */
        internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/writers_test.go

    func TestSerializeObjectParallel(t *testing.T) {
    	largePayload := bytes.Repeat([]byte("0123456789abcdef"), defaultGzipThresholdBytes/16+1)
    	type test struct {
    		name string
    
    		mediaType  string
    		out        []byte
    		outErrs    []error
    		req        *http.Request
    		statusCode int
    		object     runtime.Object
    
    		wantCode    int
    		wantHeaders http.Header
    	}
    	newTest := func() test {
    		return test{
    			name:      "compress on gzip",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/CoreJavadocOptions.java

         */
        @Override
        public List<File> getExtDirs() {
            return extDirs.getValue();
        }
    
        @Override
        public void setExtDirs(List<File> extDirs) {
            this.extDirs.setValue(extDirs);
        }
    
        @Override
        public MinimalJavadocOptions extDirs(File... extDirs) {
            this.extDirs.getValue().addAll(Arrays.asList(extDirs));
            return this;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  10. 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)
Back to top