Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,871 for Pull (0.04 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    //   [DONE] Irrelevant for delete, because Delete doesn't compare data.
    // - https://github.com/kubernetes/kubernetes/pull/43152
    //   [DONE] Added TestDeleteWithSuggestionAndConflict
    // - https://github.com/kubernetes/kubernetes/pull/54780
    //   [DONE] Irrelevant for delete, because Delete doesn't compare data.
    // - https://github.com/kubernetes/kubernetes/pull/58375
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  2. 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)
  3. prow/lib.sh

    # If we need to call it from a context without xtrace we can just make a new function.
    function trace() {
      { set +x; } 2>/dev/null
      log "Running '${1}'"
      start="$(date_cmd -u +%s.%N)"
      { set -x; } 2>/dev/null
    
      tracing::run "$1" "${@:2}"
    
      { set +x; } 2>/dev/null
      elapsed=$(date_cmd +%s.%N --date="$start seconds ago" )
      log "Command '${1}' complete in ${elapsed}s"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. staging/README.md

    by adding the repo in
    [`prow/config.yaml`](https://github.com/kubernetes/test-infra/blob/master/config/prow/config.yaml).
    See [#kubernetes/test-infra#9292](https://github.com/kubernetes/test-infra/pull/9292)
    for an example.
    
    3. Once the repository has been created in the Kubernetes org,
    update the publishing-bot to publish the staging repository by updating:
    
        - [`rules.yaml`](/staging/publishing/rules.yaml):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 11:23:09 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. 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)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleDependency.java

         * selecting the matching configuration. If {@code null}, a default configuration should be used.
         */
        @Nullable
        String getTargetConfiguration();
    
        /**
         * Sets the requested target configuration of this dependency. This is the name of the configuration in the target module that should be used when
         * selecting the matching configuration. If {@code null}, a default configuration will be used.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 16:14:52 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. hack/golangci-hints.yaml

    # enable an increasing amount of checks:
    # - golangci.yaml is the most permissive configuration. All existing code
    #   passed.
    # - golangci-strict.yaml adds checks that all new code in pull requests
    #   must pass.
    # - golangci-hints.yaml adds checks for code patterns where developer
    #   and reviewer may decide whether findings should get addressed before
    #   merging. Beware that the golangci-lint output includes also the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/v1beta4/defaults.go

    	DefaultProxyBindAddressv4 = "0.0.0.0"
    	// DefaultProxyBindAddressv6 is the default bind address when the advertise address is v6
    	DefaultProxyBindAddressv6 = "::"
    
    	// DefaultImagePullPolicy is the default image pull policy in kubeadm
    	DefaultImagePullPolicy = corev1.PullIfNotPresent
    
    	// DefaultEncryptionAlgorithm is the default encryption algorithm.
    	DefaultEncryptionAlgorithm = EncryptionAlgorithmRSA2048
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top