Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 191 for performHead (0.16 sec)

  1. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpClientHelper.java

        /**
         * Maintains a queue of contexts which are shared between threads when authentication
         * is activated. When a request is performed, it will pick a context from the queue,
         * and create a new one whenever it's not available (which either means it's the first request
         * or that other requests are being performed concurrently). The queue will grow as big as
         * the max number of concurrent requests executed.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtensionProvider.kt

         *
         * Should not perform any heavy analysis and the generation of the actual files. All file generation should be performed only in [KaResolveExtensionFile.buildFileText].
         *
         * Implementations should consider caching the results, so the subsequent invocations should be performed instantly.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admission/v1/types.go

    	DryRun *bool `json:"dryRun,omitempty" protobuf:"varint,11,opt,name=dryRun"`
    	// Options is the operation option structure of the operation being performed.
    	// e.g. `meta.k8s.io/v1.DeleteOptions` or `meta.k8s.io/v1.CreateOptions`. This may be
    	// different than the options the caller provided. e.g. for a patch request the performed
    	// Operation might be a CREATE, in which case the Options will a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

     *
     *   {@literal @Override} public boolean equals(Object obj) {...}
     *   {@literal @Override} public int hashCode() {...}
     *   ...
     * }
     * </pre>
     *
     * <p>No cascading checks are performed against the return values of methods unless the method is a
     * static factory method. Neither are semantics of mutation methods such as {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

     *
     *   {@literal @Override} public boolean equals(Object obj) {...}
     *   {@literal @Override} public int hashCode() {...}
     *   ...
     * }
     * </pre>
     *
     * <p>No cascading checks are performed against the return values of methods unless the method is a
     * static factory method. Neither are semantics of mutation methods such as {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. docs/logging/README.md

    - Additionally in the case of the erasure coded setup `tags.objectLocation` provides per object details about
      - Pool number the object operation was performed on.
      - Set number the object operation was performed on.
      - The list of drives participating in this operation belong to the set.
    
    ```json
    {
      "version": "1",
      "deploymentid": "90e81272-45d9-4fe8-9c45-c9a7322bf4b5",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 17:15:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java

         */
        int VALIDATION_LEVEL_MINIMAL = 0;
    
        /**
         * Denotes validation as performed by Maven 2.0. This validation level is meant as a compatibility mode to allow
         * users to migrate their projects.
         */
        int VALIDATION_LEVEL_MAVEN_2_0 = 20;
    
        /**
         * Denotes validation as performed by Maven 3.0. This validation level is meant for existing projects.
         */
        int VALIDATION_LEVEL_MAVEN_3_0 = 30;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. src/net/sendfile_linux.go

    // system call to minimize copies.
    //
    // if handled == true, sendFile returns the number (potentially zero) of bytes
    // copied and any non-EOF error.
    //
    // if handled == false, sendFile performed no work.
    func sendFile(c *netFD, r io.Reader) (written int64, err error, handled bool) {
    	var remain int64 = 1<<63 - 1 // by default, copy until EOF
    
    	lr, ok := r.(*io.LimitedReader)
    	if ok {
    		remain, r = lr.N, lr.R
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. src/net/sendfile_windows.go

    // system call to minimize copies.
    //
    // if handled == true, sendFile returns the number of bytes copied and any
    // non-EOF error.
    //
    // if handled == false, sendFile performed no work.
    func sendFile(fd *netFD, r io.Reader) (written int64, err error, handled bool) {
    	var n int64 = 0 // by default, copy until EOF.
    
    	lr, ok := r.(*io.LimitedReader)
    	if ok {
    		n, r = lr.N, lr.R
    		if n <= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/CacheCleanupStrategy.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.cache;
    
    /**
     * Specifies the details of cache cleanup, including the action to be performed and the frequency at which cache cleanup should occur.
     */
    public interface CacheCleanupStrategy {
        CacheCleanupStrategy NO_CLEANUP = new CacheCleanupStrategy() {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:10:33 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top