Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,000 for pending_ (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. cmd/bucket-replication-utils_test.go

    		rs:        ReplicationState{ReplicationStatusInternal: "arn1=PENDING;", Targets: map[string]replication.StatusType{"arn1": "PENDING"}},
    		expStatus: replication.Pending,
    	},
    	{ // 3. replication status for one target - incorrect format
    		name:      "replication status for one target",
    		rs:        ReplicationState{ReplicationStatusInternal: "arn1=PENDING"},
    		expStatus: replication.StatusType(""),
    	},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 08 20:27:40 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  9. src/net/rpc/jsonrpc/client.go

    	// JSON-RPC responses include the request id but not the request method.
    	// Package rpc expects both.
    	// We save the request method in pending when sending a request
    	// and then look it up by request ID when filling out the rpc Response.
    	mutex   sync.Mutex        // protects pending
    	pending map[uint64]string // map request id to method name
    }
    
    // NewClientCodec returns a new [rpc.ClientCodec] using JSON-RPC on conn.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-application/src/test/groovy/org/gradle/api/internal/plugins/WindowsStartScriptGeneratorTest.groovy

            def windowsLineEndings = scriptText.split(TextUtil.windowsLineSeparator).length
    
            // Windows line endings are made up of two characters,
            // we should see an equal number of lines unless
            // the generator is using the wrong line ending entirely
            // or has generated some lines with one or the other character
            carriageLineEndings == newlineEndings
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top