Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 816 for Initial (0.19 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ErrorHandlingModuleComponentRepository.java

            private final static String MAX_TENTATIVES_BEFORE_DISABLING = "org.gradle.internal.repository.max.tentatives";
            private final static String INITIAL_BACKOFF_MS = "org.gradle.internal.repository.initial.backoff";
    
            private final ModuleComponentRepositoryAccess<ModuleComponentGraphResolveState> delegate;
            private final String repositoryId;
            private final RepositoryDisabler repositoryDisabler;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. src/runtime/sys_windows_386.s

    TEXT tstart<>(SB),NOSPLIT,$8-4
    	MOVL	newm+0(FP), CX		// m
    	MOVL	m_g0(CX), DX		// g
    
    	// Layout new m scheduler stack on os stack.
    	MOVL	SP, AX
    	MOVL	AX, (g_stack+stack_hi)(DX)
    	SUBL	$(64*1024), AX		// initial stack size (adjusted later)
    	MOVL	AX, (g_stack+stack_lo)(DX)
    	ADDL	$const_stackGuard, AX
    	MOVL	AX, g_stackguard0(DX)
    	MOVL	AX, g_stackguard1(DX)
    
    	// Set up tls.
    	LEAL	m_tls(CX), DI
    	MOVL	CX, g_m(DX)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. src/crypto/tls/quic.go

    	// QUICSetReadSecret and QUICSetWriteSecret provide the read and write
    	// secrets for a given encryption level.
    	// QUICEvent.Level, QUICEvent.Data, and QUICEvent.Suite are set.
    	//
    	// Secrets for the Initial encryption level are derived from the initial
    	// destination connection ID, and are not provided by the QUICConn.
    	QUICSetReadSecret
    	QUICSetWriteSecret
    
    	// QUICWriteData provides data to send to the peer in CRYPTO frames.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTracker.kt

        private
        inner class ModeHolder {
            // ModeHolder encapsulates concurrent mode updates.
            private
            var mode: TrackerMode = Initial()
    
            private
            inline fun <T : TrackerMode> setMode(transition: (TrackerMode) -> T): T {
                synchronized(this) {
                    val newMode = transition(mode)
                    mode = newMode
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/doc.go

    // dispatch based on an initial guess at the request’s service time
    // (duration) and then make the corresponding adjustments once the
    // request’s actual service time is known. This is similar, although
    // not exactly isomorphic, to the original paper’s adjustment by
    // `$\delta$` for the sake of promptness.
    //
    // For implementation simplicity (see below), let us use the same
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 12:33:30 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/get_issue53955.txt

    env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL
    
    exec git init
    
    env GIT_COMMITTER_DATE=2022-07-19T11:07:00-04:00
    env GIT_AUTHOR_DATE=2022-07-19T11:07:00-04:00
    exec git add go.mod issue53955.go
    exec git commit -m 'initial commit'
    exec git branch -m main
    exec git tag v1.0.9
    
    env GIT_COMMITTER_DATE=2022-07-19T11:07:01-04:00
    env GIT_AUTHOR_DATE=2022-07-19T11:07:01-04:00
    exec git add extra.go
    exec git commit -m 'next commit'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonJvmSettingsIntegrationTest.groovy

                println "GRADLE_VERSION: " + gradle.gradleVersion
    
                task verify {
                    doFirst {
                        MemoryMXBean memBean = ManagementFactory.getMemoryMXBean()
                        println "Initial Heap: " + memBean.heapMemoryUsage.init
                        assert memBean.heapMemoryUsage.init == 256 * 1024 * 1024
                        println "    Max Heap: " + memBean.heapMemoryUsage.max
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Automated.h

     *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    /*
     *  Automated Interface (generates HTML Report Files).
     *
     *  Feb 2002      Initial implementation (AK)
     *
     *  13-Feb-2002   Single interface to automated_run_tests. (AK)
     *
     *  20-Jul-2004   New interface, doxygen comments. (JDS)
     */
    
    /** @file
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/fixture/TestNGCoverage.groovy

        private static final String FIXED_ILLEGAL_ACCESS = '5.14.6' // Oldest version to support JDK 16+ without explicit --add-opens
    
        private static final String BROKEN_ICLASS_LISTENER = '6.9.10' // Introduces initial, buggy IClassListener
        private static final String FIXED_ICLASS_LISTENER = '6.9.13.3' // Introduces fixed IClassListener
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/LinkedHashMultiset.java

    @ElementTypesAreNonnullByDefault
    public final class LinkedHashMultiset<E extends @Nullable Object>
        extends AbstractMapBasedMultiset<E> {
    
      /** Creates a new, empty {@code LinkedHashMultiset} using the default initial capacity. */
      public static <E extends @Nullable Object> LinkedHashMultiset<E> create() {
        return create(ObjectCountHashMap.DEFAULT_SIZE);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top