Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 106 for pinned (0.12 sec)

  1. hack/lint-dependencies.sh

      select(.Replace.Version != null) |
      select(.Version != .Replace.Version) |
      select(.Path) |
      \"\(.Path)
        pinned:    \(.Replace.Version)
        preferred: \(.Version)
        hack/pin-dependency.sh \(.Path) \(.Version)\"
    ")
    if [[ -n "${outdated}" ]]; then
      echo "These modules are pinned to versions different than the minimal preferred version."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:42 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/support/EmbeddedKotlinProviderTest.kt

            val result = build("buildEnvironment")
    
            assertThat(result.output, containsString("No dependencies"))
        }
    
        @Test
        fun `embedded kotlin dependencies are pinned to the embedded version`() {
    
            withBuildScript(
                """
                buildscript {
                    $repositoriesBlock
                    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. 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)
  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. 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)
  6. 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)
  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. testing/smoke-test/build.gradle.kts

         */
        val santaGitUri = "https://github.com/gradle/santa-tracker-android.git"
    
        val santaTracker by registering(RemoteProject::class) {
            remoteUri = santaGitUri
            // Pinned from branch main
            ref = "e9419cad3583427caca97958301ff98fc8e9a1c3"
        }
    
        val gradleBuildCurrent by registering(RemoteProject::class) {
            remoteUri = rootDir.absolutePath
            ref = buildCommitId
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. hack/pin-dependency.sh

    # Add the replace directive
    if [ "${replacement}" != "${dep}" ]; then
      echo "Running: go mod edit -replace ${dep}=${replacement}@${rev}"
      go mod edit -replace "${dep}=${replacement}@${rev}"
    fi
    
    # Propagate pinned version to staging repos
    for repo in $(kube::util::list_staging_repos); do
      pushd "staging/src/k8s.io/${repo}" >/dev/null 2>&1
        go mod edit -require "${dep}@${rev}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. hack/verify-vendor.sh

        echo "${_out}" > vendordiff.patch
        echo "If you're seeing this locally, run the below command to fix your directories:" >&2
        echo "hack/update-vendor.sh" >&2
        ret=1
      fi
    
      # Verify we are pinned to matching levels
      hack/lint-dependencies.sh >&2
    popd > /dev/null 2>&1
    
    if [[ ${ret} -gt 0 ]]; then
      exit ${ret}
    fi
    
    # Ensure we can tidy every repo using only its recorded versions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top