Search Options

Results per page
Sort
Preferred Languages
Advance

Results 361 - 370 of 2,511 for mull (0.03 sec)

  1. src/test/java/org/codelibs/core/lang/ObjectUtilTest.java

            assertSame(ObjectUtil.defaultValue(null, hoge), hoge);
            assertSame(ObjectUtil.defaultValue(hoge, null), hoge);
            assertSame(ObjectUtil.defaultValue(hoge, hoge), hoge);
            assertSame(ObjectUtil.defaultValue(null, null), null);
            assertThat(ObjectUtil.defaultValue(null, "NULL"), is("NULL"));
            assertThat(ObjectUtil.defaultValue(null, 1), is(1));
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsBuildingRequest.java

         * @return This request, never {@code null}.
         */
        SettingsBuildingRequest setGlobalSettingsSource(SettingsSource globalSettingsSource);
    
        /**
         * Gets the project settings file.
         *
         * @return The project settings file or {@code null} if none.
         * @since 4.0.0
         */
        File getProjectSettingsFile();
    
        /**
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbPipeHandleImpl.java

            boolean wasOpen = isOpen();
            this.open = false;
            if ( this.input != null ) {
                this.input.close();
                this.input = null;
            }
    
            if ( this.output != null ) {
                this.output.close();
                this.output = null;
            }
    
            try {
                if ( wasOpen ) {
                    this.handle.close();
                }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Mon Apr 13 17:05:22 UTC 2020
    - 10.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/exec/Crawler.java

                final boolean runAll = webConfigIdList == null && fileConfigIdList == null && dataConfigIdList == null;
    
                Thread webFsCrawlerThread = null;
                Thread dataCrawlerThread = null;
    
                if (runAll || webConfigIdList != null || fileConfigIdList != null) {
                    webFsCrawlerThread = new Thread((Runnable) () -> {
                        // crawl web
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/connection/RealRoutePlanner.kt

      private val routeDatabase: RouteDatabase,
      private val connectionUser: ConnectionUser,
    ) : RoutePlanner {
      private var routeSelection: RouteSelector.Selection? = null
      private var routeSelector: RouteSelector? = null
      private var nextRouteToTry: Route? = null
    
      override val deferredPlans = ArrayDeque<Plan>()
    
      override fun isCanceled(): Boolean = connectionUser.isCanceled()
    
      @Throws(IOException::class)
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

                    .setState(state)//
                    .build();
        }
    
        protected byte[] decodeBase64(String base64String) {
            if (base64String == null) {
                return null;
            }
            try {
                return BASE64_DECODER.decode(base64String);
            } catch (IllegalArgumentException e) {
                if (e.getCause() instanceof DecodingException) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java

                    this.systemProperties =
                            systemProperties != null ? Map.copyOf(systemProperties) : session.getSystemProperties();
                    this.userProperties = userProperties != null ? Map.copyOf(userProperties) : session.getUserProperties();
                    this.repositoryMerging = repositoryMerging;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Wed Oct 09 11:07:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlResponse.java

            this.outputData = this.outputBuffer == null ? createOutputDecodable() : null;
    
            if ( this.inputData != null ) {
                this.inputData.decode(buffer, inputOffset, inputCount);
            }
            bufferIndex = Math.max(inputOffset + inputCount, bufferIndex);
    
            if ( this.outputBuffer != null ) {
                if ( outputCount > this.outputBuffer.length ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 7.4K bytes
    - Viewed (0)
  9. compat/maven-settings-builder/src/main/java/org/apache/maven/settings/merge/MavenSettingsMerger.java

            if (dominant == null || recessive == null) {
                return;
            }
    
            recessive.setSourceLevel(recessiveSourceLevel);
    
            List<String> dominantActiveProfiles = dominant.getActiveProfiles();
            List<String> recessiveActiveProfiles = recessive.getActiveProfiles();
    
            if (recessiveActiveProfiles != null) {
                if (dominantActiveProfiles == null) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/ws/WebSocketRecorder.kt

          this.delegate = null
          delegate.onOpen(webSocket, response)
        } else {
          events.add(Open(webSocket, response))
        }
      }
    
      override fun onMessage(
        webSocket: WebSocket,
        bytes: ByteString,
      ) {
        Platform.get().log("[WS $name] onMessage", Platform.INFO, null)
        val delegate = delegate
        if (delegate != null) {
          this.delegate = null
          delegate.onMessage(webSocket, bytes)
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top