Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 229 for entry_point (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. subprojects/core/src/main/java/org/gradle/configuration/internal/DynamicCallContextTracker.java

         * The tracker itself notifies all the registered listeners.
         *
         * @param entryPoint the key to identify the dynamic call
         */
        void enterDynamicCall(Object entryPoint);
    
        /**
         * Notifies the tracker that the dynamic call ended.
         * The tracker itself notifies all the registered listeners.
         *
         * @param entryPoint the key identifying the dynamic call, should match the key passed to {@code enterDynamicCall}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:19 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. Dockerfile.release.fips

    COPY --from=build /go/bin/cur* /usr/bin/
    
    COPY CREDITS /licenses/CREDITS
    COPY LICENSE /licenses/LICENSE
    COPY dockerscripts/docker-entrypoint.sh /usr/bin/docker-entrypoint.sh
    
    EXPOSE 9000
    VOLUME ["/data"]
    
    ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 30 09:41:56 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            TaskInternal entryPoint = task("entryPoint", type: Async, finalizedBy: [finalizer])
            relationships(finalizer, dependsOn: [finalizerDep, entryPoint])
    
            when:
            addToGraphAndPopulate(entryPoint)
    
            then:
            executionPlan.tasks as List == [entryPoint, finalizerDep, finalizer]
            assertTaskReady(entryPoint)
            assertTaskReady(finalizerDep)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-process-services/src/main/java/org/gradle/launcher/bootstrap/ProcessBootstrap.java

            try {
                Class<?> mainClass = runtimeClassLoader.loadClass(mainClassName);
                Object entryPoint = mainClass.getConstructor().newInstance();
                Method mainMethod = mainClass.getMethod("run", String[].class);
                mainMethod.invoke(entryPoint, new Object[]{args});
            } finally {
                Thread.currentThread().setContextClassLoader(oldClassLoader);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. guava-gwt/src/com/google/common/ForceGuavaCompilationEntryPoint.java

     * limitations under the License.
     */
    
    package com.google.common;
    
    import com.google.gwt.core.client.EntryPoint;
    
    /**
     * A dummy entry point to convince Maven to compile our classes.
     *
     * @author Chris Povirk
     */
    public class ForceGuavaCompilationEntryPoint implements EntryPoint {
      @Override public void onModuleLoad() {
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 05 21:14:56 UTC 2012
    - 893 bytes
    - Viewed (0)
Back to top