Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,782 for better (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/kubelet/kubelet_network.go

    	// docker/non-cri implementations have a passthrough UpdatePodCIDR
    	if err := kl.getRuntime().UpdatePodCIDR(ctx, cidr); err != nil {
    		// If updatePodCIDR would fail, theoretically pod CIDR could not change.
    		// But it is better to be on the safe side to still return true here.
    		return true, fmt.Errorf("failed to update pod CIDR: %v", err)
    	}
    	klog.InfoS("Updating Pod CIDR", "originalPodCIDR", podCIDR, "newPodCIDR", cidr)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 05 13:02:13 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/eventbus/EventBus.java

     * of EventBus may be better written using <a
     * href="https://kotlinlang.org/docs/coroutines-guide.html">Kotlin coroutines</a>, including <a
     * href="https://kotlinlang.org/docs/flow.html">Flow</a> and <a
     * href="https://kotlinlang.org/docs/channels.html">Channels</a>. Yet other usages are better served
     * by individual libraries that provide specialized support for particular use cases.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 25 16:37:57 UTC 2021
    - 12.8K bytes
    - Viewed (0)
  9. 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)
  10. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/internal/IdeaDependenciesProvider.java

             *
             * Instead, when generating files on the command line, the logged warning is enough.
             * When using the Tooling API, a dedicated "unresolved dependency" object would be better
             * and could be shown in a notification. The command line warning should probably be omitted in that case.
             */
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.1K bytes
    - Viewed (0)
Back to top