Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 418 for newLru (0.13 sec)

  1. src/cmd/go/testdata/script/work_sync_toolchain.txt

    grep '^go 1.50$' go.work
    ! grep toolchain go.work
    
    # work sync with older modules should leave go 1.50 in the go.work.
    go work sync
    cat go.work
    grep '^go 1.50$' go.work
    ! grep toolchain go.work
    
    # work sync with newer modules should update go 1.21 -> 1.22.1 and toolchain -> go1.22.9 in go.work
    env TESTGO_VERSION=go1.21
    env TESTGO_VERSION_SWITCH=switch
    go work edit -go=1.21
    grep '^go 1.21$' go.work
    ! grep toolchain go.work
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. pkg/registry/rbac/rest/storage_rbac.go

    		newCRB := clusterRoleBindingToCreate.DeepCopy()
    		newCRB.Subjects = existingRoleBinding.Subjects
    		newCRB.Labels = existingRoleBinding.Labels
    		newCRB.Annotations = existingRoleBinding.Annotations
    		if _, err := clusterRoleBindingClient.ClusterRoleBindings().Create(context.TODO(), newCRB, metav1.CreateOptions{}); err != nil && !apierrors.IsAlreadyExists(err) {
    			return err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 14 03:25:19 UTC 2022
    - 18.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/example.com_usemissingpre_v1.0.0.txt

    This module requires example.com/missingpkg at a prerelease version, which
    is newer than @latest.
    
    -- .mod --
    module example.com/usemissingpre
    
    require example.com/missingpkg v1.0.1-beta
    -- .info --
    {"Version":"v1.0.0"}
    -- use.go --
    package use
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:25:56 UTC 2019
    - 280 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_get_upgrade_pseudo.txt

    #   * v0.1.0
    #   * v0.0.0-20190430073000-30950c05d534
    # Only v0.1.0 is tagged.
    #
    # The v0.1.1 pseudo-version is semantically higher than the latest tag.
    # The v0.0.0 pseudo-version is chronologically newer.
    
    # Start at v0.1.1-0.20190429073117-b5426c86b553
    go get example.com/pseudoupgrade@b5426c8
    go list -m -u all
    stdout '^example.com/pseudoupgrade v0.1.1-0.20190429073117-b5426c86b553$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_get_exec_toolchain.txt

    env GOTOOLCHAIN=go1.21+auto
    cp go.mod.new go.mod
    go get rsc.io/needgo121 rsc.io/needgo122 rsc.io/needgo123 rsc.io/needall
    stderr '^go: rsc.io/needall@v0.0.1 requires go >= 1.23; switching to go1.23.9$'
    ! stderr '\(running'
    stderr '^go: added rsc.io/needall v0.0.1'
    grep 'go 1.23' go.mod
    grep 'toolchain go1.23.9' go.mod
    
    # GOTOOLCHAIN=go1.21 should NOT run the newer toolchain
    env GOTOOLCHAIN=go1.21
    cp go.mod.new go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:23:42 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalBuildController.java

     *
     * <p>Consumer compatibility: This interface is used by all consumer versions from 1.8-rc-1 to 4.3. It is also used by later consumers when the provider does not
     * implement newer interfaces.
     * </p>
     * <p>Provider compatibility: This interface is implemented by all provider versions from 1.8-rc-1.</p>
     *
     * @since 1.8-rc-1
     * @deprecated 4.4. Use {@link InternalBuildControllerVersion2} instead.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. cluster/addons/fluentd-gcp/fluentd-gcp-ds.yaml

                  if [ -z "$(find /var/log/fluentd-buffers -type d -newer /tmp/marker-stuck -print -quit)" ];
                  then
                    rm -rf /var/log/fluentd-buffers;
                    exit 1;
                  fi;
                  touch -d "${LIVENESS_THRESHOLD_SECONDS} seconds ago" /tmp/marker-liveness;
                  if [ -z "$(find /var/log/fluentd-buffers -type d -newer /tmp/marker-liveness -print -quit)" ];
                  then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 27 17:54:10 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_download_exec_toolchain.txt

    # a module zip that we don't understand.
    
    # GOTOOLCHAIN=auto should run the newer toolchain
    env GOTOOLCHAIN=auto
    go mod download rsc.io/needgo121@latest rsc.io/needgo122@latest rsc.io/needgo123@latest rsc.io/needall@latest
    stderr '^go: rsc.io/needall@v0.0.1 requires go >= 1.23; switching to go1.23.9$'
    ! stderr '\(running'
    
    # GOTOOLCHAIN=min+auto should run the newer toolchain
    env GOTOOLCHAIN=go1.21+auto
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. releasenotes/notes/29372.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
      - 29364
    releaseNotes:
      - |
        **Fixed** Newer control plane installations were removing permissions for `rbac.istio.io` from `istiod`, causing
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 09 01:47:01 UTC 2020
    - 287 bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/plugin/devel/variants/TargetJVMVersionOnPluginTooNewFailureDescriberIntegrationTest.groovy

            failure.assertHasErrorOutput("Caused by: " + VariantSelectionException.class.getName())
            failure.assertHasResolution("Run this build using a Java ${higherVersion.javaVersion.majorVersion} or newer JVM.")
        }
    
        def 'JVM version too low uses custom error message for plugin when version attribute explicitly mis-set'() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 20:48:53 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top