Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 682 for effective (0.11 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java

                String url,
                ArtifactRepositoryLayout repositoryLayout,
                ArtifactRepositoryPolicy snapshots,
                ArtifactRepositoryPolicy releases);
    
        /**
         * Calculates the effective repositories for the given input repositories which are assumed to be already mirrored
         * (if applicable). This process will essentially remove duplicate repositories by merging them into one equivalent
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  2. src/cmd/fix/gotypes.go

    			importSpec = spec
    		}
    
    	})
    	if importSpec == nil {
    		return false
    	}
    
    	// We are about to rename exact.* to constant.*, but constant is a common
    	// name. See if it will conflict. This is a hack but it is effective.
    	exists := renameTop(f, "constant", "constant")
    	suffix := ""
    	if exists {
    		suffix = "_"
    	}
    	// Now we need to rename all the uses of the import. RewriteImport
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/hash/Funnel.java

     * serialization of funnels. When possible, it is recommended that funnels be implemented as a
     * single-element enum to maintain serialization guarantees. See Effective Java (2nd Edition), Item
     * 3: "Enforce the singleton property with a private constructor or an enum type". For example:
     *
     * <pre>{@code
     * public enum PersonFunnel implements Funnel<Person> {
     *   INSTANCE;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/ModelData.java

     */
    record ModelData(ModelSource source, Model model) {
    
        /**
         * Gets unique identifier of the model
         *
         * @return The effective identifier of the model, never {@code null}.
         */
        public String id() {
            // if source is null, it is the super model, which can be accessed via empty string
            return source != null ? source.getLocation() : "";
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/GradleProjectBuilderOptions.java

        /**
         * Determines whether a builder for the {@link org.gradle.tooling.model.GradleProject} model should realize tasks.
         * <p>
         * This method has to be invoked during builder execution time to provide an effective value.
         * That is due to Android Studio (via Intellij IDEA) using {@code LongRunningOperation.withArguments()} to configure the value of the option.
         */
        public static boolean shouldRealizeTasks() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 03 17:25:26 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-settings/test-pom-and-settings-interpolation/pom.xml

        This boils down to the proper order of profile injection and interpolation, i.e.
        interpolate after profiles from all sources are injected.
      </description>
    
      <properties>
        <!-- collect the effective property values as derived by interpolation -->
        <pomVsSettingsInterpolated>${pomVsSettings}</pomVsSettingsInterpolated>
      </properties>
    
      <profiles>
        <profile>
          <id>pom</id>
          <activation>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 11 18:17:16 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  7. src/net/sockopt_bsd.go

    		return os.NewSyscallError("setsockopt", err)
    	}
    	// Allow reuse of recently-used ports.
    	// This option is supported only in descendants of 4.4BSD,
    	// to make an effective multicast application that requires
    	// quick draw possible.
    	return os.NewSyscallError("setsockopt", syscall.SetsockoptInt(s, syscall.SOL_SOCKET, syscall.SO_REUSEPORT, 1))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  8. maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/ToolchainsBuildingRequest.java

     * under the License.
     */
    package org.apache.maven.toolchain.building;
    
    import org.apache.maven.building.Source;
    
    /**
     * Collects toolchains that control the building of effective toolchains.
     *
     * @since 3.3.0
     */
    public interface ToolchainsBuildingRequest {
    
        /**
         * Gets the global toolchains source.
         *
         * @return The global toolchains source or {@code null} if none.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelCache.java

     */
    package org.apache.maven.model.building;
    
    import java.util.function.Supplier;
    
    import org.apache.maven.building.Source;
    
    /**
     * Caches auxiliary data used during model building like already processed raw/effective models. The data in the cache
     * is meant for exclusive consumption by the model builder and is opaque to the cache implementation. The cache key is
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 22 17:27:48 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. maven-settings/src/site/apt/index.apt

     -----
    
    Maven Settings Model
    
     This is the model for Maven settings in <<<org.apache.maven.settings>>> package,
     delegating content to {{{../api/maven-api-settings/index.html}Maven 4 API immutable settings}}. All the effective model
     building logic from multiple settings files is done in {{{../maven-settings-builder/}Maven Settings Builder}}.
    
     The following are generated from this model:
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top