Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 443 for Paging (0.1 sec)

  1. 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)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalBuildEnvironment.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.protocol;
    
    /**
     * Marker interface for the internal protocol purposes.
     * Corresponding client facing model is {@link org.gradle.tooling.model.build.BuildEnvironment}
     * <p>
     *
     * @since 1.0-milestone-8
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 939 bytes
    - Viewed (0)
  3. 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)
  4. releasenotes/notes/gateway-infra-gep.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
      **Added** support for [In-Cluster Gateway Deployments](https://gateway-api.sigs.k8s.io/geps/gep-1762/).
      Deployment also now has both `istio.io/gateway-name` and `gateway.networking.k8s.io/gateway-name` labels
      just like the Pods and Services.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 21:52:53 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/kubelet/cm/memorymanager/state/checkpoint.go

    }
    
    // NewMemoryManagerCheckpoint returns an instance of Checkpoint
    func NewMemoryManagerCheckpoint() *MemoryManagerCheckpoint {
    	//nolint:staticcheck // unexported-type-in-api user-facing error message
    	return &MemoryManagerCheckpoint{
    		Entries:      ContainerMemoryAssignments{},
    		MachineState: NUMANodeMap{},
    	}
    }
    
    // MarshalCheckpoint returns marshalled checkpoint
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 12:58:53 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/cases/cases.go

    // - https://www.unicode.org/Public/6.3.0/ucd/auxiliary/WordBreakTest.txt
    // - http://userguide.icu-project.org/transforms/casemappings
    
    // TODO:
    // - Case folding
    // - Wide and Narrow?
    // - Segmenter option for title casing.
    // - ASCII fast paths
    // - Encode Soft-Dotted property within trie somehow.
    
    // A Caser transforms given input to a certain case. It implements
    // transform.Transformer.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. istioctl/cmd/options.go

    	"log_caller":           true,
    	"log_output_level":     true,
    	// istioctl also inherits support for log_rotate, log_rotate_max_age, log_rotate_max_backups,
    	// log_rotate_max_size, but these are rarely appropriate for a user-facing CLI so we ignore them
    }
    
    func optionsCommand(rootCmd *cobra.Command) *cobra.Command {
    	retval := &cobra.Command{
    		Use:   "options",
    		Short: "Displays istioctl global options",
    		Args:  cobra.ExactArgs(0),
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top