Search Options

Results per page
Sort
Preferred Languages
Advance

Results 341 - 350 of 2,900 for TRUE (0.02 sec)

  1. api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlNode.java

    @Immutable
    public interface XmlNode {
    
        @Deprecated(since = "4.0.0", forRemoval = true)
        String CHILDREN_COMBINATION_MODE_ATTRIBUTE = XmlService.CHILDREN_COMBINATION_MODE_ATTRIBUTE;
    
        @Deprecated(since = "4.0.0", forRemoval = true)
        String CHILDREN_COMBINATION_MERGE = XmlService.CHILDREN_COMBINATION_MERGE;
    
        @Deprecated(since = "4.0.0", forRemoval = true)
        String CHILDREN_COMBINATION_APPEND = XmlService.CHILDREN_COMBINATION_APPEND;
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sat Jul 19 11:09:56 UTC 2025
    - 18.2K bytes
    - Viewed (0)
  2. android-test-app/build.gradle.kts

      }
    
      buildTypes {
        release {
          isShrinkResources = true
          isMinifyEnabled = true
          signingConfig = signingConfigs.getByName("debug")
          setProguardFiles(listOf(getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"))
          testProguardFiles("test-proguard-rules.pro")
        }
      }
    
      lint {
        abortOnError = true
      }
    }
    
    dependencies {
      implementation(libs.playservices.safetynet)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jul 19 12:35:48 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/DirFileEntryEnumIteratorBase.java

                    return false;
                }
            }
            if (this.nameFilter == null) {
                return true;
            }
            try {
                if (!this.nameFilter.accept(this.parent, name)) {
                    return false;
                }
                return true;
            } catch (final CIFSException e) {
                log.error("Failed to apply name filter", e);
                return false;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java

        }
    
        /**
         * Checks if the crawler is currently running.
         *
         * @return true if the crawler is running, false otherwise
         */
        public boolean isCrawlerRunning() {
            return crawlerRunning;
        }
    
        /**
         * Sets the crawler running status.
         *
         * @param crawlerRunning true to indicate the crawler is running, false otherwise
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/storage/admin_storage.jsp

                            <div class="card-header">
                                <h3 class="card-title">
                                    <a aria-hidden="true" href="${contextPath}/admin/storage/">
                                        <i class="fas fa-database fa-fw"
                                           aria-hidden="true"></i>${f:h(bucket)}
                                    </a>
                                    <c:forEach var="item" varStatus="s" items="${pathItems}">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu May 26 01:48:41 UTC 2022
    - 20.4K bytes
    - Viewed (0)
  6. src/test/java/jcifs/dcerpc/msrpc/MsrpcLookupSidsTest.java

            Field handleField = lsarpc.LsarLookupSids.class.getDeclaredField("handle");
            handleField.setAccessible(true);
            assertSame(mockPolicyHandle, handleField.get(lookupSids));
    
            Field countField = lsarpc.LsarLookupSids.class.getDeclaredField("count");
            countField.setAccessible(true);
            assertEquals(2, countField.get(lookupSids));
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/CommonServerMessageBlockRequestTest.java

            reset(request, nextRequest, splitRequest, cancelRequest);
        }
    
        @Test
        @DisplayName("Test isResponseAsync returns true when response is async")
        void testIsResponseAsyncTrue() {
            // Given
            when(request.isResponseAsync()).thenReturn(true);
    
            // When
            boolean result = request.isResponseAsync();
    
            // Then
            assertTrue(result);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  8. utils/utils_test.go

    		out      bool
    	}{
    		{"error equal", errors.New("1"), errors.New("1"), true},
    		{"error not equal", errors.New("1"), errors.New("2"), false},
    		{"driver.Valuer equal", ModifyAt{Time: now, Valid: true}, ModifyAt{Time: now, Valid: true}, true},
    		{"driver.Valuer not equal", ModifyAt{Time: now, Valid: true}, ModifyAt{Time: now.Add(time.Second), Valid: true}, false},
    		{"driver.Valuer equal (ptr to nil ptr)", (*ModifyAt)(nil), &ModifyAt{}, false},
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Thu Aug 22 11:03:42 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            return Constants.TRUE.equalsIgnoreCase(getSystemProperty(key, defaultValue ? Constants.TRUE : Constants.FALSE));
        }
    
        default void setSystemPropertyAsBoolean(final String key, final boolean value) {
            setSystemProperty(key, value ? Constants.TRUE : Constants.FALSE);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 86.5K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponseTest.java

            return Stream.of(Arguments.of(0x0, false), Arguments.of(0x1, true), // DFS
                    Arguments.of(0x2, true), // DFS_ROOT
                    Arguments.of(0x3, true), // DFS | DFS_ROOT
                    Arguments.of(0x8000, false), // ENCRYPT_DATA only
                    Arguments.of(0x8001, true), // ENCRYPT_DATA | DFS
                    Arguments.of(0xFFFF, true) // All flags including DFS
            );
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 19.3K bytes
    - Viewed (0)
Back to top