Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 339 for image1 (0.1 sec)

  1. pkg/wasm/cache.go

    		}
    		wasmLog.Debugf("fetching oci image from %s with options: %v", key.downloadURL, imgFetcherOps)
    		fetcher := NewImageFetcher(ctx, imgFetcherOps)
    		binaryFetcher, dChecksum, err = fetcher.PrepareFetch(u.Host + u.Path)
    		if err != nil {
    			wasmRemoteFetchCount.With(resultTag.Value(manifestFailure)).Increment()
    			return nil, fmt.Errorf("could not fetch Wasm OCI image: %v", err)
    		}
    	default:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. docs/fr/docs/advanced/additional-responses.md

    Par exemple, vous pouvez ajouter un type de média supplémentaire `image/png`, en déclarant que votre *opération de chemin* peut renvoyer un objet JSON (avec le type de média `application/json`) ou une image PNG :
    
    ```Python hl_lines="19-24 28"
    {!../../../docs_src/additional_responses/tutorial002.py!}
    ```
    
    !!! note "Remarque"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. cluster/log-dump/log-dump.sh

    	    IFS=' ' read -r -a tmpfiles <<< "$f"
    	    files+=("${tmpfiles[@]}")
            done
        fi
    
        # log where we pull the images from
        log-dump-ssh "${node_name}" "sudo ctr -n k8s.io images ls" > "${dir}/images-containerd.log" || true
        log-dump-ssh "${node_name}" "sudo docker images --all" > "${dir}/images-docker.log" || true
    
        # Try dumping coverage profiles, if it looks like coverage is enabled in the first place.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  4. pilot/docker/Dockerfile.ztunnel

    ARG BASE_DISTRIBUTION=debug
    
    # Version is the base image version from the TLD Makefile
    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    # The following section is used as base image if BASE_DISTRIBUTION=debug
    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION} as debug
    
    # The following section is used as base image if BASE_DISTRIBUTION=distroless
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 944 bytes
    - Viewed (0)
  5. cmd/kubelet/app/options/options.go

    	fs.DurationVar(&c.ImageMinimumGCAge.Duration, "minimum-image-ttl-duration", c.ImageMinimumGCAge.Duration, "Minimum age for an unused image before it is garbage collected.  Examples: '300ms', '10s' or '2h45m'.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  6. manifests/charts/base/values.yaml

    defaults:
      global:
    
        # ImagePullSecrets for control plane ServiceAccount, list of secrets in the same namespace
        # to use for pulling any images in pods that reference this ServiceAccount.
        # Must be set for any cluster configured with private docker registry.
        imagePullSecrets: []
    
        # Used to locate istiod.
        istioNamespace: istio-system
    
        externalIstiod: false
        remotePilotAddress: ""
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 22:00:40 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/output/v1alpha3/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*Images)(nil), (*output.Images)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1alpha3_Images_To_output_Images(a.(*Images), b.(*output.Images), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*output.Images)(nil), (*Images)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/convert_test.go

    	testCases := []struct {
    		input    *runtimeapi.Image
    		expected kubecontainer.ImageSpec
    	}{
    		{
    			input: &runtimeapi.Image{
    				Id:   "test",
    				Spec: nil,
    			},
    			expected: kubecontainer.ImageSpec{
    				Image:       "test",
    				Annotations: []kubecontainer.Annotation(nil),
    			},
    		},
    		{
    			input: &runtimeapi.Image{
    				Id: "test",
    				Spec: &runtimeapi.ImageSpec{
    					Annotations: nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/kube/deployment.go

    	imagePullSecretName, err := settings.Image.PullSecretName()
    	if err != nil {
    		return nil, err
    	}
    
    	containerPorts := getContainerPorts(cfg)
    	appContainers := []map[string]any{{
    		"Name":           appContainerName,
    		"ImageFullPath":  settings.EchoImage, // This overrides image hub/tag if it's not empty.
    		"ContainerPorts": containerPorts,
    	}}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  10. docs/ru/docs/tutorial/debugging.md

    * Запустите отладчик "`Python: Current File (Integrated Terminal)`".
    
    Это запустит сервер с вашим **FastAPI** кодом, остановится на точках останова, и т.д.
    
    Вот как это может выглядеть:
    
    <img src="/img/tutorial/debugging/image01.png">
    
    ---
    
    Если используете Pycharm, вы можете выполнить следующие шаги:
    
    * Открыть "Run" меню.
    * Выбрать опцию "Debug...".
    * Затем в появившемся контекстном меню.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top