Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,095 for Pull (0.08 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/SystemPropertiesCompositeBuildFixture.groovy

        static Set<List<BuildWithSystemPropertyDefined>> definitions() {
            // The order needs to be consistent here for the retry plugin to work,
            // see https://github.com/gradle/gradle/pull/25605
            Set<List<BuildWithSystemPropertyDefined>> containsIncludedBuildDefinitions = new LinkedHashSet<>()
    
            Set<List<BuildWithSystemPropertyDefined>> allDefinitions = [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. pkg/kubelet/metrics/metrics.go

    	PodStartSLIDuration = metrics.NewHistogramVec(
    		&metrics.HistogramOpts{
    			Subsystem:      KubeletSubsystem,
    			Name:           PodStartSLIDurationKey,
    			Help:           "Duration in seconds to start a pod, excluding time to pull images and run init containers, measured from pod creation timestamp to when all its containers are reported as started and observed via watch",
    			Buckets:        podStartupDurationBuckets,
    			StabilityLevel: metrics.ALPHA,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/version_test.go

    	validVersions := []string{
    		"v1.3.0",
    		"v1.4.0-alpha.0",
    		"v1.4.5",
    		"v1.4.0-beta.0",
    		"v2.0.0",
    		"v1.6.0-alpha.0.536+d60d9f3269288f",
    		"v1.5.0-alpha.0.1078+1044b6822497da-pull",
    		"v1.5.0-alpha.1.822+49b9e32fad9f32-pull-gke-gci",
    		"v1.6.1+coreos.0",
    		"1.7.1",
    	}
    	for _, s := range validVersions {
    		t.Run(s, func(t *testing.T) {
    			ver, err := kubernetesReleaseVersion(s, errorFetcher)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 03:30:51 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

            assert details: "Expected details to be non-null, but was null"
    
            def locations = problem.locations
            // We use this counter to assert that we have visited all locations
            def assertedLocationCount = 0
    
            FileLocation fileLocation = locations.find { it instanceof FileLocation }
            assert fileLocation != null: "Expected a file location, but it was null"
            def fileLocationPath = fileLocation.path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/files/waypoint.yaml

          (strdict
            "gateway.networking.k8s.io/gateway-name" .Name
            "istio.io/gateway-name" .Name
          ) | nindent 4 }}
      {{- if ge .KubeVersion 128 }}
      # Safe since 1.28: https://github.com/kubernetes/kubernetes/pull/117412
      ownerReferences:
      - apiVersion: gateway.networking.k8s.io/v1beta1
        kind: Gateway
        name: "{{.Name}}"
        uid: "{{.UID}}"
      {{- end }}
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 22:41:03 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsIntegrationTest.groovy

                        byConstraint()
                    }
                    constraint("org:foo:1.0")
                }
            }
        }
    
        void "dependency constraints should not pull in additional artifacts"() {
            given:
            mavenRepo.module("org", "foo", '1.0').artifact(classifier: 'shaded').publish()
            mavenRepo.module("org", "foo", '1.1').artifact(classifier: 'shaded').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  7. build/lib/release.sh

    function kube::release::package_final_tarball() {
      kube::log::status "Building tarball: final"
    
      # This isn't a "full" tarball anymore, but the release lib still expects
      # artifacts under "full/kubernetes/"
      local release_stage="${RELEASE_STAGE}/full/kubernetes"
      rm -rf "${release_stage}"
      mkdir -p "${release_stage}"
    
      mkdir -p "${release_stage}/client"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  8. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/publisher/ValidatingMavenPublisherTest.groovy

            when:
            def projectIdentity = makeProjectIdentity("the-group", "the-artifact", "the-version")
            def publication = new MavenNormalizedPublication("pub-name", projectIdentity, "pom", createPomFile(projectIdentity, null, marker), null, emptySet())
    
            and:
            publisher.publish(publication, repository)
    
            then:
            delegate.publish(publication, repository)
    
            where:
            marker << [false, true]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12K bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorParallelIntegrationTest.groovy

                action = """
                    System.out.println("Running \${parameters.itemName}...")
                    new URI("http", null, "localhost", ${blockingHttpServer.getPort()}, "/\${parameters.itemName}", null, null).toURL().text
                    File outputDir = new File("${fixture.outputFileDirPath}")
                    File outputFile = new File(outputDir, parameters.itemName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 31.7K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/cpumanager/cpu_assignment.go

    // than one socket), the CPUs are selected as written above, with the only differences being that
    // (1) the order with which full sockets and full NUMA nodes are acquired is swapped, and (2) the
    // order with which lower-level topology elements are selected is also swapped accordingly. E.g.
    // when selecting full cores, the cores are selected starting from the ones in the NUMA node with
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:56:21 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top