Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 381 for fileName (0.17 sec)

  1. istioctl/pkg/validate/validate.go

    	processedFiles := map[string]bool{}
    	for _, filename := range filenames {
    		var isDir bool
    		if filename != "-" {
    			fi, err := os.Stat(filename)
    			if err != nil {
    				errs = multierror.Append(errs, fmt.Errorf("cannot stat file %q: %v", filename, err))
    				continue
    			}
    			isDir = fi.IsDir()
    		}
    
    		if !isDir {
    			processFile(filename)
    			processedFiles[filename] = true
    			continue
    		}
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Jan 22 17:58:52 GMT 2024
    - 15K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/fscc/FileRenameInformation2.java

        private boolean replaceIfExists;
        private String fileName;
    
    
        /**
         * 
         */
        public FileRenameInformation2 () {}
    
    
        /**
         * 
         * @param name
         * @param replaceIfExists
         */
        public FileRenameInformation2 ( String name, boolean replaceIfExists ) {
            this.fileName = name;
            this.replaceIfExists = replaceIfExists;
        }
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java

                e.filename = readString( buffer, bufferIndex + 94, e.fileNameLength );
    
                /* lastNameOffset ends up pointing to either to
                 * the exact location of the filename(e.g. Win98)
                 * or to the start of the entry containing the
                 * filename(e.g. NT). Ahhrg! In either case the
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/info/Smb2QueryDirectoryRequest.java

         */
        public void setFileIndex ( int fileIndex ) {
            this.fileIndex = fileIndex;
        }
    
    
        /**
         * @param fileName
         *            the fileName to set
         */
        public void setFileName ( String fileName ) {
            this.fileName = fileName;
        }
    
    
        /**
         * {@inheritDoc}
         *
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 10:41:31 GMT 2021
    - 6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/com/SmbComQueryInformation.java

    /**
     * 
     */
    public class SmbComQueryInformation extends ServerMessageBlock {
    
        /**
         * 
         * @param config
         * @param filename
         */
        public SmbComQueryInformation ( Configuration config, String filename ) {
            super(config, SMB_COM_QUERY_INFORMATION, filename);
        }
    
    
        @Override
        protected int writeParameterWordsWireFormat ( byte[] dst, int dstIndex ) {
            return 0;
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2K bytes
    - Viewed (0)
  6. maven-compat/src/test/java/org/apache/maven/artifact/testutils/TestFileManager.java

            File file = new File(dir, filename);
    
            String contents = FileUtils.fileRead(file, encoding);
    
            assertEquals(contentsTest, contents);
        }
    
        public File createFile(File dir, String filename, String contents, String encoding) throws IOException {
            File file = new File(dir, filename);
    
            file.getParentFile().mkdirs();
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 4.7K bytes
    - Viewed (0)
  7. cni/pkg/install/cniconfig.go

    // Or until cancelled by parent context
    func getCNIConfigFilepath(ctx context.Context, cfg pluginConfig) (string, error) {
    	filename := cfg.cniConfName
    
    	if !cfg.chainedCNIPlugin {
    		if len(filename) == 0 {
    			filename = "YYY-istio-cni.conf"
    		}
    		return filepath.Join(cfg.mountedCNINetDir, filename), nil
    	}
    
    	watcher, err := util.CreateFileWatcher(cfg.mountedCNINetDir)
    	if err != nil {
    		return "", err
    	}
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  8. cmd/postpolicyform_test.go

    		{Bucket: "testbucket", Key: "user/user1/filename/${filename}/myfile.txt", XAmzMetaUUID: "14365123651274", SuccessActionStatus: "201", XAmzCredential: "KVGKMDUQ23TCZXTLTHLP/20160727/us-east-1/s3/aws4_request", XAmzDate: "20160727T000000Z", XAmzAlgorithm: "AWS4-HMAC-SHA256", ContentType: "image/jpeg", expectedErr: nil},
    		// Expired policy document
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Apr 23 18:58:53 GMT 2021
    - 8.9K bytes
    - Viewed (0)
  9. istioctl/pkg/validate/validate_test.go

    			args:      []string{"--filename", validFilenameJSON, "--filename", tempDirJSON, "--filename", validTempDirJSON},
    			wantError: true, // Since the directory has invalid files
    		},
    		{
    			name:      "validate mix of yaml and json directories with valid files",
    			args:      []string{"--filename", validTempDirYAML, "--filename", validTempDirJSON},
    			wantError: false,
    		},
    		{
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Jul 25 08:08:36 GMT 2023
    - 21.5K bytes
    - Viewed (0)
  10. 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
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Nov 17 08:55:32 GMT 2018
    - 3K bytes
    - Viewed (0)
Back to top