Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 362 for Usages (0.16 sec)

  1. cmd/main.go

    		Value:  defaultConfigDir.Get(),
    		Usage:  "[DEPRECATED] path to legacy configuration directory",
    		Hidden: true,
    	},
    	cli.StringFlag{
    		Name:  "certs-dir, S",
    		Value: defaultCertsDir.Get(),
    		Usage: "path to certs directory",
    	},
    	cli.BoolFlag{
    		Name:  "quiet",
    		Usage: "disable startup and info messages",
    	},
    	cli.BoolFlag{
    		Name:  "anonymous",
    		Usage: "hide sensitive information from logging",
    	},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

              }
              # To support image builders which cannot do RUN, do the run commands at startup.
              # This exploits the fact the images remove the installer once its installed.
              # This is a horrible idea for production images, but these are just for tests.
              [[ -f /tmp/istio-sidecar.rpm ]] && sudo rpm -vi /tmp/istio-sidecar.rpm && sudo rm /tmp/istio-sidecar.rpm
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/ConfigurationDeprecationType.java

        CONSUMPTION("use attributes to consume", false),
        RESOLUTION("resolve", true),
        ARTIFACT_DECLARATION("use", true);
    
        public final String usage;
        public final boolean inUserCode;
    
        ConfigurationDeprecationType(String usage, boolean inUserCode) {
            this.usage = usage;
            this.inUserCode = inUserCode;
        }
    
        public String displayName() {
            return name().toLowerCase(Locale.ROOT).replace('_', ' ');
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. ci/official/containers/linux_arm64/build.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    
    # Builds the following Docker images for Linux ARM64. See the accompanying
    # Dockerfile for more details:
    # - gcr.io/tensorflow-sigs/build-arm64:jax-latest-multi-python
    # - gcr.io/tensorflow-sigs/build-arm64:tf-latest-multi-python
    
    set -exo pipefail
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 22:33:16 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. src/os/zero_copy_linux.go

    	// Neither copy_file_range(2) nor splice(2) supports destinations opened with
    	// O_APPEND, so don't bother to try zero-copy with these system calls.
    	//
    	// Visit https://man7.org/linux/man-pages/man2/copy_file_range.2.html#ERRORS and
    	// https://man7.org/linux/man-pages/man2/splice.2.html#ERRORS for details.
    	if f.appendMode {
    		return 0, false, nil
    	}
    
    	written, handled, err = f.copyFileRange(r)
    	if handled {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. prow/lib.sh

    function buildx-create() {
      WD=$(dirname "$0")
      WD=$(cd "$WD" || exit; pwd)
      ROOT=$(dirname "$WD")
      "$ROOT/prow/buildx-create"
    }
    
    function build_images() {
      SELECT_TEST="${1}"
    
      # Build just the images needed for tests
      targets="docker.pilot docker.proxyv2 "
    
      # use ubuntu:jammy to test vms by default
      nonDistrolessTargets="docker.app docker.app_sidecar_ubuntu_noble docker.ext-authz "
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. common/scripts/setup_env.sh

      latest="$("${CONTAINER_CLI}" images --filter=reference="${query}" --format "{{.CreatedAt|json}}~{{.Repository}}:{{.Tag}}~{{.CreatedSince}}" | sort -n -r | head -n1)"
      IMG="$(<<<"$latest" cut -d~ -f2)"
      if [[ "${IMG}" == "" ]]; then
        echo "Attempted to use LATEST_CACHED_IMAGE, but found no images matching ${query}" >&2
        exit 1
      fi
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. manifests/addons/dashboards/ztunnel.libsonnet

          panels.timeSeries.base('Ztunnel Versions', queries.istioBuild, 'Version number of each running instance'),
          panels.timeSeries.bytes('Memory Usage', queries.memUsage, 'Memory usage of each running instance'),
          panels.timeSeries.base('CPU Usage', queries.cpuUsage, 'CPU usage of each running instance'),
        ]),
        row.new('Network')
        + row.withPanels([
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. pkg/test/framework/resource/flags.go

    		"Common Container tag to use when deploying container images")
    	flag.StringVar(&settingsFromCommandLine.Image.Variant, "istio.test.variant", settingsFromCommandLine.Image.Variant,
    		"Common Container variant to use when deploying container images")
    	flag.StringVar(&settingsFromCommandLine.Image.PullPolicy, "istio.test.pullpolicy", settingsFromCommandLine.Image.PullPolicy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. build/pause/Makefile

    ARCH ?= amd64
    # Operating systems supported: linux, windows
    OS ?= linux
    # OS Version for the Windows images: 1809, ltsc2022
    OSVERSION ?= 1809 ltsc2022
    
    # The output type could either be docker (local), or registry.
    # If it is registry, it will also allow us to push the Windows images.
    OUTPUT_TYPE ?= docker
    
    ALL_OS = linux windows
    ALL_ARCH.linux = amd64 arm arm64 ppc64le s390x
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 19:31:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top