Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 229 for entry_point (0.28 sec)

  1. Dockerfile.hotfix

    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.8K bytes
    - Viewed (1)
  2. Dockerfile.release

    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: Fri Mar 29 19:10:49 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. Dockerfile.release.old_cpu

    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.8K bytes
    - Viewed (0)
  4. samples/bookinfo/src/mongodb/Dockerfile

    #   limitations under the License.
    
    FROM mongo:7.0.5
    WORKDIR /app/data/
    COPY ratings_data.json /app/data/
    COPY script.sh /docker-entrypoint-initdb.d/
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 756 bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/TrackingDynamicLookupRoutine.kt

                receiver.tryGetProperty(name)
            }
    
        private
        fun <T> withDynamicCall(entryPoint: Any, action: () -> T): T =
            try {
                dynamicCallContextTracker.enterDynamicCall(entryPoint)
                action()
            } finally {
                dynamicCallContextTracker.leaveDynamicCall(entryPoint)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. guava-gwt/test/com/google/common/GuavaTestsEntryPoint.java

     * limitations under the License.
     */
    
    package com.google.common;
    
    import com.google.gwt.core.client.EntryPoint;
    
    /**
     * A dummy entry point for our tests.
     *
     * @author Chris Povirk
     */
    public class GuavaTestsEntryPoint implements EntryPoint {
      @Override public void onModuleLoad() {
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 15 16:01:39 UTC 2013
    - 855 bytes
    - Viewed (0)
  7. tools/docker-builder/dockerfile/parse.go

    			src := s.Expand(c.Value[0])
    			dst := s.Expand(c.Value[1])
    			s.copies[dst] = src
    		case "USER":
    			s.user = c.Value[0]
    		case "ENTRYPOINT":
    			s.entrypoint = c.Value
    		case "CMD":
    			s.cmd = c.Value
    		case "LABEL":
    			k := s.Expand(c.Value[0])
    			v := s.Expand(c.Value[1])
    			s.labels[k] = v
    		case "ENV":
    			k := s.Expand(c.Value[0])
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/Main.java

    import org.gradle.launcher.bootstrap.CommandLineActionFactory;
    import org.gradle.launcher.bootstrap.EntryPoint;
    import org.gradle.launcher.bootstrap.ExecutionListener;
    import org.gradle.launcher.cli.DefaultCommandLineActionFactory;
    
    import java.util.Arrays;
    
    /**
     * The main command-line entry-point for Gradle.
     */
    public class Main extends EntryPoint {
        public static void main(String[] args) {
            new Main().run(args);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/classpath/PerThreadInstrumentedGroovyCallsTracker.java

            return perThreadImplementation.get().enterCall(callerClassName, callableName, callKind);
        }
    
        @Override
        public void leaveCall(EntryPointCallSite entryPoint) {
            perThreadImplementation.get().leaveCall(entryPoint);
        }
    
        @Nullable
        @Override
        public String findCallerForCurrentCallIfNotIntercepted(String callableName, CallKind kind) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:59 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. pkg/test/fakes/imageregistry/Dockerfile

    FROM scratch
    ARG TARGETARCH
    COPY main-${TARGETARCH:-amd64}  /registry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 17 16:29:18 UTC 2022
    - 95 bytes
    - Viewed (0)
Back to top