Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 1,596 for setB (0.01 sec)

  1. src/main/java/jcifs/internal/smb1/com/SmbComWriteAndX.java

                                 * closes in between
                                 */
        }
    
        /**
         * Sets the write mode flags for this request.
         *
         * @param writeMode
         *            the writeMode to set
         */
        public final void setWriteMode(final int writeMode) {
            this.writeMode = writeMode;
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  2. android/guava-testlib/test/com/google/common/collect/testing/features/FeatureUtilTest.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.collect.testing.features;
    
    import static com.google.common.collect.Sets.newHashSet;
    import static com.google.common.collect.testing.features.FeatureEnumTest.assertGoodFeatureEnum;
    import static com.google.common.collect.testing.features.FeatureUtil.addImpliedFeatures;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Jul 14 14:44:08 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java

            @Nonnull
            public DependencyResolverRequestBuilder project(@Nullable Project project) {
                this.project = project;
                return this;
            }
    
            /**
             * Sets the root artifact for the dependency graph.
             * This must not be confused with {@link #root(DependencyCoordinates)}: The root dependency, like any
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb/SmbCopyUtilTest.java

    @ExtendWith(MockitoExtension.class)
    public class SmbCopyUtilTest {
    
        // --- Tests for openCopyTargetFile ---
    
        @ParameterizedTest
        @ValueSource(booleans = { true, false })
        @DisplayName("openCopyTargetFile sets correct access flags depending on alsoRead")
        void openCopyTargetFile_accessMask_respectsAlsoRead(boolean alsoRead) throws Exception {
            // Arrange
            SmbFile dest = mock(SmbFile.class);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/dict/DictionaryCreator.java

         */
        protected abstract DictionaryFile<? extends DictionaryItem> newDictionaryFile(String id, String path, Date timestamp);
    
        /**
         * Sets the dictionary manager for this creator.
         *
         * @param dictionaryManager the dictionary manager to set
         */
        public void setDictionaryManager(final DictionaryManager dictionaryManager) {
            this.dictionaryManager = dictionaryManager;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java

            return (Class<T>) propertyType;
        }
    
        @Override
        public final Method getReadMethod() {
            return readMethod;
        }
    
        /**
         * Sets the getter method.
         *
         * @param readMethod
         *            The getter method.
         */
        protected final void setReadMethod(final Method readMethod) {
            this.readMethod = readMethod;
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 24 01:52:43 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/util/transport/Message.java

        /**
         * Gets the raw payload of the message.
         *
         * @return the raw response message
         */
        byte[] getRawPayload();
    
        /**
         * Sets the raw payload of the message.
         *
         * @param rawPayload the raw message payload to set
         */
        void setRawPayload(byte[] rawPayload);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ForwardingNavigableSet.java

    import java.util.Iterator;
    import java.util.NavigableSet;
    import java.util.SortedSet;
    import org.jspecify.annotations.Nullable;
    
    /**
     * A navigable set which forwards all its method calls to another navigable set. Subclasses should
     * override one or more methods to modify the behavior of the backing set as desired per the <a
     * href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>.
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/LinkedHashMultimap.java

       */
      @CanIgnoreReturnValue
      @Override
      public Set<V> replaceValues(@ParametricNullness K key, Iterable<? extends V> values) {
        return super.replaceValues(key, values);
      }
    
      /**
       * Returns a set of all key-value pairs. Changes to the returned set will update the underlying
       * multimap, and vice versa. The entries set does not support the {@code add} or {@code addAll}
       * operations.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 19.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/job/AllJobScheduler.java

                    resource -> accessContextLogic.create(resource, OptionalThing::empty, OptionalThing::empty, () -> APP_TYPE));
        }
    
        /**
         * Sets the job class to be executed by this scheduler.
         *
         * @param jobClass the job class to set
         */
        public void setJobClass(final Class<? extends LaJob> jobClass) {
            this.jobClass = jobClass;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
Back to top