Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 139 for pinned (0.23 sec)

  1. pkg/kubelet/images/image_gc_manager.go

    		}
    
    		klog.V(5).InfoS("Image ID has size", "imageID", imageKey, "size", image.Size)
    		im.imageRecords[imageKey].size = image.Size
    
    		klog.V(5).InfoS("Image ID is pinned", "imageID", imageKey, "pinned", image.Pinned)
    		im.imageRecords[imageKey].pinned = image.Pinned
    	}
    
    	// Remove old images from our records.
    	for image := range im.imageRecords {
    		if !currentImages.Has(image) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. src/sync/pool.go

    	}
    	return p.pinSlow()
    }
    
    func (p *Pool) pinSlow() (*poolLocal, int) {
    	// Retry under the mutex.
    	// Can not lock the mutex while pinned.
    	runtime_procUnpin()
    	allPoolsMu.Lock()
    	defer allPoolsMu.Unlock()
    	pid := runtime_procPin()
    	// poolCleanup won't be called while we are pinned.
    	s := p.localSize
    	l := p.local
    	if uintptr(pid) < s {
    		return indexLocal(l, pid), pid
    	}
    	if p.local == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. src/cmd/cgo/doc.go

    unless the memory it points to is pinned with [runtime.Pinner] and the
    Pinner is not unpinned while the Go pointer is stored in C memory.
    This implies that C code may not keep a copy of a string, slice,
    channel, and so forth, because they cannot be pinned with
    [runtime.Pinner].
    
    The _GoString_ type also may not be pinned with [runtime.Pinner].
    Because it includes a Go pointer, the memory it points to is only pinned
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  4. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

        remoteUri = 'https://github.com/gradle/perf-android-large-2.git'
        // Pinned from android-73-kotlin-16 branch
        ref = "a67ceb08a7b4e4a71e3c151a3abd72a9abe5d703"
    }
    
    performanceTest.registerAndroidTestProject("nowInAndroidBuild", RemoteProject) {
        remoteUri = 'https://github.com/android/nowinandroid.git'
        // Pinned from main branch
        ref = "b85cf7d4766ca84a424700f86a96f5eab0a3cfbd" // latest of May 14th, 2024
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  5. pkg/kubelet/images/image_gc_manager_test.go

    	manager, fakeRuntime := newRealImageGCManager(ImageGCPolicy{}, mockStatsProvider)
    	fakeRuntime.ImageList = []container.Image{
    		{
    			ID:     "1",
    			Size:   1024,
    			Pinned: true,
    		},
    		{
    			ID:     "2",
    			Size:   1024,
    			Pinned: true,
    		},
    	}
    
    	assert := assert.New(t)
    	getImagesAndFreeSpace(ctx, t, assert, manager, fakeRuntime, 2048, 0, 2, time.Now())
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 15:38:20 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_image_test.go

    	}
    	imageList := []string{}
    	for image, pinned := range imagesPinned {
    		fakeImageService.SetFakeImagePinned(image, pinned)
    		imageList = append(imageList, image)
    	}
    	fakeImageService.SetFakeImages(imageList)
    
    	actualImages, err := fakeManager.ListImages(ctx)
    	assert.NoError(t, err)
    	for _, image := range actualImages {
    		assert.Equal(t, imagesPinned[image.ID], image.Pinned)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. prow/release-commit.sh

    GCS_BUCKET=${GCS_BUCKET:-istio-build/dev}
    
    # Enable emulation required for cross compiling a few images (VMs)
    docker run --rm --privileged "${DOCKER_HUB}/qemu-user-static" --reset -p yes
    export ISTIO_DOCKER_QEMU=true
    
    # Use a pinned version in case breaking changes are needed
    BUILDER_SHA=159efd4a18a7325192c4f7cb0acbe5648bfb8658
    
    # Reference to the next minor version of Istio
    # This will create a version like 1.4-alpha.sha
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. samples/bookinfo/src/productpage/requirements.txt

        --hash=sha256:fbf649bc77510ef2521cf797700b96167bb77838c40780da7ea3edd8b78044d1
        # via gevent
    
    # WARNING: The following packages were not pinned, but pip requires them to be
    # pinned when the requirements file includes hashes and the requirement is not
    # satisfied by a package already installed. Consider using the --allow-unsafe flag.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 45.5K bytes
    - Viewed (0)
  9. build/dependencies.yaml

      # backwards-compatible with the original tooling.
      #
      # In instances where the file format may change across versions, this meta
      # dependency check exists to ensure we're pinned to a known good version.
      #
      # ref: https://github.com/kubernetes/kubernetes/pull/98845
      - name: "zeitgeist"
        version: "v0.5.3"
        refPaths:
        - path: hack/verify-external-dependencies-version.sh
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. CHANGELOG.md

        `EventSourceListener.onOpen()`.
     *  Fix: Enforce the max intermediates constraint when using pinned certificates with Conscrypt.
        This impacts Conscrypt when the server's presented certificates form both a trusted-but-unpinned
        chain and an untrusted-but-pinned chain.
     *  Upgrade: [Kotlin 1.6.10][kotlin_1_6_10].
    
    
    ## Version 5.0.0-alpha.3
    
    _2021-11-22_
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:31:39 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top