Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for fileInput (0.16 sec)

  1. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/impl/DefaultInputFingerprinterTest.groovy

                    "file",
                    NON_INCREMENTAL,
                    new InputFileValueSupplier(fileInput, normalizer, DirectorySensitivity.DEFAULT, LineEndingSensitivity.DEFAULT, { fileInput }))
            }
    
            then:
            1 * valueSnapshotter.snapshot(input) >> inputSnapshot
            1 * snapshotter.snapshot(fileInput) >> fileInputSnapshotResult
            _ * fileInputSnapshotResult.containsArchiveTrees() >> false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. hack/conformance/check_conformance_test_requirements.go

    	regEndConformance := regexp.MustCompile(patternEndConformance)
    	regSkip := regexp.MustCompile(patternSkip)
    
    	fileInput, err := os.ReadFile(e2eFile)
    	if err != nil {
    		return fmt.Errorf("Failed to read file %s: %w", e2eFile, err)
    	}
    	scanner := bufio.NewScanner(bytes.NewReader(fileInput))
    	scanner.Split(bufio.ScanLines)
    
    	for scanner.Scan() {
    		line := scanner.Text()
    		if regStartConformance.MatchString(line) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 29 06:30:57 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformValuesInjectionIntegrationTest.groovy

                extension: missingAnnotationMessage { property('extension').missingInput().includeLink().noIntro() },
                fileInput: [
                    missingValueMessage { property('fileInput').includeLink().noIntro() },
                    incorrectUseOfInputAnnotation { property('fileInput').propertyType('File').includeLink().noIntro() },
                ],
                incrementalNonFileInput: [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 11:12:24 UTC 2023
    - 37.7K bytes
    - Viewed (0)
  4. cmd/sftp-server-driver.go

    // - sftp.Filecmd
    func NewSFTPDriver(perms *ssh.Permissions) sftp.Handlers {
    	handler := &sftpDriver{endpoint: fmt.Sprintf("127.0.0.1:%s", globalMinioPort), permissions: perms}
    	return sftp.Handlers{
    		FileGet:  handler,
    		FilePut:  handler,
    		FileCmd:  handler,
    		FileList: handler,
    	}
    }
    
    func (f *sftpDriver) getMinIOClient() (*minio.Client, error) {
    	mcreds := credentials.NewStaticV4(
    		f.permissions.CriticalOptions["AccessKey"],
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top