Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 696 for breaks (0.29 sec)

  1. src/main/java/jcifs/smb1/util/Encdec.java

                        if (dlim - di < 3) {
                            break;
                        }
                        dst[di] = (byte) (0xE0 | ch >> 12 & 0x0F);
                        di++;
                        dst[di++] = (byte) (0x80 | ch >> 6 & 0x3F);
                    } else {
                        if (dlim - di < 2) {
                            break;
                        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 18.5K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/lease/DirectoryLeasingIntegrationTest.java

            // Cache should be invalidated
            assertFalse(cacheEntry.isComplete());
    
            // Step 9: Test lease break
            // Re-populate cache
            directoryLeaseManager.updateDirectoryCache(directoryPath, files);
            assertTrue(cacheEntry.isComplete());
    
            // Simulate lease break with loss of read cache
            directoryLeaseManager.handleDirectoryLeaseBreak(leaseKey, Smb2LeaseState.SMB2_LEASE_HANDLE_CACHING);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 01:47:47 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  3. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http1/HeadersReader.kt

        val line = source.readUtf8LineStrict(headerLimit)
        headerLimit -= line.length.toLong()
        return line
      }
    
      /** Reads headers or trailers. */
      fun readHeaders(): Headers {
        val result = Headers.Builder()
        while (true) {
          val line = readLine()
          if (line.isEmpty()) break
          result.addLenient(line)
        }
        return result.build()
      }
    
      companion object {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/audit/SecurityAuditLogger.java

                switch (entry.severity) {
                case CRITICAL:
                case ERROR:
                    auditLog.error(jsonStr);
                    break;
                case WARNING:
                    auditLog.warn(jsonStr);
                    break;
                default:
                    auditLog.info(jsonStr);
                }
            } catch (Exception e) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  5. clause/expression.go

    	switch len(in.Values) {
    	case 0:
    		builder.WriteString(" IN (NULL)")
    	case 1:
    		if _, ok := in.Values[0].([]interface{}); !ok {
    			builder.WriteString(" = ")
    			builder.AddVar(builder, in.Values[0])
    			break
    		}
    
    		fallthrough
    	default:
    		builder.WriteString(" IN (")
    		builder.AddVar(builder, in.Values...)
    		builder.WriteByte(')')
    	}
    }
    
    func (in IN) NegationBuild(builder Builder) {
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Tue Oct 10 06:45:48 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbSessionImpl.java

                handleResourceChange(notification);
                break;
    
            case CLIENT_MOVE:
                handleClientMove(notification);
                break;
    
            case SHARE_MOVE:
                handleShareMove(notification);
                break;
    
            case IP_CHANGE:
                handleIPChange(notification);
                break;
    
            case NODE_UNAVAILABLE:
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 68.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/hash/Murmur3_128HashFunction.java

              k2 ^= (long) toUnsignedInt(bb.get(9)) << 8; // fall through
            case 9:
              k2 ^= (long) toUnsignedInt(bb.get(8)); // fall through
            case 8:
              k1 ^= bb.getLong();
              break;
            case 7:
              k1 ^= (long) toUnsignedInt(bb.get(6)) << 48; // fall through
            case 6:
              k1 ^= (long) toUnsignedInt(bb.get(5)) << 40; // fall through
            case 5:
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Apr 14 16:36:11 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SmbSession.java

                            if (auth != NtlmPasswordAuthentication.ANONYMOUS && transport.hasCapability(SmbConstants.CAP_EXTENDED_SECURITY)) {
                                state = 20; /* NTLMSSP */
                                break;
                            }
    
                            request = new SmbComSessionSetupAndX(this, andx, auth);
                            response = new SmbComSessionSetupAndXResponse(andxResponse);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  9. src/test/java/jcifs/util/SmbCircuitBreakerTest.java

            CIFSException exception = assertThrows(CIFSException.class, () -> {
                circuitBreaker.executeWithCircuitBreaker(() -> "should not execute");
            }, "Circuit breaker should throw CIFSException when open");
    
            assertTrue(exception.getMessage().contains("Circuit breaker 'test' is open"), "Exception message should indicate circuit is open");
        }
    
        @Test
        public void testCircuitResetsAfterTimeout() throws Exception {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 23.2K bytes
    - Viewed (0)
  10. mvnw

        echo "Path not specified to find_maven_basedir" >&2
        return 1
      fi
    
      basedir="$1"
      wdir="$1"
      while [ "$wdir" != '/' ]; do
        if [ -d "$wdir"/.mvn ]; then
          basedir=$wdir
          break
        fi
        # workaround for JBEAP-8937 (on Solaris 10/Sparc)
        if [ -d "${wdir}" ]; then
          wdir=$(
            cd "$wdir/.." || exit 1
            pwd
          )
        fi
        # end of workaround
      done
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Oct 14 22:24:15 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top