Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 83 for fileset (0.14 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/PdfExtractor.java

        protected PDEmbeddedFile getEmbeddedFile(final PDComplexFileSpecification fileSpec) {
            // search for the first available alternative of the embedded file
            PDEmbeddedFile embeddedFile = null;
            if (fileSpec != null) {
                embeddedFile = fileSpec.getEmbeddedFileUnicode();
                if (embeddedFile == null) {
                    embeddedFile = fileSpec.getEmbeddedFileDos();
                }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. docs/de/docs/tutorial/request-files.md

    Nils Lindemann <******@****.***> 1711821488 +0100
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 17:58:08 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. docs/ru/docs/tutorial/request-files.md

    Joshua Hanson <******@****.***> 1710356539 -0600
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/fields/selector_test.go

    	expectNoMatch(t, "x!=y,z!=w", Set{"x": "z", "z": "w"})
    
    	fieldset := Set{
    		"foo":     "bar",
    		"baz":     "blah",
    		"complex": `=value\,\`,
    	}
    	expectMatch(t, "foo=bar", fieldset)
    	expectMatch(t, "baz=blah", fieldset)
    	expectMatch(t, "foo=bar,baz=blah", fieldset)
    	expectMatch(t, `foo=bar,baz=blah,complex=\=value\\\,\\`, fieldset)
    	expectNoMatch(t, "foo=blah", fieldset)
    	expectNoMatch(t, "baz=bar", fieldset)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 27 08:00:38 UTC 2017
    - 11.2K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/request-files.md

    # Request Files
    
    You can define files to be uploaded by the client using `File`.
    
    !!! info
        To receive uploaded files, first install <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>.
    
        E.g. `pip install python-multipart`.
    
        This is because uploaded files are sent as "form data".
    
    ## Import `File`
    
    Import `File` and `UploadFile` from `fastapi`:
    
    === "Python 3.9+"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. cmd/sftp-server-driver.go

    		return nil, err
    	}
    
    	switch r.Method {
    	case "List":
    		var files []os.FileInfo
    
    		bucket, prefix := path2BucketObject(r.Filepath)
    		if bucket == "" {
    			buckets, err := clnt.ListBuckets(r.Context())
    			if err != nil {
    				return nil, err
    			}
    
    			for _, bucket := range buckets {
    				files = append(files, &minioFileInfo{
    					p:     bucket.Name,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. src/syscall/fs_js.go

    		path = cwd + "/" + path
    	}
    	f := &jsFile{
    		path:    path,
    		entries: entries,
    	}
    	filesMu.Lock()
    	files[fd] = f
    	filesMu.Unlock()
    	return fd, nil
    }
    
    func Close(fd int) error {
    	filesMu.Lock()
    	delete(files, fd)
    	filesMu.Unlock()
    	_, err := fsCall("close", fd)
    	return err
    }
    
    func CloseOnExec(fd int) {
    	// nothing to do - no exec
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 11 18:19:17 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/fixtures/publish/ModuleVersionSpec.groovy

                                // publish variant files as "classified". This can be arbitrary in practice, this
                                // just makes it easier for publishing specs
                                new FileSpec("${module.module}-${module.version}-$it.name.${it.ext}")
                            } else {
                                new FileSpec(it.name, it.url, it.publishUrl)
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/macho.go

    		s6b.SetSize(s6b.Size() + n)
    		size += n
    	}
    
    	if size > 0 {
    		linkoff = Rnd(int64(uint64(HEADR)+Segtext.Length), *FlagRound) + Rnd(int64(Segrelrodata.Filelen), *FlagRound) + Rnd(int64(Segdata.Filelen), *FlagRound) + Rnd(int64(Segdwarf.Filelen), *FlagRound)
    		ctxt.Out.SeekSet(linkoff)
    
    		ctxt.Out.Write(ldr.Data(s1))
    		ctxt.Out.Write(ldr.Data(s2))
    		ctxt.Out.Write(ldr.Data(s3))
    		ctxt.Out.Write(ldr.Data(s4))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  10. security/pkg/nodeagent/cache/secretcache.go

    	s.mu.Lock()
    	defer s.mu.Unlock()
    	s.workload = value
    }
    
    var _ security.SecretManager = &SecretManagerClient{}
    
    // FileCert stores a reference to a certificate on disk
    type FileCert struct {
    	ResourceName string
    	Filename     string
    }
    
    // NewSecretManagerClient creates a new SecretManagerClient.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
Back to top