Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 345 for pending_ (0.8 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/fingerprint/impl/FileCollectionFingerprinterRegistrations.java

                            )
                        )
                    );
                }).collect(toImmutableSet());
        }
    
        /**
         * These fingerprinters are fully sensitive to both line endings and empty directories
         */
        private static List<? extends FileCollectionFingerprinter> fullySensitiveFingerprinters(
            DirectorySensitivity directorySensitivity,
            StringInterner stringInterner,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 29 16:58:45 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  2. pilot/pkg/xds/pushqueue.go

    	shuttingDown bool
    }
    
    func NewPushQueue() *PushQueue {
    	return &PushQueue{
    		pending:    make(map[*Connection]*model.PushRequest),
    		processing: make(map[*Connection]*model.PushRequest),
    		cond:       sync.NewCond(&sync.Mutex{}),
    	}
    }
    
    // Enqueue will mark a proxy as pending a push. If it is already pending, pushInfo will be merged.
    // ServiceEntry updates will be added together, and full will be set if either were full
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 16 01:37:15 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/ready.go

    	for {
    		// r.done() only blocks if state is Pending
    		select {
    		case <-ctx.Done():
    			return 0, ctx.Err()
    		case <-r.done():
    		}
    
    		r.lock.RLock()
    		switch r.state {
    		case Pending:
    			// since we allow to switch between the states Pending and Ready
    			// if there is a quick transition from Pending -> Ready -> Pending
    			// a process that was waiting can get unblocked and see a Pending
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 13:32:11 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/PendingDependenciesVisitor.java

    public interface PendingDependenciesVisitor {
    
        enum PendingState {
            PENDING(true),
            NOT_PENDING(false),
            NOT_PENDING_ACTIVATING(false);
    
            private final boolean pending;
    
            PendingState(boolean pending) {
                this.pending = pending;
            }
    
            boolean isPending() {
                return this.pending;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/DefaultUserInputReader.java

                while (!finished && pending == null) {
                    try {
                        lock.wait();
                    } catch (InterruptedException e) {
                        throw UncheckedException.throwAsUncheckedException(e);
                    }
                }
                if (pending != null) {
                    UserInput result = pending;
                    pending = null;
                    return result;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/collections/SortedSetElementSource.java

        @Override
        public boolean isEmpty() {
            return values.isEmpty() && pending.isEmpty();
        }
    
        @Override
        public boolean constantTimeIsEmpty() {
            return values.isEmpty() && pending.isEmpty();
        }
    
        @Override
        public int size() {
            int pendingSize = 0;
            for (Collectors.TypedCollector<T> collector : pending) {
                pendingSize += collector.size();
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. internal/bucket/replication/datatypes.go

    //go:generate msgp -file=$GOFILE
    
    // StatusType of Replication for x-amz-replication-status header
    type StatusType string
    
    // Type - replication type enum
    type Type int
    
    const (
    	// Pending - replication is pending.
    	Pending StatusType = "PENDING"
    
    	// Completed - replication completed ok.
    	Completed StatusType = "COMPLETED"
    
    	// CompletedLegacy was called "COMPLETE" incorrectly.
    	CompletedLegacy StatusType = "COMPLETE"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 19:08:18 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/PendingDependencies.java

            this.reportActivePending = true;
        }
    
        void registerConstraintProvider(NodeState nodeState) {
            if (hardEdges != 0) {
                throw new IllegalStateException("Cannot add a pending node for a dependency which is not pending");
            }
            constraintProvidingNodes.add(nodeState);
            if (nodeState.getComponent().getModule().isVirtualPlatform()) {
                reportActivePending = false;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. src/strconv/atoc.go

    	// Remove parentheses, if any.
    	if len(s) >= 2 && s[0] == '(' && s[len(s)-1] == ')' {
    		s = s[1 : len(s)-1]
    	}
    
    	var pending error // pending range error, or nil
    
    	// Read real part (possibly imaginary part if followed by 'i').
    	re, n, err := parseFloatPrefix(s, size)
    	if err != nil {
    		err, pending = convErr(err, orig)
    		if err != nil {
    			return 0, err
    		}
    	}
    	s = s[n:]
    
    	// If we have nothing left, we're done.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:26 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DefaultPendingDependenciesVisitor.java

            ModuleResolveState module = resolveState.getModule(key);
            boolean pending = module.isPending();
    
            // Already have a hard dependency, this optional dependency is not pending.
            if (!pending) {
                return PendingState.NOT_PENDING;
            }
    
            // No hard dependency, queue up pending dependency in case we see a hard dependency later.
            module.registerConstraintProvider(node);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top