Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 211 for Paging (0.17 sec)

  1. releasenotes/notes/50933.yaml

    apiVersion: release-notes/v2
    
    # This YAML file describes the format for specifying a release notes entry for Istio.
    # This should be filled in for all user facing changes.
    
    # kind describes the type of change that this represents.
    # Valid Values are:
    # - bug-fix -- Used to specify that this change represents a bug fix.
    # - security-fix -- Used to specify that this change represents a vulnerability fix.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 13:58:52 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. releasenotes/notes/apko-distroless.yaml

    kind: feature
    area: installation
    releaseNotes:
      - |
        **Updated** the [`distroless`](/docs/ops/configuration/security/harden-docker-images/) images to be based on [Wolfi](https://wolfi.dev).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 267 bytes
    - Viewed (0)
  3. releasenotes/notes/16585.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    issue:
      - 16585
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 406 bytes
    - Viewed (0)
  4. releasenotes/notes/49700.yaml

    apiVersion: release-notes/v2
    
    # This YAML file describes the format for specifying a release notes entry for Istio.
    # This should be filled in for all user facing changes.
    
    # kind describes the type of change that this represents.
    # Valid Values are:
    # - bug-fix -- Used to specify that this change represents a bug fix.
    # - security-fix -- Used to specify that this change represents a vulnerability fix.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sync/errgroup/errgroup.go

    //
    // The return value reports whether the goroutine was started.
    func (g *Group) TryGo(f func() error) bool {
    	if g.sem != nil {
    		select {
    		case g.sem <- token{}:
    			// Note: this allows barging iff channels in general allow barging.
    		default:
    			return false
    		}
    	}
    
    	g.wg.Add(1)
    	go func() {
    		defer g.done()
    
    		if err := f(); err != nil {
    			g.errOnce.Do(func() {
    				g.err = err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/GradleEnterprisePluginServiceRef.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * A service that provides the plugin service for the current build invocation.
     *
     * The plugin uses this to encapsulate its service in user facing code that may be cached.
     * This allows such cached code to use the plugin service for the current build when used from-cache.
     */
    @ServiceScope(Scope.BuildTree.class)
    public interface GradleEnterprisePluginServiceRef {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/resolver/ResolutionOutputsInternal.java

    import org.gradle.api.provider.Provider;
    
    /**
     * Internal counterpart of {@link ResolutionOutputs} that exposes the results as
     * their internal types, as well as the raw results before conversion to user-facing types.
     */
    public interface ResolutionOutputsInternal extends ResolutionOutputs {
    
        /**
         * Get the raw results of the resolution. The returned results are lazy. Calling
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KaEngineService.kt

     * intended to support platform implementations. They are defined in the Platform Interface, as opposed to the user-facing Analysis API,
     * because they are intended for the consumption of platform implementations, but not Analysis API users.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/resolver/ResolutionAccess.java

         */
        ResolutionResultProvider<ResolverResults> getResults();
    
        /**
         * Get the public representation of {@link #getResults()}, which exposes the raw
         * results as well-known user-facing types like {@link org.gradle.api.file.FileCollection}.
         */
        ResolutionOutputsInternal getPublicView();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. .github/PULL_REQUEST_TEMPLATE.md

    - [ ] Provide unit tests (under `<subproject>/src/test`) to verify logic.
    - [ ] Update User Guide, DSL Reference, and Javadoc for public-facing changes.
    - [ ] Ensure that tests pass sanity check: `./gradlew sanityCheck`.
    - [ ] Ensure that tests pass locally: `./gradlew <changed-subproject>:quickTest`.
    
    ### Reviewing cheatsheet
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 13 22:36:19 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top