Search Options

Results per page
Sort
Preferred Languages
Advance

Results 271 - 280 of 341 for unsuccessful (0.47 sec)

  1. src/main/java/jcifs/smb/SmbSessionImpl.java

                        log.debug("No digest setup " + anonymous + " B " + isSignatureSetupRequired());
                    }
                    setSessionSetup(response);
    
                    // Initialize multi-channel after successful session setup
                    initializeMultiChannel();
    
                    // Initialize witness support for fast failover
                    initializeWitnessSupport();
    
                    if (ex != null) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 68.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb1/AndXServerMessageBlockTest.java

                this.rawPayload = payload;
            }
    
            @Override
            public boolean verifySignature(byte[] data, int offset, int length) {
                return true; // Default to successful verification
            }
    
            public void setRetainPayload(boolean retain) {
                this.retainPayload = retain;
            }
    
            public byte[] getRawPayload() {
                return rawPayload;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 19.4K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    // - freeze (freezes all incoming S3 API calls)
    // - unfreeze (unfreezes previously frozen S3 API calls)
    //
    // This newer API now returns back status per remote peer and local regarding
    // if a "restart/stop" was successful or not. Service signal now supports
    // a dry-run that helps skip the nodes that may have hung drives. By default
    // restart/stop will ignore the servers that are hung on drives. You can use
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 99.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

         */
        public ApiResult(final ApiResponse response) {
            this.response = response;
        }
    
        /**
         * Represents the status of an API response.
         */
        public enum Status {
            /** Successful response status. */
            OK(0),
            /** Bad request status indicating client error. */
            BAD_REQUEST(1),
            /** System error status indicating server error. */
            SYSTEM_ERROR(2),
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Queues.java

            added += q.drainTo(buffer, numElements - added);
            if (added < numElements) { // not enough elements immediately available; will have to poll
              E e; // written exactly once, by a successful (uninterrupted) invocation of #poll
              while (true) {
                try {
                  e = q.poll(deadline - System.nanoTime(), NANOSECONDS);
                  break;
                } catch (InterruptedException ex) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  6. docs/smb3-features/02-persistent-handles-design.md

                                              long timeout, Smb2LeaseKey leaseKey) {
            HandleGuid guid = new HandleGuid();
            
            // Will be populated after successful create response
            HandleInfo info = new HandleInfo(path, guid, new byte[16], type, timeout, leaseKey);
            
            handles.put(path, info);
            guidToHandle.put(guid, info);
            
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 31.6K bytes
    - Viewed (0)
  7. cmd/storage-datatypes.go

    	AbortOn404   bool     `msg:"ab"`           // Stop reading after first file not found.
    	MaxResults   int      `msg:"mr"`           // Stop after this many successful results. <= 0 means all.
    }
    
    // ReadMultipleResp contains a single response from a ReadMultipleReq.
    type ReadMultipleResp struct {
    	Bucket  string    `msg:"bk"`           // Bucket as given by request.
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Apr 25 05:41:04 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  8. okhttp/src/jvmTest/kotlin/okhttp3/DuplexTest.kt

          client
            .newBuilder()
            .readTimeout(1000, TimeUnit.MILLISECONDS)
            .build()
        val call = client.newCall(request)
        val response = call.execute()
        assertThat(response.isSuccessful).isTrue()
      }
    
      /**
       * We delay sending the last byte of the request body 1500 ms. The 1000 ms read timeout shouldn't
       * elapse because it shouldn't start until the request body is sent.
       */
      @Test
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Jun 18 12:28:21 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  9. cmd/erasure-object.go

    		// considered as Delete marker true to avoid listing such objects by
    		// regular ListObjects() calls. However for delete replication this
    		// ends up being a problem because "upon" a successful delete this
    		// ends up creating a new delete marker that is spurious and unnecessary.
    		//
    		// Regression introduced by #14555 was reintroduced in #15564
    		if versionFound {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Sep 07 16:13:09 UTC 2025
    - 80.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

            this.mid = mid;
        }
    
        /**
         * Chains another message to this message for compound operations.
         *
         * @param n the message to chain
         * @return whether chaining was successful
         */
        public boolean chain(final ServerMessageBlock2 n) {
            if (this.next != null) {
                return this.next.chain(n);
            }
    
            n.addFlags(SMB2_FLAGS_RELATED_OPERATIONS);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24K bytes
    - Viewed (0)
Back to top