Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,424 for pubdate (0.23 sec)

  1. hack/jenkins/update-dockerized.sh

    export LOG_LEVEL=4
    
    cd "${GOPATH}/src/k8s.io/kubernetes"
    source "${PWD}/hack/lib/init.sh"
    kube::etcd::install
    export PATH=${GOPATH}/bin:${PWD}/third_party/etcd:/usr/local/go/bin:${PATH}
    
    make update
    
    if [[ -d "${ARTIFACTS:-}" ]]; then
      # ignore the .git, _output directories and zip up everything else
      zip -y -r "${ARTIFACTS}/updated-files.zip" . -x '*.git*' -x '*_output*'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 08 00:02:03 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  2. hack/update-mocks.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script generates mock files using mockgen.
    # Usage: `hack/update-mocks.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    
    echo 'installing mockgen'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. releasenotes/notes/headless-endpoint-update.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issue:
      - 26617
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 19 15:10:39 UTC 2020
    - 198 bytes
    - Viewed (0)
  4. hack/update-import-aliases.sh

    # limitations under the License.
    
    # This script fixes imports programmatically according to
    # all the imports that we have our preferred alias(es).
    # Usage: `hack/update-import-aliases.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    
    cd "${KUBE_ROOT}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:56 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. hack/update-vanity-imports.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script fixes the vanity imports programmatically.
    # Usage: `hack/update-vanity-imports.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::verify_go_version
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. hack/update-internal-modules.sh

                dirname "${F}"; \
            done
        )
    
    # Detect problematic GOPROXY settings that prevent lookup of dependencies
    if [[ "${GOPROXY:-}" == "off" ]]; then
      kube::log::error "Cannot run hack/update-internal-modules.sh with \$GOPROXY=off"
      exit 1
    fi
    
    kube::golang::setup_env
    
    for mod in "${MODULES[@]}"; do
      echo "=== tidying go.mod/go.sum in ${mod}"
      go -C "${KUBE_ROOT}/${mod}" mod edit -fmt
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:38:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. hack/update-netparse-cve.sh

    # This script replace "net" stdlib IP and CIDR parsers
    # with the ones forked in k8s.io/utils/net to parse IP addresses
    # because of the compatibility break introduced in golang 1.17
    # Reference: #100895
    # Usage: `hack/update-netparse-cve.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    source "${KUBE_ROOT}/hack/lib/util.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. build-logic/build-update-utils/src/main/kotlin/gradlebuild.update-versions.gradle.kts

            ReleasedVersion(versionInfo.version, versionInfo.buildTime)
        }
    }
    
    tasks.register<UpdateAgpVersions>("updateAgpVersions") {
        comment = " Generated - Update by running `./gradlew updateAgpVersions`"
        minimumSupportedMinor = "7.3"
        propertiesFile = layout.projectDirectory.file("gradle/dependency-management/agp-versions.properties")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 10:17:36 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. hack/update-vendor-licenses.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # Update the LICENSES directory.
    # Generates a table of Go dependencies and their licenses.
    #
    # Usage:
    #    $0 [--create-missing] [/path/to/licenses]
    #
    #    --create-missing will write the files that only exist upstream, locally.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:53 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. hack/_update-generated-protobuf-dockerized.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script genertates `*/api.pb.go` from the protobuf file `*/api.proto`.
    # Usage: 
    #     hack/update-generated-protobuf-dockerized.sh "${APIROOTS[@]}"
    #     An example APIROOT is: "k8s.io/api/admissionregistration/v1"
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top