Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 290 for chanlen (0.25 sec)

  1. docs/bucket/notifications/README.md

    import pika
    
    connection = pika.BlockingConnection(pika.ConnectionParameters(
            host='localhost'))
    channel = connection.channel()
    
    channel.exchange_declare(exchange='bucketevents',
                             exchange_type='fanout')
    
    result = channel.queue_declare(exclusive=False)
    queue_name = result.method.queue
    
    channel.queue_bind(exchange='bucketevents',
                       queue=queue_name)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"resourceVersion":            "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_container.go

    			if types.IsRestartableInitContainer(container) {
    				changes.InitContainersToStart = append(changes.InitContainersToStart, i)
    			} else { // init container
    				if isInitContainerFailed(status) {
    					if !restartOnFailure {
    						changes.KillPod = true
    						changes.InitContainersToStart = nil
    						return false
    					}
    					changes.InitContainersToStart = append(changes.InitContainersToStart, i)
    					break
    				}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Before using a configuration cache entry, Gradle checks that none of the "build configuration inputs", such as build scripts, for the entry have changed.
    If a build configuration input has changed, Gradle will not use the entry and will run the configuration phase again as above, saving the result for later reuse.
    
    Build configuration inputs include:
    
    - Init scripts
    - Settings scripts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  5. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional int64 observedGeneration = 3;
    
      // lastTransitionTime is the last time the condition transitioned from one status to another.
      // This should be when the underlying condition changed.  If that is not known, then using the time when the API field changed is acceptable.
      // +required
      // +kubebuilder:validation:Required
      // +kubebuilder:validation:Type=string
      // +kubebuilder:validation:Format=date-time
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional int64 observedGeneration = 3;
    
      // lastTransitionTime is the last time the condition transitioned from one status to another.
      // This should be when the underlying condition changed.  If that is not known, then using the time when the API field changed is acceptable.
      // +required
      // +kubebuilder:validation:Required
      // +kubebuilder:validation:Type=string
      // +kubebuilder:validation:Format=date-time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/load.go

    			// set of root packages does not change then we can select the correct
    			// versions of all transitive imports on the first try and complete
    			// loading in a single iteration.
    			changedBuildList := ld.preloadRootModules(ctx, rootPkgs)
    			if changedBuildList {
    				// The build list has changed, so the set of root packages may have also
    				// changed. Start over to pick up the changes. (Preloading roots is much
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            // revisit all dependencies and possibly change the classpath order!
            boolean sameDependencies = dependencies(newResolutionFilter).equals(oldStates);
            if (sameDependencies) {
                // While there will be no change to this node, there might be changes to the nodes it brings as the exclude change could concern them
                for (EdgeState outgoingEdge : outgoingEdges) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

     * that it can be marshalled and unmarshalled without being tainted by runtime requirements.
     * </p>
     * <p>
     * With changes during 3.2.2 release MavenProject is closer to being immutable after construction with the removal of
     * all components from this class, and the upfront construction taken care of entirely by the {@link ProjectBuilder}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  10. pkg/kubelet/pod_workers.go

    	podsSynced bool
    
    	// Tracks all running per-pod goroutines - per-pod goroutine will be
    	// processing updates received through its corresponding channel. Sending
    	// a message on this channel will signal the corresponding goroutine to
    	// consume podSyncStatuses[uid].pendingUpdate if set.
    	podUpdates map[types.UID]chan struct{}
    	// Tracks by UID the termination status of a pod - syncing, terminating,
    	// terminated, and evicted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
Back to top