Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 259 for FILE (0.22 sec)

  1. .teamcity/test-buckets.json

    					"test-kit",
    					"ide",
    					"file-collections",
    					"persistent-cache"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"kotlin-dsl-tooling-builders",
    					"execution-e2e-tests",
    					"declarative-dsl-provider",
    					"platform-native",
    					"version-control",
    					"file-watching",
    					"jacoco",
    					"ivy",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/lib.go

    	if ctxt.Debugvlog > 1 {
    		ctxt.Logf("ldobj: %s (%s)\n", lib.File, pkg)
    	}
    	f, err := bio.Open(lib.File)
    	if err != nil {
    		Exitf("cannot open file %s: %v", lib.File, err)
    	}
    	defer f.Close()
    	defer func() {
    		if pkg == "main" && !lib.Main {
    			Exitf("%s: not package main", lib.File)
    		}
    	}()
    
    	for i := 0; i < len(ARMAG); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

    import org.gradle.api.component.SoftwareComponentContainer;
    import org.gradle.api.file.ConfigurableFileCollection;
    import org.gradle.api.file.ConfigurableFileTree;
    import org.gradle.api.file.CopySpec;
    import org.gradle.api.file.DeleteSpec;
    import org.gradle.api.file.FileTree;
    import org.gradle.api.file.ProjectLayout;
    import org.gradle.api.file.SyncSpec;
    import org.gradle.api.internal.CollectionCallbackActionDecorator;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. cluster/gce/windows/k8s-node-setup.psm1

    # Decodes the base64 $Data string and writes it as binary to $File. Does
    # nothing if $File already exists and $REDO_STEPS is not set.
    function Write_PkiData {
      param (
        [parameter(Mandatory=$true)] [string] $Data,
        [parameter(Mandatory=$true)] [string] $File
      )
    
      if (-not (ShouldWrite-File $File)) {
        return
      }
    
      # This command writes out a PEM certificate file, analogous to "base64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/init.go

    )
    
    // ModFile returns the parsed go.mod file.
    //
    // Note that after calling LoadPackages or LoadModGraph,
    // the require statements in the modfile.File are no longer
    // the source of truth and will be ignored: edits made directly
    // will be lost at the next call to WriteGoMod.
    // To make permanent changes to the require statements
    // in go.mod, edit it before loading.
    func ModFile() *modfile.File {
    	Init()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  6. cmd/xl-storage.go

    		return osErrToFileErr(err)
    	}
    
    	// Close the file descriptor.
    	defer file.Close()
    	fi, err := file.Stat()
    	if err != nil {
    		// Unable to stat on the file, return an expected error
    		// for healing code to fix this file.
    		return err
    	}
    	return bitrotVerify(diskHealthReader(ctx, file), fi.Size(), partSize, algo, sum, shardSize)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                if (recursive) {
                    File basedir = pomFile.getParentFile();
                    List<File> moduleFiles = new ArrayList<>();
                    for (String module : model.getModules()) {
                        if (module == null || module.isEmpty()) {
                            continue;
                        }
    
                        module = module.replace('\\', File.separatorChar).replace('/', File.separatorChar);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

                    }
                    artifacts {
                        'default' file('c-transitive.jar')
                    }
                }
                project(':d') {
                    configurations.create('default') {
                    }
                    artifacts {
                        'default' file('d-transitive.jar')
                    }
                }
    
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  9. tests/integration/security/authz_test.go

    			fromAndTo := to.Instances().Append(from)
    
    			config.New(t).
    				Source(config.File("testdata/authz/mtls.yaml.tmpl")).
    				Source(config.File("testdata/authz/deny-global.yaml.tmpl").WithParams(param.Params{
    					param.Namespace.String(): istio.ClaimSystemNamespaceOrFail(t, t),
    				})).
    				Source(config.File("testdata/authz/deny-principal.yaml.tmpl").WithParams(
    					param.Params{
    						"Denied": denied,
    					})).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                        provider.get().copy("a", "b")
                    }
                }
            """
    
            file("a").createFile()
            def dest = file("b/a")
            assert !dest.file
    
            when:
            run("copy")
    
            then:
            dest.file
        }
    
        def "task cannot use build service for #annotationType property"() {
            serviceImplementation()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
Back to top