Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1161 - 1170 of 4,487 for alse (0.04 sec)

  1. src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java

            String str = null;
            try {
                if( useUnicode ) {
                    // should Unicode alignment be corrected for here?
                    str = new String( src, srcIndex, len, UNI_ENCODING );
                } else {
        
                    /* On NT without Unicode the fileNameLength
                     * includes the '\0' whereas on win98 it doesn't. I
                     * guess most clients only support non-unicode so
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 8.5K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/io/MoreFilesTest.java

                    boolean createSymlink = false;
                    while (!Thread.interrupted()) {
                      try {
                        // trying to switch between a real directory and a symlink (dir -> /a)
                        if (Files.deleteIfExists(file)) {
                          if (createSymlink) {
                            Files.createSymbolicLink(file, target);
                          } else {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 02:42:09 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  3. internal/grid/connection.go

    			if err != nil {
    				gridLogIf(ctx, fmt.Errorf("conn.SetWriteDeadline: %w", err))
    				return false
    			}
    			lastSetDeadline = now
    		}
    
    		_, err := buf.WriteTo(conn)
    		if err != nil {
    			if !xnet.IsNetworkOrHostDown(err, true) {
    				gridLogIf(ctx, fmt.Errorf("ws write: %w", err))
    			}
    			return false
    		}
    		if buf.Cap() > writeBufferSize*4 {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jul 29 18:10:04 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  4. src/bytes/bytes_test.go

    	expected bool
    }{
    	{[]byte(""), "", false},
    	{[]byte(""), "a", false},
    	{[]byte(""), "abc", false},
    	{[]byte("a"), "", false},
    	{[]byte("a"), "a", true},
    	{[]byte("aaa"), "a", true},
    	{[]byte("abc"), "xyz", false},
    	{[]byte("abc"), "xcz", true},
    	{[]byte("a☺b☻c☹d"), "uvw☻xyz", true},
    	{[]byte("aRegExp*"), ".(|)*+?^$[]", true},
    	{[]byte(dots + dots + dots), " ", false},
    }
    
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Aug 19 19:09:04 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/JdkFutureAdapters.java

       * returned future will emulate {@link ListenableFuture#addListener} by submitting a task to the
       * given executor at the first call to {@code addListener}. The task must be started by the
       * executor promptly, or else the returned {@code ListenableFuture} may fail to work. The task's
       * execution consists of blocking until the input future is {@linkplain Future#isDone() done}, so
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Dec 14 20:35:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/ACE.java

     * is a basic description of the algorithm. For a more complete description
     * we recommend reading the section on Access Control in Keith Brown's
     * "The .NET Developer's Guide to Windows Security" (which is also
     * available online).
     * <p>
     * Direct ACEs are evaluated first in order. The SID of the user performing
     * the operation and the desired access bits are compared to the SID
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/NtlmPasswordAuthentication.java

        /**
         * 
         */
        private static final long serialVersionUID = -2832037191318016836L;
    
        private byte[] ansiHash;
        private byte[] unicodeHash;
        private boolean hashesExternal = false;
        private CIFSContext context;
    
    
        /**
         * 
         */
        private NtlmPasswordAuthentication () {}
    
    
        /**
         * Construct anonymous credentials
         * 
         * @param tc
         */
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SmbNamedPipe.java

                        ( pipeType & PIPE_TYPE_TRANSACT ) == PIPE_TYPE_TRANSACT ) {
                    pipeOut = new TransactNamedPipeOutputStream( this );
                } else {
                    pipeOut = new SmbFileOutputStream(this, false,
                                (pipeType & 0xFFFF00FF) | SmbFile.O_EXCL );
                }
            }
            return pipeOut;
        }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 7.3K bytes
    - Viewed (0)
  9. cmd/metacache-entries_test.go

    			wantSelected: nil,
    			wantOk:       false,
    		},
    		{
    			name:         "one-q2-strict",
    			m:            metaCacheEntries{inputSerialized[0], inputSerialized[4], inputSerialized[4], inputSerialized[4]},
    			r:            metadataResolutionParams{dirQuorum: 2, objQuorum: 2, strict: true},
    			wantSelected: nil,
    			wantOk:       false,
    		},
    		{
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 31.6K bytes
    - Viewed (0)
  10. src/archive/tar/writer_test.go

    	}{
    		{"", "", "", false},
    		{"abc", "", "", false},
    		{"用戶名", "", "", false},
    		{sr("a", nameSize), "", "", false},
    		{sr("a", nameSize) + "/", "", "", false},
    		{sr("a", nameSize) + "/a", sr("a", nameSize), "a", true},
    		{sr("a", prefixSize) + "/", "", "", false},
    		{sr("a", prefixSize) + "/a", sr("a", prefixSize), "a", true},
    		{sr("a", nameSize+1), "", "", false},
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Sep 23 14:32:33 UTC 2024
    - 39.4K bytes
    - Viewed (0)
Back to top