Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 210 for notified (0.56 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/DefaultValueSourceProviderFactoryTest.groovy

            provider.get()
    
            then: "beforeValueObtained callback is notified"
            1 * computationListener.beforeValueObtained()
    
            then: "afterValueObtained callback is notified"
            1 * computationListener.afterValueObtained()
    
            then: "valueObtained is notified"
            obtainedValues.size() == 1
            obtainedValues[0].valueSourceType == EchoValueSource
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:25 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/pod_test.go

    		t.Error(err)
    	}
    	if handled != 0 {
    		t.Errorf("notified workload handler %d times, want %d", handled, 0)
    	}
    
    	if err := f(nil, &v1.Pod{ObjectMeta: pod1, Status: v1.PodStatus{Conditions: readyCondition, PodIP: ip, Phase: v1.PodPending}}, model.EventUpdate); err != nil {
    		t.Error(err)
    	}
    	if handled != 1 {
    		t.Errorf("notified workload handler %d times, want %d", handled, 1)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 18:27:40 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. src/runtime/sema.go

    	lockWithRank(&l.lock, lockRankNotifyList)
    	s := l.head
    	l.head = nil
    	l.tail = nil
    
    	// Update the next ticket to be notified. We can set it to the current
    	// value of wait because any previous waiters are already in the list
    	// or will notice that they have already been notified when trying to
    	// add themselves to the list.
    	atomic.Store(&l.notify, l.wait.Load())
    	unlock(&l.lock)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. okhttp-testing-support/src/main/kotlin/okhttp3/internal/concurrent/TaskFaker.kt

              nanos: Long,
            ) {
              taskRunner.assertThreadHoldsLock()
              check(waitingCoordinatorTask == null)
              if (nanos == 0L) return
    
              // Yield until notified, interrupted, or the duration elapses.
              val waitUntil = nanoTime + nanos
              val self = currentTask
              waitingCoordinatorTask = self
              waitingCoordinatorNotified = false
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. pkg/kubelet/certificate/kubelet.go

    	keyFile                   string
    	dynamicCertificateContent *dynamiccertificates.DynamicCertKeyPairContent
    	currentTLSCertificate     atomic.Pointer[tls.Certificate]
    }
    
    // Enqueue implements the functions to be notified when the serving cert content changes.
    func (m *kubeletServerCertificateDynamicFileManager) Enqueue() {
    	certContent, keyContent := m.dynamicCertificateContent.CurrentCertKeyContent()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptEvaluator.kt

                }
    
            @Synchronized
            override fun onReuse() {
                scope?.let {
                    // Recreate the script scope and ClassLoader, so that things that use scopes are notified that the scope exists
                    it.onReuse()
                    require(loadedClass!!.classLoader == it.localClassLoader)
                }
            }
    
            private
            fun prepareClassLoaderScope() =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildLifecycleController.java

                return ExecutionResult.maybeFailing(() -> buildListener.buildFinished(buildResult));
            });
        }
    
        /**
         * <p>Adds a listener to this build instance. The listener is notified of events which occur during the execution of the build.
         * See {@link org.gradle.api.invocation.Gradle#addListener(Object)} for supported listener types.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/DefaultScriptCompilationHandler.java

            }
    
            @Override
            public void onReuse() {
                if (scriptClass != null) {
                    // Recreate the script scope and ClassLoader, so that things that use scopes are notified that the scope exists
                    scope.onReuse();
                    assert scriptClass.getClassLoader() == scope.getLocalClassLoader();
                }
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/etcd/local.go

    }
    
    // CreateStackedEtcdStaticPodManifestFile will write local etcd static pod manifest file
    // for an additional etcd member that is joining an existing local/stacked etcd cluster.
    // Other members of the etcd cluster will be notified of the joining node in beforehand as well.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 13.8K bytes
    - Viewed (1)
  10. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingProperties.java

    /**
     * A wrapper for {@link Properties} that notifies a listener about accesses.
     */
    @SuppressWarnings("UnsynchronizedOverridesSynchronized")
    // TODO(mlopatkin) we need a better synchronization guarantees here. Just sprinkling synchronized won't help.
    public class AccessTrackingProperties extends Properties {
        /**
         * A listener that is notified about reads and modifications of the Properties instance.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:51 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top