Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for space (0.16 sec)

  1. licenses/github.com/cespare/xxhash/v2/LICENSE.txt

    Copyright (c) 2016 Caleb Spare
    
    MIT License
    
    Permission is hereby granted, free of charge, to any person obtaining
    a copy of this software and associated documentation files (the
    "Software"), to deal in the Software without restriction, including
    without limitation the rights to use, copy, modify, merge, publish,
    distribute, sublicense, and/or sell copies of the Software, and to
    permit persons to whom the Software is furnished to do so, subject to
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Jul 21 18:11:13 GMT 2020
    - 1K bytes
    - Viewed (0)
  2. cni/pkg/repair/repair_test.go

    			},
    			makeDetectPod(
    				"TerminationMessageMatchTrue",
    				"Termination Message",
    				0),
    			true,
    		},
    		{
    			"Check termination message match true for trailing and leading space",
    			config.RepairConfig{
    				SidecarAnnotation:  "sidecar.istio.io/status",
    				InitContainerName:  constants.ValidationContainerName,
    				InitTerminationMsg: "            Termination Message",
    			},
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Oct 24 03:31:28 GMT 2023
    - 10.6K bytes
    - Viewed (0)
  3. common/config/sass-lint.yml

      pseudo-element: 2
      quotes:
        - 2
        -
          style: double
      shorthand-values: 2
      single-line-per-selector: 0
      space-after-bang: 2
      space-after-colon: 2
      space-after-comma: 2
      space-around-operator: 2
      space-before-bang: 2
      space-before-brace: 2
      space-before-colon: 2
      space-between-parens: 2
      trailing-semicolon: 2
      url-quotes: 2
      variable-for-property:
        - 0
        -
          properties:
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Sep 11 23:32:21 GMT 2019
    - 2K bytes
    - Viewed (0)
  4. common/scripts/metallb-native.yaml

                          secret resource.
                        type: string
                      namespace:
                        description: namespace defines the space within which the secret
                          name must be unique.
                        type: string
                    type: object
                    x-kubernetes-map-type: atomic
                  peerASN:
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Feb 23 23:56:31 GMT 2024
    - 63.9K bytes
    - Viewed (0)
  5. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency
      // +optional
      optional string generateName = 2;
    
      // Namespace defines the space within which each name must be unique. An empty namespace is
      // equivalent to the "default" namespace, but "default" is the canonical representation.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 53.3K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/core/v1/generated.proto

    // +structType=atomic
    message SecretReference {
      // name is unique within a namespace to reference a secret resource.
      // +optional
      optional string name = 1;
    
      // namespace defines the space within which the secret name must be unique.
      // +optional
      optional string namespace = 2;
    }
    
    // Adapts a Secret into a volume.
    //
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  7. common/scripts/tracing.sh

      else
        # Postsubmit or periodic
        url="https://prow.istio.io/view/gs/istio-prow/pr-logs/${JOB_NAME}/${BUILD_ID},"
      fi
      # Use printf instead of echo to avoid spaces between args
      printf '%s' "ci.pipeline.id=${JOB_NAME},"\
        "ci.pipeline.type=${JOB_TYPE},"\
        "ci.pipeline.run.url=${url}"\
        "ci.pipeline.run.number=${BUILD_ID},"\
        "ci.pipeline.run.id=${PROW_JOB_ID},"\
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jul 28 15:25:47 GMT 2023
    - 4.1K bytes
    - Viewed (0)
  8. common/scripts/gobuild.sh

    GOBINARY=${GOBINARY:-go}
    GOPKG="$GOPATH/pkg"
    BUILDINFO=${BUILDINFO:-""}
    STATIC=${STATIC:-1}
    LDFLAGS=${LDFLAGS:--extldflags -static}
    GOBUILDFLAGS=${GOBUILDFLAGS:-""}
    # Split GOBUILDFLAGS by spaces into an array called GOBUILDFLAGS_ARRAY.
    IFS=' ' read -r -a GOBUILDFLAGS_ARRAY <<< "$GOBUILDFLAGS"
    
    GCFLAGS=${GCFLAGS:-}
    export CGO_ENABLED=${CGO_ENABLED:-0}
    
    if [[ "${STATIC}" !=  "1" ]];then
        LDFLAGS=""
    fi
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Oct 21 14:08:46 GMT 2022
    - 2.4K bytes
    - Viewed (0)
  9. common/scripts/setup_env.sh

    add_KUBECONFIG_if_exists () {
      if [[ -f "$1" ]]; then
        local local_config
        local_config="$(mktemp)"
        cp "${1}" "${local_config}"
    
        kubeconfig_random="$(od -vAn -N4 -tx /dev/random | tr -d '[:space:]' | cut -c1-8)"
        container_kubeconfig+="/config/${kubeconfig_random}:"
        CONDITIONAL_HOST_MOUNTS+="--mount type=bind,source=${local_config},destination=/config/${kubeconfig_random} "
      fi
    }
    
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 23 19:52:28 GMT 2024
    - 7.6K bytes
    - Viewed (0)
  10. Makefile.core.mk

    $(TARGET_OUT):
    	@mkdir -p $@
    
    # If the hub is not explicitly set, use default to istio.
    HUB ?=istio
    ifeq ($(HUB),)
      $(error "HUB cannot be empty")
    endif
    
    # For dockerx builds, allow HUBS which is a space separated list of hubs. Default to HUB.
    HUBS ?= $(HUB)
    
    # If tag not explicitly set in users' .istiorc.mk or command line, default to the git sha.
    TAG ?= $(shell git rev-parse --verify HEAD)
    ifeq ($(TAG),)
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 19 19:41:41 GMT 2024
    - 22.5K bytes
    - Viewed (0)
Back to top