Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 229 for entry_point (0.56 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentedGroovyCallsHelper.java

            InstrumentedGroovyCallsTracker.EntryPointCallSite entryPoint = INSTANCE.enterCall(consumerClass, callableName, kind);
            try {
                return callable.call();
            } finally {
                INSTANCE.leaveCall(entryPoint);
            }
        }
    
        @NonNullApi
        public interface ThrowingCallable<T> {
            @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:59 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. tools/docker-builder/builder/crane.go

    			cfg.Env = append(cfg.Env, fmt.Sprintf("%v=%v", k, v))
    		}
    		if args.User != "" {
    			cfg.User = args.User
    		}
    		if len(args.Entrypoint) > 0 {
    			cfg.Entrypoint = args.Entrypoint
    			cfg.Cmd = nil
    		}
    		if len(args.Cmd) > 0 {
    			cfg.Cmd = args.Cmd
    			cfg.Entrypoint = nil
    		}
    		if args.WorkDir != "" {
    			cfg.WorkingDir = args.WorkDir
    		}
    		if len(args.Labels) > 0 && cfg.Labels == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/ConsumerOperationParameters.java

            @Nullable
            private StreamedValueListener streamedValueListener;
    
            private Builder() {
            }
    
            public Builder setEntryPoint(String entryPoint) {
                this.entryPoint = entryPoint;
                return this;
            }
    
            public Builder setParameters(ConnectionParameters parameters) {
                this.parameters = parameters;
                return this;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:46:37 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/LibrariesSourceGenerator.java

                writeLn();
                writeLibraryAccessors(entryPoints.librariesEntryPoint, deprecated);
                writeVersionAccessors(entryPoints.versionsEntryPoint);
                writeBundleAccessors(entryPoints.bundlesEntryPoint, deprecated);
                writePluginAccessors(entryPoints.pluginsEntryPoint);
                writeLibrarySubClasses(entryPoints.librariesEntryPoint, deprecated);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 36K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/npx

    # license that can be found in the LICENSE file.
    
    docker run \
      --rm \
      --volume $(pwd):/workspace \
      --workdir /workspace \
      --env NODE_OPTIONS="--dns-result-order=ipv4first" \
      --entrypoint npx \
      node:18.16.0-slim \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 349 bytes
    - Viewed (0)
  6. pkg/scheduler/scheduler_test.go

    			var registerPluginFuncs []tf.RegisterPluginFunc
    			for name, entrypoint := range tt.entrypoints {
    				registerPluginFuncs = append(registerPluginFuncs,
    					// anything supported by TestPlugin is fine
    					tf.RegisterFilterPlugin(name, entrypoint),
    				)
    			}
    			// we always need this
    			registerPluginFuncs = append(registerPluginFuncs,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 42K bytes
    - Viewed (0)
  7. samples/extauthz/docker/Dockerfile

    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION}
    
    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/extauthz /usr/local/bin/extauthz
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 19 15:53:08 UTC 2022
    - 234 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/dsl/org.gradle.api.reporting.DirectoryReport.xml

            <title>Properties</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>entryPoint</td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 517 bytes
    - Viewed (0)
  9. cluster/images/etcd/cloudbuild.yaml

    options:
      substitution_option: ALLOW_LOOSE
      machineType: 'N1_HIGHCPU_8'
    steps:
      - name: 'gcr.io/k8s-staging-test-infra/gcb-docker-gcloud:v20240523-a15ad90fc9@sha256:bb04162508c2c61637eae700a0d8e8c8be8f2d4c831d2b75e59db2d4dd6cf75d'
        entrypoint: 'bash'
        dir: ./cluster/images/etcd
        env:
          - DOCKER_CLI_EXPERIMENTAL=enabled
          - REGISTRY=gcr.io/$PROJECT_ID
          - PUSH_REGISTRY=gcr.io/$PROJECT_ID
          - IMAGE=gcr.io/$PROJECT_ID/etcd
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 20:51:40 UTC 2024
    - 929 bytes
    - Viewed (0)
  10. istioctl/docker/Dockerfile.istioctl

    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION}
    USER 1000:1000
    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/istioctl /usr/local/bin/istioctl
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 19 15:53:08 UTC 2022
    - 305 bytes
    - Viewed (0)
Back to top