Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 109 for volatile (0.1 sec)

  1. android/guava-tests/test/com/google/common/reflect/InvokableTest.java

        @Tested protected int protectedField;
        @Tested public String publicField;
        @Tested private static Iterable<String> staticField;
        @Tested private final Object finalField;
        private volatile char volatileField;
        private transient long transientField;
    
        @Tested
        public A(Object finalField) {
          this.finalField = finalField;
        }
    
        @Tested
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 13:00:28 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/reflect/InvokableTest.java

        @Tested protected int protectedField;
        @Tested public String publicField;
        @Tested private static Iterable<String> staticField;
        @Tested private final Object finalField;
        private volatile char volatileField;
        private transient long transientField;
    
        @Tested
        public A(Object finalField) {
          this.finalField = finalField;
        }
    
        @Tested
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 13:00:28 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  3. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

            try {
                return (MojoDescriptor) super.clone();
            } catch (CloneNotSupportedException e) {
                throw new UnsupportedOperationException(e);
            }
        }
    
        private volatile org.apache.maven.api.plugin.descriptor.MojoDescriptor mojoDescriptorV4;
    
        public org.apache.maven.api.plugin.descriptor.MojoDescriptor getMojoDescriptorV4() {
            if (mojoDescriptorV4 == null) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java

        public static final String FTP_AUTHENTICATIONS_PROPERTY = "ftpAuthentications";
    
        protected String charset = Constants.UTF_8;
    
        @Resource
        protected ContentLengthHelper contentLengthHelper;
    
        protected volatile FtpAuthenticationHolder ftpAuthenticationHolder;
    
        protected FTPClientConfig ftpClientConfig;
    
        protected final Queue<FTPClient> ftpClientQueue = new ConcurrentLinkedQueue<>();
    
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Sat Oct 12 01:41:37 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  5. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java

        protected static final String[] timestampFields = { LAST_MODIFIED, CREATE_TIME };
    
        protected static final HashFunction murmur3Hash = Hashing.murmur3_128(0);
    
        @Resource
        protected volatile FesenClient fesenClient;
    
        protected String index;
    
        protected int scrollTimeout = 60000;
    
        protected int scrollSize = 100;
    
        protected int bulkBufferSize = 10;
    
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Nov 07 04:44:10 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/graph/AbstractNetworkTest.java

         * The specific problem we had was unsafe reads of lastEntryReturnedBySomeIterator. (To fix the
         * problem, we've since marked that field as volatile.)
         *
         * When MapIteratorCache is used from Immutable* classes, the TSAN failure doesn't indicate a
         * real problem: The Entry objects are ImmutableMap entries, whose fields are all final and thus
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

        protected int headerStart, length, batchLevel, errorCode, flags2, pid, uid, mid, wordCount, byteCount;
        protected int tid = 0xFFFF;
        private boolean useUnicode, forceUnicode, extendedSecurity;
        private volatile boolean received;
        private int signSeq;
        private boolean verifyFailed;
        protected String path;
        protected SMB1SigningDigest digest = null;
        private ServerMessageBlock response;
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 32.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

          implements Closeable {
        private final DeferredCloser closer = new DeferredCloser(this);
        private volatile boolean closed;
        @CheckForNull private volatile CountDownLatch whenClosed;
    
        <V extends @Nullable Object, U extends @Nullable Object>
            ListenableFuture<U> applyClosingFunction(
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Oct 08 19:36:35 UTC 2024
    - 98.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/RateLimiter.java

       * object to facilitate testing.
       */
      private final SleepingStopwatch stopwatch;
    
      // Can't be initialized in the constructor because mocks don't call the constructor.
      @CheckForNull private volatile Object mutexDoNotUseDirectly;
    
      private Object mutex() {
        Object mutex = mutexDoNotUseDirectly;
        if (mutex == null) {
          synchronized (this) {
            mutex = mutexDoNotUseDirectly;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:51:36 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  10. docs/metrics/prometheus/list.md

    | `minio_s3_requests_errors_total`              | Total number S3 requests with (4xx and 5xx) errors.      |
    | `minio_s3_requests_incoming_total`            | Volatile number of total incoming S3 requests.           |
    | `minio_s3_requests_inflight_total`            | Total number of S3 requests currently in flight.         |
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jul 29 18:48:51 UTC 2024
    - 43.3K bytes
    - Viewed (0)
Back to top