Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for NewTest (0.2 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                    }
                    module("org:dep:2.2") {
                        module("org:external:1.4")
                    }
                }
            }
        }
    
        void "takes newest dynamic version when dynamic version forced"() {
            mavenRepo.module("org", "foo", '1.3.0').publish()
    
            mavenRepo.module("org", "foo", '1.4.1').publish()
            mavenRepo.module("org", "foo", '1.4.4').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    [[sec:stale_task_outputs]]
    == Stale task outputs
    
    When the Gradle version changes, Gradle detects that outputs from tasks that ran with older versions of Gradle need to be removed to ensure that the newest version of the tasks are starting from a known clean state.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	}
    	fakeRuntime.SetFakeSandboxes(fakeSandboxes)
    
    	actual, err := m.GetPods(ctx, false)
    	assert.NoError(t, err)
    
    	assert.Len(t, actual, 3)
    
    	// Verify that the pods are sorted by their creation time (newest/biggest timestamp first)
    	assert.Equal(t, uint64(createdTimestamps[2]), actual[0].CreatedAt)
    	assert.Equal(t, uint64(createdTimestamps[0]), actual[1].CreatedAt)
    	assert.Equal(t, uint64(createdTimestamps[1]), actual[2].CreatedAt)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
Back to top