Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,003 for sinhe5 (0.26 sec)

  1. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/api/JavaVersion.java

        /**
         * Java 11 major version.
         *
         * @since 4.7
         */
        VERSION_11,
    
        /**
         * Java 12 major version.
         *
         * @since 5.0
         */
        VERSION_12,
    
        /**
         * Java 13 major version.
         *
         * @since 6.0
         */
        VERSION_13,
    
        /**
         * Java 14 major version.
         *
         * @since 6.3
         */
        VERSION_14,
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/net/HttpHeaders.java

       * </a> header field name.
       *
       * @since 24.0
       */
      public static final String HTTP2_SETTINGS = "HTTP2-Settings";
      /** The HTTP {@code If-Match} header field name. */
      public static final String IF_MATCH = "If-Match";
      /** The HTTP {@code If-Modified-Since} header field name. */
      public static final String IF_MODIFIED_SINCE = "If-Modified-Since";
      /** The HTTP {@code If-None-Match} header field name. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/SingleProblemEvent.java

         * @since 8.9
         */
        ContextualLabel getContextualLabel();
    
        /**
         * Returns the details string.
         *
         * @return the problem details
         * @since 8.8
         */
        Details getDetails();
    
        /**
         * Returns the locations associated with this problem.
         *
         * @return the locations
         * @since 8.8
         */
        List<Location> getLocations();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. cmd/metrics-v3-scanner.go

    		"Total number of bucket scans finished since server start")
    	scannerBucketScansStartedMD = NewCounterMD(scannerBucketScansStarted,
    		"Total number of bucket scans started since server start")
    	scannerDirectoriesScannedMD = NewCounterMD(scannerDirectoriesScanned,
    		"Total number of directories scanned since server start")
    	scannerObjectsScannedMD = NewCounterMD(scannerObjectsScanned,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 19:29:25 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. docs/metrics/prometheus/list.md

    | `minio_node_scanner_bucket_scans_started`  | Total number of bucket scans started since server start.    |
    | `minio_node_scanner_directories_scanned`   | Total number of directories scanned since server start.     |
    | `minio_node_scanner_objects_scanned`       | Total number of unique objects scanned since server start.  |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/project/IsolatedProject.java

         * </p>
         *
         * @return The name of this project. Never return null.
         * @since 8.8
         */
        String getName();
    
        /**
         * <p>Returns the path of this project.  The path is the fully qualified name of the project.</p>
         *
         * @return The path. Never returns null.
         * @since 8.8
         */
        String getPath();
    
        /**
         * Returns a path to the project for the full build tree.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 18:34:13 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. cmd/metrics-v3-replication.go

    		"Maximum number of active replication workers seen since server start")
    	replicationMaxQueuedBytesMD = NewGaugeMD(replicationMaxQueuedBytes,
    		"Maximum number of bytes queued for replication since server start")
    	replicationMaxQueuedCountMD = NewGaugeMD(replicationMaxQueuedCount,
    		"Maximum number of objects queued for replication since server start")
    	replicationMaxDataTransferRateMD = NewGaugeMD(replicationMaxDataTransferRate,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. cmd/object-handlers-common.go

    			if !ifModifiedSince(objInfo.ModTime, givenTime) {
    				// If the object is not modified since the specified time.
    				writeHeaders()
    				writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrPreconditionFailed), r.URL)
    				return true
    			}
    		}
    	}
    
    	// x-amz-copy-source-if-unmodified-since : Return the object only if it has not been
    	// modified since the specified time, otherwise return a 412 (precondition failed).
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

         * Returns the build cache configuration.
         *
         * @since 3.5
         */
        BuildCacheConfiguration getBuildCache();
    
        /**
         * Configures build cache.
         *
         * @since 3.5
         */
        void buildCache(Action<? super BuildCacheConfiguration> action);
    
        /**
         * Configures plugin management.
         *
         * @since 3.5
         */
        @Configuring
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/ImmutableMultiset.java

       * @since 6.0 (source-compatible since 2.0)
       */
      public static <E> ImmutableMultiset<E> of(E e1) {
        return copyFromElements(e1);
      }
    
      /**
       * Returns an immutable multiset containing the given elements, in order.
       *
       * @throws NullPointerException if any element is null
       * @since 6.0 (source-compatible since 2.0)
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top