Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 70 for newLru (0.12 sec)

  1. docs/en/docs/tutorial/schema-extra-example.md

    And that **JSON Schema** of the Pydantic model is included in the **OpenAPI** of your API, and then it's used in the docs UI.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. src/net/lookup_windows.go

    		return r.addrs, r.err
    	case <-ctx.Done():
    		// TODO(bradfitz,brainman): cancel the ongoing
    		// GetAddrInfoW? It would require conditionally using
    		// GetAddrInfoEx with lpOverlapped, which requires
    		// Windows 8 or newer. I guess we'll need oldLookupIP,
    		// newLookupIP, and newerLookUP.
    		//
    		// For now we just let it finish and write to the
    		// buffered channel.
    		return nil, newDNSError(mapErr(ctx.Err()), name, "")
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    +
    In this case, if it is desirable to maintain these shared cache entries for newer versions for longer retention periods, they will not be able to share a Gradle User Home with older versions. They will need to use a separate directory.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. cmd/global-heal.go

    				}
    
    				send(result)
    				return
    			}
    
    			var versionNotFound int
    			for _, version := range fivs.Versions {
    				// Ignore a version with a modtime newer than healing start time.
    				if version.ModTime.After(tracker.Started) {
    					continue
    				}
    
    				// Apply lifecycle rules on the objects that are expired.
    				if filterLifecycle(bucket, version.Name, version) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. cmd/bucket-metadata.go

    		bucketTaggingConfig,
    		bucketReplicationConfig,
    		bucketTargetsFile,
    		objectLockConfig,
    	}
    
    	configs := make(map[string][]byte, len(legacyConfigs))
    
    	// Handle migration from lockEnabled to newer format.
    	if b.LockEnabled {
    		configs[objectLockConfig] = enabledBucketObjectLockConfig
    		b.LockEnabled = false // legacy value unset it
    		// we are only interested in b.ObjectLockConfigXML or objectLockConfig value
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    Once enabled, you must create an initial lock state.
    It will cause Gradle to verify that resolution results do not change, resulting in the same selected dependencies even if newer versions are produced.
    Modifications to your build that would impact the resolved set of dependencies will cause it to fail.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/pv_controller_test.go

    	storeVersion(t, "Step1", c, "1", true)
    	// Store the same PV
    	storeVersion(t, "Step2", c, "1", true)
    	// Store newer PV
    	storeVersion(t, "Step3", c, "2", true)
    	// Store older PV - simulating old "PV updated" event or periodic sync with
    	// old data
    	storeVersion(t, "Step4", c, "1", false)
    	// Store newer PV - test integer parsing ("2" > "10" as string,
    	// while 2 < 10 as integers)
    	storeVersion(t, "Step5", c, "10", true)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  8. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

         * Defaults to the empty list.
         *
         * Compiler arguments not supported by the DSL can be added here.
         *
         * For example, it is possible to pass the {@code --enable-preview} option that was added in newer Java versions:
         * <pre><code>compilerArgs.add("--enable-preview")</code></pre>
         *
         * Note that if {@code --release} is added then {@code -target} and {@code -source}
         * are ignored.
         */
        @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. pkg/xds/server.go

    		w.NewWatchedResource(request.TypeUrl, request.ResourceNames)
    		return true, emptyResourceDelta
    	}
    
    	// If there is mismatch in the nonce, that is a case of expired/stale nonce.
    	// A nonce becomes stale following a newer nonce being sent to Envoy.
    	// previousInfo.NonceSent can be empty if we previously had shouldRespond=true but didn't send any resources.
    	if request.ResponseNonce != previousInfo.NonceSent {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    === Example: Testing cacheable tasks
    
    [source,groovy,indent=0]
    .BuildLogicFunctionalTest.groovy
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top