Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for interpolate (0.2 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                }
            }
    
            Model tmpModel = lineage.get(0);
    
            // inject interpolated activations
            List<Profile> interpolated = interpolateActivations(tmpModel.getProfiles(), profileActivationContext, problems);
            if (interpolated != tmpModel.getProfiles()) {
                tmpModel = tmpModel.withProfiles(interpolated);
            }
    
            // inject external profile into current model
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri May 03 08:48:38 GMT 2024
    - 61.5K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlReaderRequest.java

        interface Transformer {
            /**
             * Interpolate the value read from the xml document
             *
             * @param source    The source value
             * @param fieldName A description of the field being interpolated. The implementation may use this to
             *                  log stuff.
             * @return the interpolated value
             */
            String transform(String source, String fieldName);
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Nov 17 15:52:15 GMT 2023
    - 6.1K bytes
    - Viewed (0)
  3. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    RegexBasedInterpolat { private java.util.List valueSources; public void RegexBasedInterpolat(); public void RegexBasedInterpolat(java.util.List); public void addValueSource(ValueSource); public void removeValuesSource(ValueSource); public String interpolate(String, String); } org/codehaus/plexus/util/interpolation/ValueSource.class package org.codehaus.plexus.util.interpolation; public abstract interface ValueSource { public abstract Object getValue(String); } org/codehaus/plexus/util/InterpolationFilterR.class...
    Archive
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 164.6K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                                Severity.WARNING,
                                Version.V30,
                                prefix + path,
                                null,
                                "Failed to interpolate profile activation property " + s + ": " + propertyName
                                        + " expressions are not supported during profile activation.",
                                locationSupplier.get());
                    }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 13:13:07 GMT 2024
    - 73.1K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/project/interpolation/RegexBasedModelInterpolator.java

     */
    package org.apache.maven.project.interpolation;
    
    import java.io.IOException;
    import java.util.Properties;
    
    import org.apache.maven.project.path.PathTranslator;
    import org.codehaus.plexus.interpolation.Interpolator;
    import org.codehaus.plexus.interpolation.RegexBasedInterpolator;
    
    /**
     * Use a regular expression search to find and resolve expressions within the POM.
     *
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/settings/DefaultMavenSettingsBuilder.java

            if (path == null || path.isEmpty()) {
                // TODO This replacing shouldn't be necessary as user.home should be in the
                // context of the container and thus the value would be interpolated by Plexus
                String basedir = System.getProperty(basedirSysProp);
                if (basedir == null) {
                    basedir = System.getProperty("user.dir");
                }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 6.2K bytes
    - Viewed (0)
  7. maven-core/src/site/apt/configuration-management.apt

     have properties file (something I would like to avoid) say they don't
     contribute in any meaningful way to information in the POM. For example a
     properties file could be used the specify $ so it can be interpolated in
     <developerConnection/> but you couldn't use a properties file to specify the
     version of your project say. Anyway, food for thought to begin with.
    
     - elements that are critical for pom dissemination
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  8. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/BasicDerAdapter.kt

      /**
       * Returns a copy of this adapter that sets the encoded or decoded value as the type hint for the
       * other adapters on this SEQUENCE to interrogate.
       */
      fun asTypeHint(): BasicDerAdapter<T> = copy(typeHint = true)
    
      // Avoid Long.hashCode(long) which isn't available on Android 5.
      override fun hashCode(): Int {
        var result = 0
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 4.4K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            PomTestWrapper pom = buildPom("inherited-properties-interpolation/no-profile/sub");
    
            assertEquals("CHILD", pom.getValue("properties/overridden"));
            assertEquals("CHILD", pom.getValue("properties/interpolated"));
        }
    
        /* MNG-4102 */
        @Test
        void testInheritedPropertiesInterpolatedWithValuesFromChildWithActiveProfiles() throws Exception {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  10. RELEASE.md

            feature columns and losses.
        *   Add non-linear image warping ops: `tf.contrib.image.sparse_image_warp`,
            `tf.contrib.image.dense_image_warp`, and
            `tf.contrib.image.interpolate_spline`.
        *   Fix bug in `tf.contrib.opt.MultitaskOptimizerWrapper` where types of
            tensors were mismatched.
    *   Other:
        *   Low-level graph construction now calls the TensorFlow C API. This change
    Plain Text
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
Back to top