Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 236 for referrer (0.08 sec)

  1. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsWebAuthentication.java

        /** updatedTime */
        protected Long updatedTime;
    
        /** username */
        protected String username;
    
        /** webConfigId */
        protected String webConfigId;
    
        // [Referrers] *comment only
    
        // ===================================================================================
        //                                                                             DB Meta
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/Configuration.java

         */
        int getMaxChannels();
    
        /**
         * Channel binding policy
         *
         * Property {@code jcifs.smb.client.channelBindingPolicy} (String, default "preferred")
         * Values: "disabled", "preferred", "required"
         *
         * @return channel binding policy
         */
        int getChannelBindingPolicy();
    
        /**
         * Load balancing strategy for multi-channel
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/rpc.java

                _dst.enc_ndr_short(this.length);
                _dst.enc_ndr_short(this.maximum_length);
                _dst.enc_ndr_referent(this.buffer, 1);
    
                if (this.buffer != null) {
                    _dst = _dst.deferred;
                    final int _bufferl = this.length / 2;
                    final int _buffers = this.maximum_length / 2;
                    _dst.enc_ndr_long(_buffers);
                    _dst.enc_ndr_long(0);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsDataConfig.java

        /** updatedBy */
        protected String updatedBy;
    
        /** updatedTime */
        protected Long updatedTime;
    
        /** virtualHosts */
        protected String[] virtualHosts;
    
        // [Referrers] *comment only
    
        // ===================================================================================
        //                                                                             DB Meta
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsScheduledJob.java

        protected Integer sortOrder;
    
        /** target */
        protected String target;
    
        /** updatedBy */
        protected String updatedBy;
    
        /** updatedTime */
        protected Long updatedTime;
    
        // [Referrers] *comment only
    
        // ===================================================================================
        //                                                                             DB Meta
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  6. okhttp/src/jvmTest/kotlin/okhttp3/FakeRoutePlanner.kt

      fun addPlan(): FakePlan =
        FakePlan(nextPlanId++).also {
          plans += it
        }
    
      override fun isCanceled() = canceled
    
      override fun plan(): FakePlan {
        // Return deferred plans preferentially. These don't require addPlan().
        if (deferredPlans.isNotEmpty()) return deferredPlans.removeFirst() as FakePlan
    
        if (nextPlanIndex >= plans.size && autoGeneratePlans) addPlan()
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            }
            if (patterns.length == 0) {
                return true;
            }
    
            if (referer == null) {
                return false;
            }
            return Arrays.stream(patterns).anyMatch(p -> p.matcher(referer).matches());
        }
    
        String getQueryHighlightContentDescriptionFields();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 86.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/net/URLUtil.java

            } catch (final IOException e) {
                throw new IORuntimeException(e);
            }
        }
    
        /**
         * Returns a {@link URLConnection} object that represents a connection to the remote object referred to by the URL.
         *
         * @param url
         *            The URL. Must not be {@literal null}.
         * @return A {@link URLConnection} object to the URL.
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

                }
            }
    
            return new String(out, 0, j);
        }
    
        /**
         * Check if the given mechanism is preferred for this credential
         *
         * @param mechanism the mechanism to check
         * @return whether the given mechanism is the preferred one for this credential
         */
        public boolean isPreferredMech(ASN1ObjectIdentifier mechanism) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30.3K bytes
    - Viewed (0)
  10. src/test/java/jcifs/dcerpc/msrpc/lsarpcTest.java

        @BeforeEach
        void setUp() {
            MockitoAnnotations.openMocks(this);
            // Set the deferred field directly since it's a public field
            mockNdrBuffer.deferred = mockDeferredNdrBuffer;
            // Set up deferred buffer chain to avoid NPE
            mockDeferredNdrBuffer.deferred = mockDeferredNdrBuffer; // Self-reference to avoid NPE
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 60.8K bytes
    - Viewed (0)
Back to top