Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,457 for avoided (0.13 sec)

  1. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Combinators.kt

        readClass().asSubclass(T::class.java)
    
    
    /**
     * Workaround for serializing JDK types with complex/opaque state on Java 17+.
     *
     * **IMPORTANT** Should be avoided for composite/container types as all components would be serialized
     * using Java serialization.
     */
    fun WriteContext.encodeUsingJavaSerialization(value: Any) {
        ObjectOutputStream(outputStream).useToRun {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/base/base.go

    	// flag parsing.
    	CustomFlags bool
    
    	// Commands lists the available commands and help topics.
    	// The order here is the order in which they are printed by 'go help'.
    	// Note that subcommands are in general best avoided.
    	Commands []*Command
    }
    
    var Go = &Command{
    	UsageLine: "go",
    	Long:      `Go is a tool for managing Go source code.`,
    	// Commands initialized in package main
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/Project.java

         * <p>
         * Note: unlike in legacy code, logical checks against string representing packaging (returned by this method)
         * are NOT recommended (code like {@code "pom".equals(project.getPackaging)} must be avoided). Use method
         * {@link #getArtifacts()} to gain access to POM or build artifact.
         *
         * @see #getArtifacts()
         */
        @Nonnull
        Packaging getPackaging();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:42:51 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_capability_conflict.adoc

    If no resolution is given for all conflicts on a given capability, the build will fail given the module chosen for resolution was not part of the graph at all.
    
    In addition `select(null)` will result in an error and so should be avoided.
    --
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/feature_lifecycle.adoc

    Using a _deprecated_ feature will result in a runtime warning in Gradle's output.
    
    The use of _deprecated_ features should be avoided.
    The release notes for each release indicate any features being _deprecated_ by the release.
    
    [[backwards_compatibility]]
    == Backward compatibility policy
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/plugins/jvm/internal/JvmFeatureInternal.java

        /**
         * Get this feature's backing source set.
         * <p>
         * {@link SourceSet#getOutput()} and the classpath-returning methods on the returned
         * source set should ideally be avoided in favor of the similarly-named methods on
         * this feature. The concept of source sets having a single set of outputs is only
         * relevant for single-target features.
         *
         * @return This feature's source set.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/RoleBasedConfigurationContainerInternal.java

         * Otherwise, creates a new dependency scope configuration with the given name.
         *
         * <p>If {@code verifyPrexisting} is false, the normal deprecation warning will not be emitted. Setting this to false
         * should be avoided except in edge cases where it may emit deprecation warnings affecting large third-party plugins.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. src/html/template/error.go

    	//   the run-time value of {{.C}} which is not statically known.
    	//
    	//   The problem is usually something like missing quotes or angle
    	//   brackets, or can be avoided by refactoring to put the two contexts
    	//   into different branches of an if, range or with. If the problem
    	//   is in a {{range}} over a collection that should never be empty,
    	//   adding a dummy {{else}} can help.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  9. maven-compat/src/main/mdo/profiles.mdo

              <association>
                <type>RepositoryPolicy</type>
              </association>
            </field>
          </fields>
          <!-- prevent modello generation of an incorrect equals method. Could be avoided by using <identity/> tags to mark ID as the only identity field -->
          <codeSegments>
            <codeSegment>
              <version>1.0.0</version>
              <code><![CDATA[
                public boolean equals( Object obj )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 03 21:08:35 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Interpreter.kt

     * unprocessed contents of the script, the target object type and parent `ClassLoader`.
     *
     * Because each program is specialized to a given script structure, a lot of work is
     * avoided. For example, a top-level script containing a `plugins` block but no body
     * can be compiled down to a specialized program that instantiates the compiled
     * `plugins` block class directly - without reflection - and does nothing else. The
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 21.1K bytes
    - Viewed (0)
Back to top