Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 183 for previousN (0.34 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                if (sameDependencies) {
                    LOGGER.debug("Filter {} excludes same dependencies as previous {}. Dependencies left = {}", newResolutionFilter, previousTraversalExclusions, oldStates);
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    This behavior is now consistent for `buildSrc` and included builds.
    
    ==== Gradle no longer runs the `build` task for `buildSrc` builds
    
    When Gradle builds the output of `buildSrc` it runs only the tasks that produce that output, which is typically the `jar` task.
    In previous releases Gradle would run the `build` task.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  3. docs/changelogs/changelog_3x.md

     *  Fix: Support TLSv1.3 on devices that support it.
    
     *  Fix: Share pooled connections across equivalent `OkHttpClient` instances. Previous releases had
        a bug where a shared connection pool did not guarantee shared connections in some cases.
     *  Fix: Prefer the server's response body on all conditional cache misses. Previously we would
        return the cached response's body if it had a newer `Last-Modified` date.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    						}}},
    				expectError{
    					applyPatchOperation{
    						"revert minFIeld to previously ratcheted value",
    						myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    							"minField": "value",
    						}}},
    				expectError{
    					applyPatchOperation{
    						"revert maxField to previously ratcheted value",
    						myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Since the previous version was 3.0.15, the https://groovy-lang.org/changelogs/changelog-3.0.16.html[3.0.16] changes are also included.
    
    ==== Upgrade to Ant 1.10.13
    
    Ant has been updated to https://github.com/apache/ant/blob/rel/1.10.13/WHATSNEW[Ant 1.10.13].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (2)
  6. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    		statusKeyID      string
    		wantState        envelopekmsv2.State
    		wantEncryptCalls int
    		wantLogs         []string
    		wantErr          string
    	}{
    		{
    			name:        "happy path, no previous state",
    			service:     &testKMSv2EnvelopeService{keyID: "1"},
    			state:       envelopekmsv2.State{},
    			statusKeyID: "1",
    			wantState: envelopekmsv2.State{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/buildlist.go

    		// them. In an unpruned module this is a no-op for the build list as a whole —
    		// it just promotes what were previously transitive requirements to be
    		// roots — but in a pruned module it may pull in previously-irrelevant
    		// transitive dependencies.
    
    		newRS, rsErr := updateRoots(ctx, rs.direct, rs, nil, nil, false)
    		if rsErr != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. src/runtime/mheap.go

    	if gcBitsArenas.previous != nil {
    		if gcBitsArenas.free == nil {
    			gcBitsArenas.free = gcBitsArenas.previous
    		} else {
    			// Find end of previous arenas.
    			last := gcBitsArenas.previous
    			for last = gcBitsArenas.previous; last.next != nil; last = last.next {
    			}
    			last.next = gcBitsArenas.free
    			gcBitsArenas.free = gcBitsArenas.previous
    		}
    	}
    	gcBitsArenas.previous = gcBitsArenas.current
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  9. src/go/printer/nodes.go

    			}
    		} else {
    			// size too large or we don't have good layout information
    			size = 0
    		}
    
    		// If the previous line and the current line had single-
    		// line-expressions and the key sizes are small or the
    		// ratio between the current key and the geometric mean
    		// if the previous key sizes does not exceed a threshold,
    		// align columns and do not use formfeed.
    		if prevSize > 0 && size > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  10. pkg/proxy/endpointschangetracker_test.go

    				// here, then expectedChanges[0] is what we expect.
    				expectedChange := tc.expectedChanges[0]
    
    				if !reflect.DeepEqual(change.previous, expectedChange.previous) {
    					t.Errorf("Expected change.previous: %+v, got: %+v", expectedChange.previous, change.previous)
    				}
    
    				if !reflect.DeepEqual(change.current, expectedChange.current) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 79.9K bytes
    - Viewed (0)
Back to top