Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 682 for Avery (0.08 sec)

  1. platforms/software/build-init/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
        id("gradlebuild.update-init-template-versions")
    }
    
    description = """This project contains the Build Init plugin, which is automatically applied to the root project of every build, and provides the init and wrapper tasks.
    
    This project should NOT be used as an implementation dependency anywhere (except when building a Gradle distribution)."""
    
    errorprone {
        disabledChecks.addAll(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. pilot/pkg/model/sidecar.go

    // list for every sidecar. We simply have to match a sidecar to a
    // SidecarScope. Note that this is not the same as public/private scoped
    // services. The list of services seen by every sidecar scope (namespace
    // wide or per workload) depends on the imports, the listeners, and other
    // settings.
    //
    // Every proxy workload of SidecarProxy type will always map to a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    If using `--no-daemon`, it runs in the foreground after the build session.
    
    The following cleanup strategies are applied periodically (by default, once every 24 hours):
    
    - Version-specific caches in all `caches/<GRADLE_VERSION>/` directories are checked for whether they are still in use.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/session/KtAnalysisSessionProvider.kt

        public abstract fun getAnalysisSessionByUseSiteKtModule(useSiteKtModule: KtModule): KaSession
    
        // The `analyse` functions affect binary compatibility as they are inlined with every `analyze` call. To avoid breaking binary
        // compatibility, their implementations should not be changed unless absolutely necessary. It should be possible to put most
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/MultiParentClassLoader.java

     * A {@code ClassLoader} which delegates to multiple parent ClassLoaders.
     *
     * Note: It's usually a good idea to add a {@link CachingClassLoader} between this ClassLoader and any
     * ClassLoaders that use it as a parent, to prevent every path in the ClassLoader graph being searched.
     */
    public class MultiParentClassLoader extends ClassLoader implements ClassLoaderHierarchy {
    
        private final List<ClassLoader> parents;
    
        static {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. src/sync/once.go

    //
    // [the Go memory model]: https://go.dev/ref/mem
    type Once struct {
    	// done indicates whether the action has been performed.
    	// It is first in the struct because it is used in the hot path.
    	// The hot path is inlined at every call site.
    	// Placing done first allows more compact instructions on some architectures (amd64/386),
    	// and fewer instructions (to calculate offset) on other architectures.
    	done atomic.Uint32
    	m    Mutex
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. pkg/controller/ttl/ttl_controller.go

    		return
    	}
    	// Processing all updates of nodes guarantees that we will update
    	// the ttl annotation, when cluster size changes.
    	// We are relying on the fact that Kubelet is updating node status
    	// every 10s (or generally every X seconds), which means that whenever
    	// required, its ttl annotation should be updated within that period.
    	ttlc.enqueueNode(logger, node)
    }
    
    func (ttlc *Controller) deleteNode(obj interface{}) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/README.md

    ## Release Notes
    
    The release notes are generated from `src/docs/release/notes.md`.
    
    ### Schema
    
    Every `h2` tag and `h3` will be listed in the generated TOC.
    
    After every `h3` all content after the first element (usually a `p`) will be collapsed/expandable, up until the next `h3`, or `h2`.
    
    After every `h4` all content will be collapsed/expandable, up until the next `h4`, `h3` or `h2`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/generate-clients.md

    There are many tools to generate clients from **OpenAPI**.
    
    A common tool is <a href="https://openapi-generator.tech/" class="external-link" target="_blank">OpenAPI Generator</a>.
    
    If you are building a **frontend**, a very interesting alternative is <a href="https://github.com/hey-api/openapi-ts" class="external-link" target="_blank">openapi-ts</a>.
    
    ## Client and SDK Generators - Sponsor
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. cmd/kms-router.go

    	KMSVersions := []string{
    		kmsAPIVersionPrefix,
    	}
    
    	gz, err := gzhttp.NewWrapper(gzhttp.MinSize(1000), gzhttp.CompressionLevel(gzip.BestSpeed))
    	if err != nil {
    		// Static params, so this is very unlikely.
    		logger.Fatal(err, "Unable to initialize server")
    	}
    
    	for _, version := range KMSVersions {
    		// KMS Status APIs
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top