Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setupPlatform (0.05 sec)

  1. okhttp-testing-support/src/main/kotlin/okhttp3/testing/PlatformRule.kt

        AfterEachCallback,
        InvocationInterceptor {
        private val versionChecks = mutableListOf<Pair<Matcher<out Any>, Matcher<out Any>>>()
    
        override fun beforeEach(context: ExtensionContext) {
          setupPlatform()
        }
    
        override fun afterEach(context: ExtensionContext) {
          resetPlatform()
        }
    
        override fun interceptTestMethod(
          invocation: InvocationInterceptor.Invocation<Void>,
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 15.4K bytes
    - Viewed (1)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapVideo.java

         */
        public String getPlatform() {
            return platform;
        }
    
        /**
         * Sets the platform information.
         * @param platform the platform to set
         */
        public void setPlatform(final String platform) {
            this.platform = platform;
        }
    
        /**
         * Gets the live streaming flag.
         * @return the live value
         */
        public String getLive() {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:34:36 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/SitemapsHelper.java

                        buf = null;
                    }
                } else if (VIDEO_PLATFORM_ELEMENT.equals(elementName)) {
                    if (buf != null && currentVideo != null) {
                        currentVideo.setPlatform(buf.toString().trim());
                        buf = null;
                    }
                } else if (VIDEO_LIVE_ELEMENT.equals(elementName)) {
                    if (buf != null && currentVideo != null) {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Fri Nov 14 13:19:40 UTC 2025
    - 34.9K bytes
    - Viewed (0)
Back to top