Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 598 for Initial (0.37 sec)

  1. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/InputTrackingStateTest.kt

            assertFalse(state.isEnabledForCurrentThread())
            state.restoreForCurrentThread() // Revert <1>
    
            assertTrue(state.isEnabledForCurrentThread())
        }
    
        @Test
        fun `initial restore is an exception`() {
            val state = InputTrackingState()
            try {
                state.restoreForCurrentThread()
                Assert.fail("Exception expected")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. cni/cmd/istio-cni/main.go

    	"istio.io/istio/pkg/log"
    	istioversion "istio.io/istio/pkg/version"
    )
    
    func main() {
    	if err := runPlugin(); err != nil {
    		os.Exit(1)
    	}
    }
    
    func runPlugin() error {
    	// Setup initial logging now. We will override it with proper logging over UDS later, but at this point we don't have the config
    	// read yet and do not want to be completely blind to logs.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/interfaces.go

    	Hooks() []H
    
    	// Run the source. This method should be called only once at startup.
    	Run(ctx context.Context) error
    
    	// HasSynced returns true if the source has completed its initial sync.
    	HasSynced() bool
    }
    
    // Dispatcher dispatches evaluates an admission request against the currently
    // active hooks returned by the source.
    type Dispatcher[H Hook] interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 21:06:39 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/informers.go

    // (as per control plane annotation)
    // Note that this is not the same thing as SHOULD be enabled or WILL be enabled.
    // This is only used for building the initial snapshot ATM.
    func (s *InformerHandlers) GetActiveAmbientPodSnapshot() []*corev1.Pod {
    	var pods []*corev1.Pod
    	for _, pod := range s.pods.List(metav1.NamespaceAll, klabels.Everything()) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/internal/types/testdata/fixedbugs/issue6977.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    import "io"
    
    // Alan's initial report.
    
    type I interface { f(); String() string }
    type J interface { g(); String() string }
    
    type IJ1 = interface { I; J }
    type IJ2 = interface { f(); g(); String() string }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:04:33 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top