Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 724 for transfer (0.2 sec)

  1. maven-core/src/main/resources/META-INF/maven/extension.xml

        <exportedPackage>org.eclipse.aether.resolution</exportedPackage>
        <exportedPackage>org.eclipse.aether.spi</exportedPackage>
        <exportedPackage>org.eclipse.aether.transfer</exportedPackage>
        <exportedPackage>org.eclipse.aether.transform</exportedPackage>
        <exportedPackage>org.eclipse.aether.version</exportedPackage>
        <exportedPackage>org.eclipse.aether.util</exportedPackage>
    
        <!-- plexus-classworlds -->
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 08 10:37:09 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/locklistener/DefaultFileLockContentionHandler.java

    import java.util.function.Consumer;
    
    import static org.gradle.cache.internal.locklistener.FileLockPacketType.LOCK_RELEASE_CONFIRMATION;
    
    /**
     * The contention handler is responsible for negotiating the transfer of a lock from one process to another.
     * Several processes might request the same lock at the same time. In such a situation, there is:
     * <ul>
     *     <li>One Lock Holder</li>
     *     <li>One or more Lock Requester</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. src/encoding/gob/codec_test.go

    	}
    
    	// Now transfer t0 into t1
    	t0 = T0{17, 177, 1777, 17777}
    	b.Reset()
    	enc.Encode(t0)
    	t1 = T1{}
    	dec.Decode(&t1)
    	if t1.A != 17 || *t1.B != 177 || **t1.C != 1777 || ***t1.D != 17777 {
    		t.Errorf("t0->t1 expected {17 177 1777 17777}; got {%d %d %d %d}", t1.A, *t1.B, **t1.C, ***t1.D)
    	}
    
    	// Now transfer t0 into t2
    	b.Reset()
    	enc.Encode(t0)
    	t2 = T2{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 19 23:03:14 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultArtifactDescriptorReader.java

    import org.eclipse.aether.resolution.VersionRequest;
    import org.eclipse.aether.resolution.VersionResolutionException;
    import org.eclipse.aether.resolution.VersionResult;
    import org.eclipse.aether.transfer.ArtifactNotFoundException;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    /**
     * Default artifact descriptor reader.
     */
    @Named
    @Singleton
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/http/RetryAndFollowUpInterceptor.kt

          } else {
            val requestBody = if (maintainBody) userResponse.request.body else null
            requestBuilder.method(method, requestBody)
          }
          if (!maintainBody) {
            requestBuilder.removeHeader("Transfer-Encoding")
            requestBuilder.removeHeader("Content-Length")
            requestBuilder.removeHeader("Content-Type")
          }
        }
    
        // When redirecting across hosts, drop all authentication headers. This
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:24:48 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/wrapper-main/src/executable/resources/META-INF/LICENSE

          worldwide, non-exclusive, no-charge, royalty-free, irrevocable
          (except as stated in this section) patent license to make, have made,
          use, offer to sell, sell, import, and otherwise transfer the Work,
          where such license applies only to those patent claims licensable
          by such Contributor that are necessarily infringed by their
          Contribution(s) alone or by combination of their Contribution(s)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. licenses/github.com/spf13/cobra/LICENSE.txt

          worldwide, non-exclusive, no-charge, royalty-free, irrevocable
          (except as stated in this section) patent license to make, have made,
          use, offer to sell, sell, import, and otherwise transfer the Work,
          where such license applies only to those patent claims licensable
          by such Contributor that are necessarily infringed by their
          Contribution(s) alone or by combination of their Contribution(s)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 26 02:47:39 UTC 2019
    - 9.9K bytes
    - Viewed (0)
  8. pkg/kubelet/preemption/preemption.go

    			if dist < bestDistance || (bestDistance == dist && smallerResourceRequest(pod, pods[bestPodIndex])) {
    				bestDistance = dist
    				bestPodIndex = i
    			}
    		}
    		// subtract the pod from requirements, and transfer the pod from input-pods to pods-to-evicted
    		requirements = requirements.subtract(pods[bestPodIndex])
    		podsToEvict = append(podsToEvict, pods[bestPodIndex])
    		pods[bestPodIndex] = pods[len(pods)-1]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 16:53:19 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  9. tensorflow/c/eager/immediate_execution_context.h

      // Configure graph collection in RunMetadata.
      virtual void SetShouldStoreGraphs(bool value) = 0;
    
      // Return the collected RunMetadata. This method will transfer the ownership
      // to the caller.
      virtual std::unique_ptr<RunMetadata> ExportRunMetadata() = 0;
    
      // For LLVM style RTTI.
      static bool classof(const AbstractContext* ptr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 08:34:00 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  10. src/net/http/fcgi/child.go

    		return
    	}
    	r.wroteHeader = true
    	r.code = code
    	if code == http.StatusNotModified {
    		// Must not have body.
    		r.header.Del("Content-Type")
    		r.header.Del("Content-Length")
    		r.header.Del("Transfer-Encoding")
    	}
    	if r.header.Get("Date") == "" {
    		r.header.Set("Date", time.Now().UTC().Format(http.TimeFormat))
    	}
    }
    
    // writeCGIHeader finalizes the header sent to the client and writes it to the output.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top