Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for changes (0.05 sec)

  1. .teamcity/src/main/kotlin/configurations/StageTriggers.kt

    // Trigger ReadyForNightly and ReadyForRelease for provider-api-migration/public-api-changes-test branch
    // TODO: remove this after the branch is merged
    fun VersionedSettingsBranch.determineBranchFilter(): String {
        return branchFilter() + "\n+:provider-api-migration/public-api-changes-test"
    }
    
    class StageTrigger(
        model: CIBuildModel,
        stage: Stage,
        prevStage: Stage?,
        os: Os?,
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Nov 06 08:08:13 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. go.mod

    module istio.io/istio
    
    go 1.23
    
    // Client-go does not handle different versions of mergo due to some breaking changes - use the matching version
    replace github.com/imdario/mergo => github.com/imdario/mergo v0.3.5
    
    require (
    	cloud.google.com/go/compute/metadata v0.5.2
    	github.com/AdaLogics/go-fuzz-headers v0.0.0-20240806141605-e8a1dd7889d6
    	github.com/Masterminds/semver/v3 v3.3.0
    	github.com/Masterminds/sprig/v3 v3.3.0
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Nov 06 06:23:25 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. build-logic-commons/settings.gradle.kts

    gradle.lifecycle.beforeProject {
        pluginManager.withPlugin("java-base") {
            the<JavaPluginExtension>().toolchain {
                // if you change this java version please also consider changing .idea/misc.xml#project/component(@project-jdk-name}
                // Also, there are a lot of other places this should be changed.
                languageVersion = JavaLanguageVersion.of(17)
                vendor = JvmVendorSpec.ADOPTIUM
            }
        }
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Nov 06 06:19:29 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. common/scripts/setup_env.sh

    #
    # The original version of this file is located in the https://github.com/istio/common-files repo.
    # If you're looking at this file in a different repo and want to make a change, please go to the
    # common-files repo, make the change there and check it in. Then come back to this repo and run
    # "make update-common".
    
    # Copyright Istio Authors
    #
    # Licensed under the Apache License, Version 2.0 (the "License");
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Nov 06 04:52:54 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top