- Sort Score
- Result 10 results
- Languages All
Results 451 - 460 of 1,123 for vxml (0.03 sec)
-
.github/workflows/maven.yml
- name: Prepare Mimir for Maven 4.x shell: bash run: | rm .mvn/extensions.xml mkdir -p ~/.m2 cp .github/ci-extensions.xml ~/.m2/extensions.xml - name: Build Maven distributions shell: bash run: ./mvnw verify -e -B -V - name: List contents of target directory shell: bashRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 16 04:24:24 UTC 2025 - 12.2K bytes - Viewed (0) -
internal/bucket/lifecycle/lifecycle.go
} // Lifecycle - Configuration for bucket lifecycle. type Lifecycle struct { XMLName xml.Name `xml:"LifecycleConfiguration"` Rules []Rule `xml:"Rule"` ExpiryUpdatedAt *time.Time `xml:"ExpiryUpdatedAt,omitempty"` } // HasTransition returns 'true' if lifecycle document has Transition enabled. func (lc Lifecycle) HasTransition() bool {Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Thu Apr 03 06:45:06 UTC 2025 - 18.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/XmlExtractor.java
* @param metaCharsetPattern The XML encoding pattern. */ public void setXmlEncodingPattern(final Pattern metaCharsetPattern) { xmlEncodingPattern = metaCharsetPattern; } /** * Returns the XML tag pattern. * @return The XML tag pattern. */ public Pattern getXmlTagPattern() { return xmlTagPattern; } /**Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 2.6K bytes - Viewed (0) -
compat/maven-compat/src/main/mdo/paramdoc.mdo
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.4K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/ProjectBuilderTest.java
getContainer().lookup(org.apache.maven.project.ProjectBuilder.class); File child = new File(tempDir.toFile(), "child/pom.xml"); // build project once projectBuilder.build(child, configuration); // modify parent File parent = new File(tempDir.toFile(), "pom.xml"); String parentContent = new String(Files.readAllBytes(parent.toPath()), StandardCharsets.UTF_8);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 17.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/XmlUtil.java
import org.codelibs.fess.crawler.exception.CrawlerSystemException; import org.xml.sax.Attributes; import org.xml.sax.InputSource; import org.xml.sax.helpers.DefaultHandler; /** * Utility class for XML-related operations. * * This class provides methods to escape special characters in XML strings, * strip invalid XML characters, and parse XML content into a map of data. * * <p>
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 22 13:28:22 UTC 2025 - 9.5K bytes - Viewed (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/ModelUpgradeStrategyTest.java
Document document = Document.of(pomXml); // Use a mutable map since the strategy modifies it Map<Path, Document> pomMap = new HashMap<>(); pomMap.put(Paths.get("pom.xml"), document); UpgradeContext context = createMockContext(TestUtils.createOptionsWithModelVersion(targetModelVersion)); UpgradeResult result = strategy.doApply(context, pomMap);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 38.8K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/configuration/DefaultBeanConfiguratorPathTest.java
*/ package org.apache.maven.configuration; import javax.xml.stream.XMLStreamException; import java.io.File; import java.io.StringReader; import java.nio.file.Path; import java.nio.file.Paths; import org.apache.maven.api.xml.XmlService; import org.apache.maven.configuration.internal.DefaultBeanConfigurator; import org.codehaus.plexus.util.xml.Xpp3Dom; import org.junit.jupiter.api.AfterEach;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Mar 25 09:45:07 UTC 2025 - 3.7K bytes - Viewed (0) -
internal/bucket/lifecycle/filter.go
if err := e.EncodeElement(f.And, xml.StartElement{Name: xml.Name{Local: "And"}}); err != nil { return err } case !f.Tag.IsEmpty(): if err := e.EncodeElement(f.Tag, xml.StartElement{Name: xml.Name{Local: "Tag"}}); err != nil { return err } default: // Always print Prefix field when both And & Tag are empty if err := e.EncodeElement(f.Prefix, xml.StartElement{Name: xml.Name{Local: "Prefix"}}); err != nil {
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Wed Sep 04 17:01:26 UTC 2024 - 6.2K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/util/XmlUtilTest.java
} public void test_stripInvalidXMLCharacters_valid() { // Test valid XML characters String input = "Valid XML text 123\t\n\r"; String result = XmlUtil.stripInvalidXMLCharacters(input); assertNotNull(result); assertTrue(result.contains("Valid XML text 123")); } public void test_stripInvalidXMLCharacters_withInvalidChars() {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 8.3K bytes - Viewed (0)