Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for isExecute (0.14 sec)

  1. okhttp/src/test/java/okhttp3/DispatcherTest.kt

        assertThat(dispatcher.queuedCalls()).isEmpty()
        assertThat(a1.isExecuted()).isTrue()
        assertThat(a1.isCanceled()).isFalse()
        assertThat(a2.isExecuted()).isTrue()
        assertThat(a2.isCanceled()).isTrue()
        assertThat(a3.isExecuted()).isFalse()
        assertThat(a3.isCanceled()).isTrue()
        assertThat(a4.isExecuted()).isFalse()
        assertThat(a4.isCanceled()).isFalse()
      }
    
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Apr 05 03:30:42 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildWorkGraphController.java

                        }
                        taskNode = taskNodeFactory.getOrCreateNode(task);
                    }
                    if (taskNode.isExecuted() && taskNode.isSuccessful()) {
                        return IncludedBuildTaskResource.State.Success;
                    } else if (taskNode.isExecuted()) {
                        return IncludedBuildTaskResource.State.Failed;
                    } else if (taskNode.isComplete()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 31 05:15:28 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/plan/FinalizerGroup.java

                for (Node node : nodes) {
                    if (!node.isComplete()) {
                        return Node.DependenciesState.NOT_COMPLETE;
                    }
                    isAnyExecuted |= node.isExecuted();
                }
                // All relevant finalized nodes have completed
                if (isAnyExecuted) {
                    return Node.DependenciesState.COMPLETE_AND_SUCCESSFUL;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jul 01 16:25:48 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/connection/RealCall.kt

        check(executed.compareAndSet(false, true)) { "Already Executed" }
    
        callStart()
        client.dispatcher.enqueue(AsyncCall(responseCallback))
      }
    
      override fun isExecuted(): Boolean = executed.get()
    
      private fun callStart() {
        this.callStackTrace = Platform.get().getStackTraceForCloseable("response.body().close()")
        eventListener.callStart(this)
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/Node.java

        }
    
        public boolean isFailed() {
            return getNodeFailure() != null || getExecutionFailure() != null;
        }
    
        public boolean isExecuted() {
            return state == ExecutionState.EXECUTED;
        }
    
        /**
         * Returns true when this node should be executed as soon as its dependencies are ready, rather than at its default point in
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 24 13:30:48 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultFinalizedExecutionPlan.java

        private void recordNodeExecutionStarted(Node node) {
            runningNodes.add(node);
        }
    
        private void recordNodeCompleted(Node node) {
            LOGGER.debug("Node {} completed, executed: {}", node, node.isExecuted());
            waitingToStartNodes.remove(node);
            if (continueOnFailure && !node.allDependenciesComplete()) {
                // Wait for any dependencies of this node that have not started yet
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 28 21:49:39 UTC 2022
    - 28.1K bytes
    - Viewed (0)
  7. docs/changelogs/changelog_2x.md

     *  Fix: Drop the synthetic `OkHttp-Selected-Protocol` response header.
     *  Fix: Support 204 and 205 'No Content' replies in the logging interceptor.
     *  New: Add `Call.isExecuted()`.
    
    
    ## Version 2.6.0
    
    _2015-11-22_
    
     *  **New Logging Interceptor.** The `logging-interceptor` subproject offers
        simple request and response logging. It may be configured to log headers and
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/KotlinSourceModernTest.kt

            override fun execute(): Response = TODO()
    
            override fun enqueue(responseCallback: Callback) = TODO()
    
            override fun cancel() = TODO()
    
            override fun isExecuted(): Boolean = TODO()
    
            override fun isCanceled(): Boolean = TODO()
    
            override fun timeout(): Timeout = TODO()
    
            override fun clone(): Call = TODO()
          }
      }
    
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 46.5K bytes
    - Viewed (0)
Back to top