Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 362 for pinned (0.19 sec)

  1. 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)
  2. 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)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/EmbeddedKotlinProvider.kt

        ) {
            embeddedKotlinVersions.forEach { (module, version) ->
                dependencies.constraints.add(configuration, module).apply {
                    version { strictly(version) }
                    because("Pinned to the embedded Kotlin")
                }
            }
        }
    
        private
        fun kotlinModuleVersionNotationFor(kotlinModule: String) =
            "${kotlinModuleNotationFor(kotlinModule)}:$embeddedKotlinVersion"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_image.go

    			ID:          img.Id,
    			Size:        int64(img.Size_),
    			RepoTags:    img.RepoTags,
    			RepoDigests: img.RepoDigests,
    			Spec:        toKubeContainerImageSpec(img),
    			Pinned:      img.Pinned,
    		})
    	}
    
    	return images, nil
    }
    
    // RemoveImage removes the specified image.
    func (m *kubeGenericRuntimeManager) RemoveImage(ctx context.Context, image kubecontainer.ImageSpec) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 5.9K 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. okhttp/src/test/java/okhttp3/CertificatePinnerTest.kt

      @Test
      fun checkForHostnameWithDoubleAsterisk() {
        val certificatePinner =
          CertificatePinner.Builder()
            .add("**.example.co.uk", certA1Sha256Pin)
            .build()
    
        // Should be pinned:
        assertFailsWith<SSLPeerUnverifiedException> {
          certificatePinner.check("example.co.uk", listOf(certB1.certificate))
        }
        assertFailsWith<SSLPeerUnverifiedException> {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. 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)
  8. tensorflow/compiler/mlir/tensorflow/tests/replicate_to_island_legacy.mlir

    // CHECK: "tf.opA"
    // CHECK: "tf_device.launch"
    // CHECK: device = "/GPU:1"
    // CHECK: "tf.opA"
    
    
    // Tests replicate with control dependency output has each expanded replica
    // control pinned to a sink island.
    // CHECK-LABEL: func @replicate_control
    func.func @replicate_control() {
      tf_executor.graph {
        %1 = tf_executor.island {
          tf_device.replicate {n = 2 : i32} {
            tf_device.return
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  9. hack/update-vendor.sh

        | while read -r X; do echo "-replace k8s.io/${X}=./staging/src/k8s.io/${X}"; done \
        | xargs -L 100 go mod edit -fmt
    
    
    # Phase 3: capture required (minimum) versions from all modules, and replaced (pinned) versions from the root module
    
    # pin referenced versions
    ensure_require_replace_directives_for_all_dependencies
    # resolves/expands references in the root go.mod (if needed)
    go mod tidy
    # pin expanded versions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  10. container-tests/src/test/java/okhttp3/containers/BasicLoomTest.kt

            .dispatcher(Dispatcher(newVirtualThreadPerTaskExecutor()))
            .build()
    
        executor = newVirtualThreadPerTaskExecutor()
    
        // Capture non-deterministic but probable sysout warnings of pinned threads
        // https://docs.oracle.com/en/java/javase/21/core/virtual-threads.html
        System.setOut(PrintStream(capturedOut))
      }
    
      @AfterEach
      fun checkForPinning() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 11:15:46 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top