Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 84 for rootfile (0.68 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildSymlinkHandlingIntegrationTest.groovy

            file('in.txt').touch()
            file("in-dir").createDir()
            def outFile = file("out.txt")
            def copy = file("other")
    
            given:
            run("work")
            run("work")
            result.assertTasksSkipped(":work")
    
            when:
            outFile.copyTo(copy)
            outFile.delete()
            outFile.createLink(copy)
            run("work")
    
    
            /*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 14:30:36 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem.cc

          return;
        }
        if (*offset == 0) {
          if (!outfile->truncate()) {
            TF_SetStatus(status, TF_INTERNAL,
                         "Could not truncate internal temporary file.");
            return;
          }
          *offset = static_cast<int64_t>(metadata->size());
        }
        outfile->clear();
        outfile->seekp(0, std::ios::end);
        TF_SetStatus(status, TF_OK, "");
      } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 23 06:55:53 UTC 2023
    - 46.9K bytes
    - Viewed (0)
  3. cmd/genyaml/gen_kubectl_yaml.go

    	if parent == "" {
    		filename = docsDir + doc.Name + ".yaml"
    	} else {
    		filename = docsDir + parent + "_" + doc.Name + ".yaml"
    	}
    
    	outFile, err := os.Create(filename)
    	if err != nil {
    		fmt.Println(err)
    		os.Exit(1)
    	}
    	defer outFile.Close()
    	_, err = outFile.Write(final)
    	if err != nil {
    		fmt.Println(err)
    		os.Exit(1)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 14:05:23 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsIntegrationTest.groovy

                    }
                }
                task producer(type: InputFilesTask) {
                    outFile = layout.buildDirectory.file("out.txt")
                    inFiles.from(configurations.implementation)
                }
                artifacts {
                    implementation producer.outFile
                }
            """
            return buildFile
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. cluster/gce/windows/common.psm1

          Validate-SHA -Hash $Hash -Path $OutFile -Algorithm $Algorithm
          Log-Output "Skip download of ${OutFile}, it already exists with expected hash."
          return
        }
        catch {
          # The hash does not match the file on disk.
          # Proceed with the download and overwrite the file.
          Log-Output "${OutFile} exists but had wrong hash. Redownloading."
        }
      }
    
      $currentAttempt = 0
      while ($true) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 25.4K bytes
    - Viewed (0)
  6. ci/devinfra/docker_windows/Dockerfile

    # Install Visual C++ Redistributable for Visual Studio 2015-2022.
    RUN New-Item -Path "C:/" -Name "TEMP" -ItemType "directory"; \
        Invoke-WebRequest "https://aka.ms/vs/17/release/vc_redist.x64.exe" \
            -OutFile C:/TEMP/vc_redist.x64.exe -UseBasicParsing; \
        Start-Process -filepath C:/TEMP/vc_redist.x64.exe -ArgumentList '/install', '/passive', '/norestart' -Wait; \
        Remove-Item C:/TEMP/vc_redist.x64.exe
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 18 17:24:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/certificates.go

    	var (
    		rootCA []byte
    		err    error
    	)
    	if controllerContext.ComponentConfig.SAController.RootCAFile != "" {
    		if rootCA, err = readCA(controllerContext.ComponentConfig.SAController.RootCAFile); err != nil {
    			return nil, true, fmt.Errorf("error parsing root-ca-file at %s: %v", controllerContext.ComponentConfig.SAController.RootCAFile, err)
    		}
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  8. pkg/volume/util/atomic_writer_test.go

    				".dotfile":      {Mode: 0644, Data: []byte("dotfile")},
    				".dotfile.file": {Mode: 0644, Data: []byte("dotfile.file")},
    			},
    			success: true,
    		},
    		{
    			name: "dotfiles mode",
    			payload: map[string]FileProjection{
    				"foo":           {Mode: 0407, Data: []byte("foo")},
    				"bar":           {Mode: 0440, Data: []byte("bar")},
    				".dotfile":      {Mode: 0777, Data: []byte("dotfile")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  9. cmd/genman/gen_kube_man.go

    `)
    
    	final := mangen.Render(out.Bytes())
    
    	filename := docsDir + dname + ".1"
    	outFile, err := os.Create(filename)
    	if err != nil {
    		fmt.Println(err)
    		os.Exit(1)
    	}
    	defer outFile.Close()
    	_, err = outFile.Write(final)
    	if err != nil {
    		fmt.Println(err)
    		os.Exit(1)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 12:03:09 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/net/interface_test.go

    		}
    	}
    }
    
    func makeRouteFile(content string, t *testing.T) (*os.File, error) {
    	routeFile, err := os.CreateTemp("", "route")
    	if err != nil {
    		return nil, err
    	}
    
    	if _, err := routeFile.Write([]byte(content)); err != nil {
    		return routeFile, err
    	}
    	err = routeFile.Close()
    	return routeFile, err
    }
    
    func TestFailGettingIPv4Routes(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 33.2K bytes
    - Viewed (0)
Back to top