Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 607 for targetOS (0.2 sec)

  1. src/test/java/org/codelibs/fess/annotation/SecuredTest.java

            // Check if Secured annotation is present
            assertNotNull(Secured.class);
    
            // Check Target annotation
            Target target = Secured.class.getAnnotation(Target.class);
            assertNotNull(target);
            ElementType[] targetTypes = target.value();
            assertEquals(2, targetTypes.length);
            assertTrue(Arrays.asList(targetTypes).contains(ElementType.METHOD));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/NtlmContext.java

        }
    
        @Override
        public String getNetbiosName() {
            return this.netbiosName;
        }
    
        /**
         * Sets the target server's Service Principal Name (SPN).
         * @param targetName
         *            the target's SPN
         */
        public void setTargetName(final String targetName) {
            this.targetName = targetName;
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/JobHelperTest.java

            JobLog jobLog = new JobLog();
            jobLog.setId("test-log-1");
            jobLog.setJobName("Test Job");
            jobLog.setEndTime(null);
    
            MonitorTarget target = new MonitorTarget(jobLog);
            try {
                target.expired();
                // If it succeeds, check that lastUpdated is set
                assertNotNull(jobLog.getLastUpdated());
            } catch (Exception e) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Predicates.java

          implements Predicate<@Nullable Object>, Serializable {
        private final Object target;
    
        private IsEqualToPredicate(Object target) {
          this.target = target;
        }
    
        @Override
        public boolean apply(@Nullable Object o) {
          return target.equals(o);
        }
    
        @Override
        public int hashCode() {
          return target.hashCode();
        }
    
        @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/beans/impl/FieldDescImpl.java

                return null;
            }
            return pcd.getRawClass();
        }
    
        @Override
        public <T> T getFieldValue(final Object target) {
            assertArgumentNotNull("target", target);
    
            return FieldUtil.get(field, target);
        }
    
        @Override
        public <T> T getStaticFieldValue() {
            if (!isStatic()) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/pac/ASN1Util.java

     */
    public final class ASN1Util {
    
        private ASN1Util() {
        }
    
        /**
         * Casts an object to the specified type with type checking
         * @param <T> the target type
         * @param type the target class type
         * @param object the object to cast
         * @return object cast to type
         * @throws PACDecodingException if types are incompatible
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  7. apache-maven/src/assembly/component.xml

          </includes>
        </fileSet>
        <fileSet>
          <directory>target/maven-shared-archive-resources/META-INF</directory>
          <outputDirectory>./</outputDirectory>
          <includes>
            <include>LICENSE</include>
            <include>NOTICE</include>
          </includes>
        </fileSet>
        <fileSet>
          <directory>target/licenses/lib</directory>
          <outputDirectory>lib</outputDirectory>
          <includes>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sat Jun 07 06:22:47 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  8. src/main/webapp/js/help.js

      $(document).on("click touchend", function(e) {
        if (!$(e.target).closest("#searchOptions, [data-toggle='control-options']").length) {
          $("#searchOptions").removeClass("active");
        }
      });
    
      $("[data-toggle='control-options']").click(function(e) {
        e.preventDefault();
        var target = $(this).attr("data-target") || $(this).attr("href");
        if (target) {
          $(target).toggleClass("active");
        }
      });
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. .github/dependabot.yml

          interval: "daily"
    
      - package-ecosystem: "maven"
        directory: "/"
        schedule:
          interval: "daily"
        target-branch: "maven-4.0.x"
        labels:
          - "mvn40"
          - "dependencies"
    
      - package-ecosystem: "maven"
        directory: "/"
        schedule:
          interval: "daily"
        target-branch: "maven-3.9.x"
        labels:
          - "mvn3"
          - "dependencies"
    
      - package-ecosystem: "github-actions"
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sun Aug 17 19:26:41 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/io/Traverser.java

        /**
         * Searches for classes handled by this instance and calls the handler for each class.
         * <p>
         * If a root package is specified at instance construction, only classes under the root package are targeted.
         * </p>
         *
         * @param handler the handler to process classes
         */
        void forEach(ClassHandler handler);
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 2.1K bytes
    - Viewed (0)
Back to top