Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,371 for better (0.11 sec)

  1. src/net/tcpsock_unix_test.go

    			if err != nil {
    				return
    			}
    			wg.Add(1)
    			go func(c Conn) {
    				var b [1]byte
    				c.Read(b[:])
    				c.Close()
    				wg.Done()
    			}(c)
    		}
    	}(ln)
    
    	attempts := int(1e4) // larger is better
    	wg.Add(attempts)
    	throttle := make(chan struct{}, runtime.GOMAXPROCS(-1)*2)
    	for i := 0; i < attempts; i++ {
    		throttle <- struct{}{}
    		go func(i int) {
    			defer func() {
    				<-throttle
    				wg.Done()
    			}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/EclipseDependenciesCreator.java

            }
    
            /*
             * This method returns the dependencies in buckets (projects first, then modules, then files),
             * because that's what we used to do since 1.0. It would be better to return the dependencies
             * in the same order as they come from the resolver, but we'll need to change all the tests for
             * that, so defer that until later.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/LocalComponentGraphResolveState.java

         * as dirty and in need of re-evaluation when we see certain types of modifications to a configuration.
         *
         * In the future, we could narrow the number of configurations that need to be re-evaluated, but it would
         * be better to get rid of the behavior that allows configurations to be modified once they've been observed.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. src/go/types/infer.go

    					//           a failure cause which allows for a better error message.
    					//           Eventually, unify should return an error with cause.
    					var cause string
    					constraint := tpar.iface()
    					if m, _ := check.missingMethod(tx, constraint, true, func(x, y Type) bool { return u.unify(x, y, exact) }, &cause); m != nil {
    						// TODO(gri) better error message (see TODO above)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  5. api/pom.xml

        <version>4.0.0-beta-4-SNAPSHOT</version>
      </parent>
    
      <artifactId>maven-api</artifactId>
      <packaging>pom</packaging>
      <name>Maven 4 API</name>
      <description>A new immutable API for Maven 4 to better manage what plugins and extensions can influence.</description>
    
      <modules>
        <module>maven-api-meta</module>
        <module>maven-api-di</module>
        <module>maven-api-xml</module>
        <module>maven-api-model</module>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/gradle/GradleBuild.java

         * Also note that a build may be included by multiple builds, so that the inclusions form a graph of builds rather than a tree of builds. There may be cycles in this graph.</p>
         *
         * <p>In general, it is better to use {@link #getEditableBuilds()} instead of this method.</p>
         *
         * @since 3.3
         */
        DomainObjectSet<? extends GradleBuild> getIncludedBuilds();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ImmutableSortedAsList.java

      /*
       * TODO(cpovirk): if we start to override indexOf/lastIndexOf under GWT, we'll want some way to
       * override subList to return an ImmutableSortedAsList for better performance. Right now, I'm not
       * sure there's any performance hit from our failure to override subListUnchecked under GWT
       */
      @Override
      ImmutableList<E> subListUnchecked(int fromIndex, int toIndex) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/additional/gradle_ides.adoc

    image::visual_studio_code.png[]
    
    The extension provides a visual interface for your Gradle build.
    You can use this interface to view Gradle Tasks and Project dependencies, or run Gradle Tasks as VS Code Tasks. The extension also offers a better Gradle build file authoring experience including syntax highlighting, error reporting, and auto-completion.
    
    You can find documentation link:https://code.visualstudio.com/docs/java/java-build[here].
    
    == Eclipse
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/fixtures/publish/RemoteRepositorySpec.groovy

                module(aid) {
                    version(v, spec)
                }
            }
        }
    
        /**
         * Use {@link #id} when possible since it doesn't rely on {@code methodMissing} and integrates better with IDEs.
         */
        void methodMissing(String name, args) {
            def (gid, aid, v) = name.split(':') as List
            Closure spec = {}
            if (args && args.length == 1 && args[0] instanceof Closure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/tooling-api-provider/src/main/java/org/gradle/tooling/internal/provider/DefaultConnection.java

            // Merge the connection services into the build process services
            // It would be better to separate these into different scopes, but many things still assume that connection services are available in the global scope,
            // so keep them merged as a migration step
            // It would also be better to create the build process services only if they are needed, ie when the tooling API is used in embedded mode
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top