Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 362 for Usages (0.13 sec)

  1. src/image/gif/writer_test.go

    func TestEncodeAllGo1Dot5GlobalColorModel(t *testing.T) { testEncodeAll(t, true, true) }
    
    func TestEncodeMismatchDelay(t *testing.T) {
    	images := make([]*image.Paletted, 2)
    	for i := range images {
    		images[i] = image.NewPaletted(image.Rect(0, 0, 5, 5), palette.Plan9)
    	}
    
    	g0 := &GIF{
    		Image: images,
    		Delay: make([]int, 1),
    	}
    	if err := EncodeAll(io.Discard, g0); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. src/runtime/export_test.go

    		for i := range slow.BySize {
    			slow.BySize[i].Mallocs = bySize[i].Mallocs
    			slow.BySize[i].Frees = bySize[i].Frees
    		}
    
    		for i := mheap_.pages.start; i < mheap_.pages.end; i++ {
    			chunk := mheap_.pages.tryChunkOf(i)
    			if chunk == nil {
    				continue
    			}
    			pg := chunk.scavenged.popcntRange(0, pallocChunkPages)
    			slow.HeapReleased += uint64(pg) * pageSize
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K 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. manifests/charts/istio-cni/values.yaml

      revision: ""
    
      # For Helm compatibility.
      ownerName: ""
    
      global:
        # Default hub for Istio images.
        # Releases are published to docker hub under 'istio' project.
        # Dev builds from prow are on gcr.io
        hub: gcr.io/istio-testing
    
        # Default tag for Istio images.
        tag: latest
    
        # Variant of the image to use.
        # Currently supported are: [debug, distroless]
        variant: ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/join/preflight.go

    			fmt.Println("[preflight] Would pull the required images (like 'kubeadm config images pull')")
    			return nil
    		}
    
    		fmt.Println("[preflight] Pulling images required for setting up a Kubernetes cluster")
    		fmt.Println("[preflight] This might take a minute or two, depending on the speed of your internet connection")
    		fmt.Println("[preflight] You can also perform this action beforehand using 'kubeadm config images pull'")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. build/lib/release.sh

      "${DOCKER[@]}" rmi "${conformance_tag}" &>/dev/null || true
    }
    
    # This builds all the release docker images (One docker image per binary)
    # Args:
    #  $1 - binary_dir, the directory to save the tared images to.
    #  $2 - arch, architecture for which we are building docker images.
    function kube::release::create_docker_images_for_server() {
      # Create a sub-shell so that we don't pollute the outer environment
      (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.31.md

    ogle.com/artifacts/docker/k8s-artifacts-prod/southamerica-east1/images/conformance) | [amd64](https://console.cloud.google.com/artifacts/docker/k8s-artifacts-prod/southamerica-east1/images/conformance-amd64), [arm64](https://console.cloud.google.com/artifacts/docker/k8s-artifacts-prod/southamerica-east1/images/conformance-arm64), [ppc64le](https://console.cloud.google.com/artifacts/docker/k8s-artifacts-prod/southamerica-east1/images/conformance-ppc64le), [s390x](https://console.cloud.google.com/...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  8. releasenotes/notes/noble-base.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 18:50:51 UTC 2024
    - 194 bytes
    - Viewed (0)
  9. samples/bookinfo/src/details/details.rb

    #   See the License for the specific language governing permissions and
    #   limitations under the License.
    
    require 'webrick'
    require 'json'
    require 'net/http'
    
    if ARGV.length < 1 then
        puts "usage: #{$PROGRAM_NAME} port"
        exit(-1)
    end
    
    port = Integer(ARGV[0])
    
    server = WEBrick::HTTPServer.new(
        :BindAddress => '*',
        :Port => port,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. pkg/test/env/istio.go

    	// nolint: revive, stylecheck
    	REPO_ROOT Variable = "REPO_ROOT"
    
    	// HUB is the Docker hub to be used for images.
    	// nolint: revive, stylecheck
    	HUB Variable = "HUB"
    
    	// TAG is the Docker tag to be used for images.
    	// nolint: revive, stylecheck
    	TAG Variable = "TAG"
    
    	// VARIANT is the Docker variant to be used for images.
    	// nolint: revive, stylecheck
    	VARIANT Variable = "VARIANT"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 16:24:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top