Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of about 10,000 for version1 (0.21 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/conflict/OldestConflictResolver.java

        public ResolutionNode resolveConflict(ResolutionNode node1, ResolutionNode node2) {
            try {
                ArtifactVersion version1 = node1.getArtifact().getSelectedVersion();
                ArtifactVersion version2 = node2.getArtifact().getSelectedVersion();
    
                return version1.compareTo(version2) <= 0 ? node1 : node2;
            } catch (OverConstrainedVersionException exception) {
                // TODO log message or throw exception?
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/CacheLayout.java

    /**
     * Versioned locations of global caches.
     *
     * The purpose of tracking previous versions is to help with cache cleanup.
     * E.g. when the layout was changed in {@code version1}, and it gets changed
     * in {@code version2} once again, we can delete the {@code version1} cache
     * when we detect that it is no longer used.
     *
     * Always use release candidate versions since we normally
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 12:09:31 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. istioctl/pkg/authz/analyzer_test.go

    	}{
    		{
    			name: "Test2",
    			input: &envoy_admin.ListenersConfigDump_DynamicListener{
    				Name: "First_Listener",
    				ActiveState: &envoy_admin.ListenersConfigDump_DynamicListenerState{
    					VersionInfo: "version1.5",
    					Listener: &anypb.Any{
    						TypeUrl: "type.googleapis.com/envoy.admin.v3.ListenersConfigDump",
    					},
    					LastUpdated: timestamppb.Now(),
    				},
    				ClientStatus: 453,
    			},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/testing/cacheable_object.go

    // runtime.Encoder interface implementation.
    // It checks whether CacheableObject is properly supported by it.
    func CacheableObjectTest(t *testing.T, e runtime.Encoder) {
    	gvk1 := schema.GroupVersionKind{Group: "group", Version: "version1", Kind: "MockCacheableObject"}
    
    	testCases := []struct {
    		desc           string
    		runEncode      bool
    		returnSelf     bool
    		expectedResult string
    		expectedError  error
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 30 06:58:54 UTC 2019
    - 6.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/versioning/versioning_test.go

    		t.Errorf("expected group to be %v, got %v", e, a)
    	}
    }
    
    func TestCacheableObject(t *testing.T) {
    	gvk1 := schema.GroupVersionKind{Group: "group", Version: "version1", Kind: "MockCacheableObject"}
    	gvk2 := schema.GroupVersionKind{Group: "group", Version: "version2", Kind: "MockCacheableObject"}
    
    	encoder := NewCodec(
    		&mockSerializer{}, &mockSerializer{},
    		&mockConvertor{}, nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 17:04:19 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDynamicRevisionRemoteResolveIntegrationTest.groovy

            then:
            checkResolve "group:projectA:1.+": "group:projectA:1.1"
    
            when: "Version 1.2 is published"
            server.resetExpectations()
            def version2 = ivyHttpRepo.module("group", "projectA", "1.2").publish()
    
            then: "Version 1.1 is still used, as the 1.+ -> 1.1 mapping is cached"
            checkResolve "group:projectA:1.+": "group:projectA:1.1"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 41.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    					StoredVersions: []string{"version"},
    				},
    			},
    			errors: []validationMatch{
    				// Per-version schema/subresources/columns may not all be set to identical values.
    				// Note that the test will fail if we de-duplicate the expected errors below.
    				invalid("spec", "versions"),
    				invalid("spec", "versions"),
    				invalid("spec", "versions"),
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  8. cmd/erasure-object_test.go

    	testCases := []struct {
    		bucket    string
    		versioned bool
    		object    string
    		content   []byte
    	}{
    		{"bucket1", false, "object1", []byte("aaaaaaaaaaaaaaaa")},
    		{"bucket2", false, "object2", bytes.Repeat([]byte{'a'}, smallFileThreshold*2)},
    		{"bucket3", true, "version1", []byte("aaaaaaaaaaaaaaaa")},
    		{"bucket4", true, "version2", bytes.Repeat([]byte{'a'}, smallFileThreshold*2)},
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

                configuration.dependencies.add(dependency("group2", "name2", "version2"))
            }
    
            configuration.getAttributes().attribute(Attribute.of('key', String.class), 'value')
            configuration.resolutionStrategy
    
            def otherConf = conf("other")
            otherConf.dependencies.add(dependency("otherGroup", "name3", "version3"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/version/version.go

    Go version reports the Go version used to build each of the named files.
    
    If no files are named on the command line, go version prints its own
    version information.
    
    If a directory is named, go version walks that directory, recursively,
    looking for recognized Go binaries and reporting their versions.
    By default, go version does not report unrecognized files found
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 19:27:00 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top