Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for asSnapshot (0.32 sec)

  1. guava/src/com/google/common/cache/LocalCache.java

        @GuardedBy("this")
        long totalWeight;
    
        /**
         * Number of updates that alter the size of the table. This is used during bulk-read methods to
         * make sure they see a consistent snapshot: If modCounts change during a traversal of segments
         * loading size or checking containsValue, then we might have an inconsistent view of state so
         * (usually) must retry.
         */
        int modCount;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CallTest.kt

        val response = call.execute()
        assertThat(response.header("Content-Encoding")).isEqualTo("gzip")
        assertThat(response.body.source().readByteString()).isEqualTo(
          gzippedBody.snapshot(),
        )
    
        // The request did not offer gzip support.
        val recordedRequest = server.takeRequest()
        assertThat(recordedRequest.headers["Accept-Encoding"]).isNull()
      }
    
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  3. src/database/sql/sql.go

    	case LevelReadCommitted:
    		return "Read Committed"
    	case LevelWriteCommitted:
    		return "Write Committed"
    	case LevelRepeatableRead:
    		return "Repeatable Read"
    	case LevelSnapshot:
    		return "Snapshot"
    	case LevelSerializable:
    		return "Serializable"
    	case LevelLinearizable:
    		return "Linearizable"
    	default:
    		return "IsolationLevel(" + strconv.Itoa(int(i)) + ")"
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Clear */
        public static final String LABELS_search_options_clear = "{labels.search_options_clear}";
    
        /** The key of the message: This is a cache of {0}. It is a snapshot of the page at {1}. */
        public static final String LABELS_search_cache_msg = "{labels.search_cache_msg}";
    
        /** The key of the message: Unknown */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    			// DELETE is treated as a UPDATE because of graceful deletion.
    			handler.HandlePodUpdates(u.Pods)
    		case kubetypes.SET:
    			// TODO: Do we want to support this?
    			klog.ErrorS(nil, "Kubelet does not support snapshot update")
    		default:
    			klog.ErrorS(nil, "Invalid operation type received", "operation", u.Op)
    		}
    
    		kl.sourcesReady.AddSource(u.Source)
    
    	case e := <-plegCh:
    		if isSyncPodWorthy(e) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. src/net/http/server.go

    	if w.cw.header == nil && w.wroteHeader && !w.cw.wroteHeader {
    		// Accessing the header between logically writing it
    		// and physically writing it means we need to allocate
    		// a clone to snapshot the logically written state.
    		w.cw.header = w.handlerHeader.Clone()
    	}
    	w.calledHeader = true
    	return w.handlerHeader
    }
    
    // maxPostHandlerReadBytes is the max number of Request.Body bytes not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top