Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 201 for EntryPoint (1.73 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/bootstrap/EntryPoint.java

     * by subclasses as they define our entry point behaviour, but they are protected to enable
     * testing as it's difficult to test something that will call System.exit().
     */
    public abstract class EntryPoint {
        private final PrintStream originalStdErr = System.err;
    
        /**
         * Unless the createCompleter() method is overridden, the JVM will exit before returning from this method.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. dockerscripts/docker-entrypoint.sh

    Harshavardhana <******@****.***> 1699046298 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Nov 03 21:18:18 UTC 2023
    - 675 bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DynamicCallProblemReporting.kt

         * The [entryPoint] is stored and checked in [leaveDynamicCall] later.
         */
        fun enterDynamicCall(entryPoint: Any)
    
        /**
         * End tracking a dynamic call.
         * The [entryPoint] should match the one passed to [enterDynamicCall].
         */
        fun leaveDynamicCall(entryPoint: Any)
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultInstrumentedGroovyCallsTracker.java

            EntryPointCallSiteImpl entryPoint = new EntryPointCallSiteImpl(callableName, callerClassName, callKind);
            callSiteStack.push(entryPoint);
            return entryPoint;
        }
    
        @Override
        public void leaveCall(EntryPointCallSite entryPoint) {
            if (callSiteStack.isEmpty()) {
                throwMismatchedLeaveCallException(entryPoint);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/rename_entrypoint_to_main.cc

        if (entrypoints.size() == 1) {
          auto entrypoint = entrypoints.begin()->second;
          Builder builder(entrypoint);
          entrypoint.setName(builder.getStringAttr("main"));
          return;
        }
    
        // In case we have more than 1 entry points, choose the one with
        // 'tf.entry_function' attribute set.
        llvm::SmallVector<func::FuncOp, 4> candidate_funcs;
        for (auto& entrypoint : entrypoints) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. Dockerfile.dev

    FROM minio/minio:latest
    
    ENV PATH=/opt/bin:$PATH
    
    COPY ./minio /opt/bin/minio
    COPY dockerscripts/docker-entrypoint.sh /usr/bin/docker-entrypoint.sh
    
    ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]
    
    VOLUME ["/data"]
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 02 16:54:36 UTC 2022
    - 227 bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/FinalizerTaskIntegrationTest.groovy

            }
            2.times {
                fails 'entryPoint', '-PentryPoint.broken', '--continue'
                result.assertTasksExecutedInOrder ':entryPoint', ':finalizerDepDep', ':finalizerDep'
            }
            2.times {
                fails 'entryPoint', '-PfinalizerDepDep.broken'
                result.assertTasksExecutedInOrder ':entryPoint', ':finalizerDepDep'
            }
            2.times {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/configuration/internal/DefaultDynamicCallContextTracker.java

        public void enterDynamicCall(@Nonnull Object entryPoint) {
            currentEntryPointStack().push(entryPoint);
            enterListeners.forEach(listener -> listener.accept(entryPoint));
        }
    
        @Override
        public void leaveDynamicCall(@Nonnull Object entryPoint) {
            Stack<Object> entryPointsStack = currentEntryPointStack();
            Object top = entryPointsStack.peek();
            if (top != entryPoint) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 22:59:41 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/bootstrap/EntryPointTest.groovy

    import org.gradle.api.Action
    
    class EntryPointTest extends Specification {
        final Action<ExecutionListener> action = Mock()
        final ProcessCompleter completer = Mock()
        final EntryPoint entryPoint = new EntryPoint() {
            @Override
            protected ExecutionCompleter createCompleter() {
                return completer
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. Dockerfile

    FROM minio/minio:latest
    
    COPY ./minio /usr/bin/minio
    COPY dockerscripts/docker-entrypoint.sh /usr/bin/docker-entrypoint.sh
    
    ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]
    
    VOLUME ["/data"]
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Oct 28 19:19:49 UTC 2023
    - 202 bytes
    - Viewed (0)
Back to top