Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,678 for newer (0.4 sec)

  1. ci/official/containers/linux_arm64/builder.patchelf/build_patchelf.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    
    # Need a newer version of patchelf as the installed version is buggy in 20.04
    # so get patchelf source from 22.04 ie 'jammy' and build it to avoid dependency
    # problems that would occur with a binary package
    
    mkdir -p /patchelf
    cd /patchelf
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 15:53:15 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. pkg/kubelet/pluginmanager/cache/desired_state_of_world_test.go

    		t.Fatalf("Expected\n%s\nin desired state of world, but got\n%v\n", socketPath, newDswPlugins[0])
    	}
    
    	// Verify that the new timestamp is newer than the old timestamp
    	if !newDswPlugins[0].Timestamp.After(oldTimestamp) {
    		t.Fatal("New timestamp is not newer than the old timestamp", newDswPlugins[0].Timestamp, oldTimestamp)
    	}
    
    }
    
    // Calls AddOrUpdatePlugin() to add an empty string for socket path
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 18 12:18:41 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/preflight/checks_test.go

    		},
    		{
    			check: KubernetesVersionCheck{
    				KubeadmVersion:    "v1.6.6", //KubernetesVersion newer than KubeadmVersion, within the same minor release (new patch)
    				KubernetesVersion: "v1.6.7",
    			},
    			expectWarnings: false,
    		},
    		{
    			check: KubernetesVersionCheck{
    				KubeadmVersion:    "v1.6.6", //KubernetesVersion newer than KubeadmVersion, in a different minor/in pre-release
    				KubernetesVersion: "v1.7.0-alpha.0",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/gotoolchain_local.txt

    # Create a go.mod file and test interactions with auto and path.
    
    # GOTOOLCHAIN=auto uses go line if newer than local toolchain.
    env GOTOOLCHAIN=auto
    go mod init m
    go mod edit -go=1.700 -toolchain=none
    go version
    stdout 1.700
    
    go mod edit -go=1.300 -toolchain=none
    go version
    stdout 1.500 # local toolchain is newer
    
    go mod edit -go=1.700 -toolchain=go1.300
    go version
    stdout go1.700 # toolchain too old, ignored
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 21:19:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r63/DistributionChecksumCrossVersionSpec.groovy

    import org.gradle.tooling.GradleConnectionException
    import org.gradle.tooling.ProjectConnection
    
    class DistributionChecksumCrossVersionSpec extends ToolingApiSpecification {
        // Newer clients no longer kill the JVM when a distribution is invalid.
        @TargetGradleVersion(">=3.0 <6.3")
        def "invalid Gradle distribution does not kill the TAPI client with older Gradle versions"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalBuildAction.java

     * <p>Provider compatibility: This interface is consumed by all provider versions from 1.8-rc-1 to 4.3. It is also used by later providers when the consumer does not
     * implement newer interfaces.
     * </p>
     *
     * @since 1.8-rc-1
     * @deprecated 4.4. Use {@link InternalBuildActionVersion2} instead.
     */
    @Deprecated
    public interface InternalBuildAction<T> extends InternalProtocolInterface, Serializable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BuildScanPluginSmokeTest.groovy

                    "Gradle Enterprise plugin $version has been deprecated. " +
                        "Starting with Gradle 9.0, only Gradle Enterprise plugin 3.13.1 or newer is supported. " +
                        "Consult the upgrading guide for further information: https://docs.gradle.org/${GradleVersion.current().version}/userguide/upgrading_version_8.html#unsupported_ge_plugin_3.13"
                )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  8. src/cmd/fix/doc.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    /*
    Fix finds Go programs that use old APIs and rewrites them to use
    newer ones.  After you update to a new Go release, fix helps make
    the necessary changes to your programs.
    
    Usage:
    
    	go tool fix [-r name,...] [path ...]
    
    Without an explicit path, fix reads standard input and writes the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_download_private_vcs.txt

    env GO111MODULE=on
    
    # Testing stderr for git ls-remote; turn off proxy.
    [!net:github.com] skip
    [!git] skip
    env GOPROXY=direct
    
    # Redirect git to a test-specific .gitconfig.
    # GIT_CONFIG_GLOBAL suffices for git 2.32.0 and newer.
    # For older git versions we also set $HOME.
    env GIT_CONFIG_GLOBAL=$WORK${/}home${/}gopher${/}.gitconfig
    env HOME=$WORK${/}home${/}gopher
    exec git config --global --show-origin user.name
    stdout 'Go Gopher'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/execution/BuildResumptionDataRepository.java

     */
    package org.apache.maven.execution;
    
    import org.apache.maven.project.MavenProject;
    
    /**
     * Instances of this interface retrieve and store data for the --resume / -r feature. This data is used to ensure newer
     * builds of the same project, that have the -r command-line flag, skip successfully built projects during earlier
     * invocations of Maven.
     */
    public interface BuildResumptionDataRepository {
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.3K bytes
    - Viewed (0)
Back to top