Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 717 for filename (0.25 sec)

  1. src/main/java/jcifs/internal/smb1/trans/nt/FileNotifyInformationImpl.java

        int nextEntryOffset;
        int action;
        int fileNameLength;
        String fileName;
    
    
        /**
         * 
         */
        public FileNotifyInformationImpl () {}
    
    
        @Override
        public int getAction () {
            return this.action;
        }
    
    
        @Override
        public String getFileName () {
            return this.fileName;
        }
    
    
        /**
         * @return the nextEntryOffset
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Nov 17 08:55:32 UTC 2018
    - 3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/scopeids/DefaultPersistentScopeIdLoader.java

            return storeFactory.create(file, params.description);
        }
    
        private static class ScopeParams {
            private final ScopedCacheBuilderFactory cacheBuilderFactory;
            private final String fileName;
            private final String description;
    
            private ScopeParams(ScopedCacheBuilderFactory cacheBuilderFactory, String fileName, String description) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 10 18:14:29 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbComQueryInformation.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.smb1.smb1;
    
    class SmbComQueryInformation extends ServerMessageBlock {
    
        SmbComQueryInformation( String filename ) {
            path = filename;
            command = SMB_COM_QUERY_INFORMATION;
        }
    
        int writeParameterWordsWireFormat( byte[] dst, int dstIndex ) {
            return 0;
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/log/ApiAdminLogAction.java

            final String filename = new String(Base64.getDecoder().decode(id), StandardCharsets.UTF_8).replace("..", "").replaceAll("\\s", "");
            final String logFilePath = systemHelper.getLogFilePath();
            if (StringUtil.isNotBlank(logFilePath) && isLogFilename(filename)) {
                final Path path = Paths.get(logFilePath, filename);
                return asStream(filename).contentTypeOctetStream().stream(out -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. pkg/controller/certificates/signer/config/types.go

    type CSRSigningControllerConfiguration struct {
    	// clusterSigningCertFile is the filename containing a PEM-encoded
    	// X509 CA certificate used to issue cluster-scoped certificates
    	ClusterSigningCertFile string
    	// clusterSigningCertFile is the filename containing a PEM-encoded
    	// RSA or ECDSA private key used to issue cluster-scoped certificates
    	ClusterSigningKeyFile string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 02 03:38:15 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferral.java

        private final DfsReferralRequestBuffer request;
    
    
        /**
         * 
         * @param config
         * @param filename
         */
        public Trans2GetDfsReferral ( Configuration config, String filename ) {
            super(config, SMB_COM_TRANSACTION2, TRANS2_GET_DFS_REFERRAL);
            this.request = new DfsReferralRequestBuffer(filename, 3);
            this.totalDataCount = 0;
            this.maxParameterCount = 0;
            this.maxDataCount = 4096;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.9K bytes
    - Viewed (0)
  7. security/pkg/nodeagent/util/util.go

    	}
    
    	writeIfNotEqual := func(fileName string, newData []byte) error {
    		if newData == nil {
    			return nil
    		}
    		oldData, _ := os.ReadFile(path.Join(dir, fileName))
    		if !bytes.Equal(oldData, newData) {
    			if err := file.AtomicWrite(path.Join(dir, fileName), newData, certFileMode); err != nil {
    				return fmt.Errorf("failed to write data to file %v: %v", fileName, err)
    			}
    		}
    		return nil
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 10:33:38 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. docs_src/request_files/tutorial001_03_an_py39.py

        return {"file_size": len(file)}
    
    
    @app.post("/uploadfile/")
    async def create_upload_file(
        file: Annotated[UploadFile, File(description="A file read as UploadFile")],
    ):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 421 bytes
    - Viewed (0)
  9. docs_src/request_files/tutorial001.py

    
    @app.post("/files/")
    async def create_file(file: bytes = File()):
        return {"file_size": len(file)}
    
    
    @app.post("/uploadfile/")
    async def create_upload_file(file: UploadFile):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 13 23:38:22 UTC 2022
    - 282 bytes
    - Viewed (0)
  10. test/fixedbugs/issue52127.go

    	}
    	defer os.RemoveAll(dir)
    
    	args := []string{"go", "build"}
    	write := func(prefix string, i int, data string) {
    		filename := filepath.Join(dir, fmt.Sprintf("%s%d.go", prefix, i))
    		if err := os.WriteFile(filename, []byte(data), 0o644); err != nil {
    			panic(err)
    		}
    		args = append(args, filename)
    	}
    
    	for i := 0; i < 100; i++ {
    		write("a", i, `package p
    `)
    	}
    	for i := 0; i < 100; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top