Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,078 for checkOn (0.12 sec)

  1. guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

        @Keep
        public void checkArray(Converter<String, Integer> c, String s) {
          calledWith(c, s);
        }
    
        void check() {
          runTester();
          @SuppressWarnings("unchecked") // We are checking it anyway
          Converter<String, Integer> defaultConverter =
              (Converter<String, Integer>) getDefaultParameterValue(0);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Jul 14 14:44:08 UTC 2025
    - 47.7K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb1/trans2/Trans2FindNext2Test.java

            // Verify by writing parameters and checking the buffer
            byte[] buffer = new byte[256];
            int written = trans2FindNext2.writeParametersWireFormat(buffer, 0);
    
            // Check resume key at offset 6 (after sid and maxItems and informationLevel)
            int actualResumeKey = SMBUtil.readInt4(buffer, 6);
            assertEquals(newResumeKey, actualResumeKey);
    
            // Check filename is updated (it's at the end after flags)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb/SmbFileTest.java

            }
    
            @Test
            void testMkdir() throws SmbException, CIFSException {
                // Arrange
                when(mockTreeHandle.isSMB2()).thenReturn(false);
    
                // Mock exists() check - mkdir checks if directory already exists
                SmbComQueryInformationResponse existsResponse = mock(SmbComQueryInformationResponse.class);
                when(existsResponse.getAttributes()).thenReturn(0); // Not found
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/go/GoAction.java

                return redirect(ErrorAction.class);
            }
        }
    
        /**
         * Checks if the given URL represents a file system path.
         * Determines if the URL uses file system protocols that may require
         * special handling for content serving.
         *
         * @param url the URL to check
         * @return true if the URL is a file system path, false otherwise
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

     *   <li>Before the lock is acquired, the lock is checked against the current set of acquired
     *       locks---to each of the acquired locks, an edge from the soon-to-be-acquired lock is either
     *       verified or created.
     *   <li>If a new edge needs to be created, the outgoing edges of the acquired locks are traversed
     *       to check for a cycle that reaches the lock to be acquired. If no cycle is detected, a new
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 18 15:05:43 UTC 2025
    - 35.9K bytes
    - Viewed (0)
  6. docs/smb3-features/03-multi-channel-design.md

            this.address = address;
            this.linkSpeed = linkSpeed;
            this.ipv6 = address.getAddress().length == 16;
            this.capability = 0;
            
            // Check for RSS capability (simplified - would need OS-specific checks)
            this.rssCapable = checkRSSCapability();
            if (rssCapable) {
                this.capability |= NETWORK_INTERFACE_CAP_RSS;
            }
        }
        
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  7. compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/DefaultArtifactVersion.java

                    return null;
                }
                return (int) longValue;
            } catch (NumberFormatException e) {
                // should never happen since checked isDigits(s) before
                return null;
            }
        }
    
        @Override
        public String toString() {
            return comparable.toString();
        }
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/lease/LeaseManager.java

                this.epoch++;
            }
    
            /**
             * Check if lease has read caching
             *
             * @return true if read caching is enabled
             */
            public boolean hasReadCache() {
                return Smb2LeaseState.hasReadCaching(leaseState);
            }
    
            /**
             * Check if lease has write caching
             *
             * @return true if write caching is enabled
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/OsService.java

         * (e.g., "windows", "unix", "mac").
         *
         * @return the operating system family name (never null)
         */
        @Nonnull
        String family();
    
        /**
         * Checks if the current operating system belongs to the Windows family.
         * This includes all Windows variants (95, 98, ME, NT, 2000, XP, Vista, 7, 8, 10, 11).
         *
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Mon Feb 10 14:12:18 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/entity/DataStoreParams.java

         */
        public void putAll(final Map<String, String> map) {
            params.putAll(map);
        }
    
        /**
         * Checks if the specified key exists in the parameter map.
         *
         * @param key the key to check for existence
         * @return true if the key exists, false otherwise
         */
        public boolean containsKey(final String key) {
            return params.containsKey(key);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
Back to top