Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 576 for FILE (0.12 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

                }
            }
    
            private File expectGetStatusOf(String path, String status, boolean broken) {
                def file = temporaryFolder.createFile("cheap-${path.replace('/', '_')}.status")
                file.text = status
                if (!broken) {
                    server.expectGet("/repo/${path}/status.txt", file)
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/internal/testdir/testdir_test.go

    		if err != nil {
    			t.Fatal(err)
    		}
    		var gos []string
    		var asms []string
    		for _, file := range files {
    			switch filepath.Ext(file.Name()) {
    			case ".go":
    				gos = append(gos, filepath.Join(longdir, file.Name()))
    			case ".s":
    				asms = append(asms, filepath.Join(longdir, file.Name()))
    			}
    
    		}
    		if len(asms) > 0 {
    			emptyHdrFile := filepath.Join(tempDir, "go_asm.h")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top