Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,940 for mage (0.14 sec)

  1. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"macedonia":                            "\U0001f1f2\U0001f1f0",
    	"madagascar":                           "\U0001f1f2\U0001f1ec",
    	"mag":                                  "\U0001f50d",
    	"mag_right":                            "\U0001f50e",
    	"mage":                                 "\U0001f9d9",
    	"mage_man":                             "\U0001f9d9\u200d\u2642\ufe0f",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  2. build/make-build-image.sh

    # limitations under the License.
    
    # Build the docker image necessary for building Kubernetes
    #
    # This script will package the parts of the repo that we need to build
    # Kubernetes into a tar file and put it in the right place in the output
    # directory.  It will then copy over the Dockerfile and build the kube-build
    # image.
    set -o errexit
    set -o nounset
    set -o pipefail
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 16 08:34:36 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/image/image.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package image
    
    import "regexp"
    
    var (
    	// tagMatcher is the regex used to match a tag.
    	// Basically we presume an image can be made of `[domain][:port][path]<name>[:tag][@sha256:digest]`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 19 21:21:34 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. src/image/image.go

    // Package image implements a basic 2-D image library.
    //
    // The fundamental interface is called [Image]. An [Image] contains colors, which
    // are described in the image/color package.
    //
    // Values of the [Image] interface are created either by calling functions such
    // as [NewRGBA] and [NewPaletted], or by calling [Decode] on an [io.Reader] containing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 34.9K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/image-auto.yaml

        spec:
          containers:
            - name: istio-proxy
              image: auto
    ---
    # No image auto, should not produce error!
    apiVersion: v1
    kind: Pod
    metadata:
      name: istiod-canary-1234567890-12345
      namespace: istio-system
      labels:
        app: istiod
        istio: pilot
        sidecar.istio.io/inject: "true"
    spec:
      containers:
        - image: ubuntu
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/injection/injection-image.go

    	Tag   string `json:"tag"`
    	Proxy proxy  `json:"proxy"`
    }
    
    type proxy struct {
    	Image string `json:"image"`
    }
    
    // Metadata implements Analyzer.
    func (a *ImageAnalyzer) Metadata() analysis.Metadata {
    	return analysis.Metadata{
    		Name:        "injection.ImageAnalyzer",
    		Description: "Checks the image of auto-injection configured with the running proxies on pods",
    		Inputs: []config.GroupVersionKind{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/hack/build-image.sh

      rm "${KUBE_ROOT}/staging/src/k8s.io/apiextensions-apiserver/artifacts/simple-image/apiextensions-apiserver"
    }
    trap cleanup EXIT
    
    pushd "${KUBE_ROOT}/staging/src/k8s.io/apiextensions-apiserver"
    cp -v ../../../../_output/local/bin/linux/amd64/apiextensions-apiserver ./artifacts/simple-image/apiextensions-apiserver
    docker build -t apiextensions-apiserver:latest ./artifacts/simple-image
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. tools/skip-image.sh

    # limitations under the License.
    
    set -eu
    
    # This is a dedicated script to allow reference from script and makefile
    
    # Determine if we should skip an image
    # $1 = docker target
    # $2 = variant
    # We will filter out test image distroless variant; they do not need to support distroless
    if [[ $2 == "distroless" ]]; then
      if [[ $1 =~ docker.app ]]; then
        exit 0
      fi
    fi
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 02 18:51:04 UTC 2020
    - 933 bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/injection/image-auto.go

    	"istio.io/istio/pkg/config/analysis/msg"
    	"istio.io/istio/pkg/config/resource"
    	"istio.io/istio/pkg/config/schema/gvk"
    )
    
    // ImageAutoAnalyzer reports an error if Pods and Deployments with `image: auto` are not going to be injected.
    type ImageAutoAnalyzer struct{}
    
    var _ analysis.Analyzer = &ImageAutoAnalyzer{}
    
    const (
    	istioProxyContainerName = "istio-proxy"
    	manualInjectionImage    = "auto"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. tools/build-kind-image.sh

    images=()
    for arch in "${__arches__[@]}"; do
        image="${registry}-${arch}"
        kind build node-image --image="${image}" --arch="${arch}" "${kdir}"
        images+=("${image}")
    done
    
    # combine to manifest list tagged with kubernetes version
    export DOCKER_CLI_EXPERIMENTAL=enabled
    # images must be pushed to be referenced by docker manifest
    # we push only after all builds have succeeded
    for image in "${images[@]}"; do
        docker push "${image}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 12 17:36:35 UTC 2022
    - 1.6K bytes
    - Viewed (0)
Back to top