Search Options

Results per page
Sort
Preferred Languages
Advance

Results 741 - 750 of 1,673 for Docstring (0.24 sec)

  1. src/main/java/jcifs/netbios/UniAddress.java

        }
    
        /**
         * Return the a text representation of this address such as
         * <code>MYCOMPUTER/192.168.1.15</code>.
         */
        @Override
        public String toString() {
            return this.addr.toString();
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb1/trans/TransTransactNamedPipeResponseTest.java

            assertEquals(outputBuffer.length, result);
            assertArrayEquals(testData, outputBuffer);
        }
    
        @Test
        void testToString() {
            // Test toString method
            String result = response.toString();
            assertNotNull(result);
            assertTrue(result.startsWith("TransTransactNamedPipeResponse["));
            assertTrue(result.endsWith("]"));
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb1/smb1/BufferCacheSecurityTest.java

                }
    
                @Override
                int readDataWireFormat(byte[] buffer, int bufferIndex, int len) {
                    return 0;
                }
    
                @Override
                public String toString() {
                    return "TestTransaction";
                }
            };
    
            SmbComTransactionResponse rsp = new SmbComTransactionResponse() {
                @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/Sources.java

             */
            protected PathSource(Path path, String location) {
                this.path = requireNonNull(path, "path").normalize();
                this.location = location != null ? location : this.path.toString();
            }
    
            @Override
            @Nullable
            public Path getPath() {
                return path;
            }
    
            @Override
            @Nonnull
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/util/QueryStringBuilder.java

         */
        protected String quote(final String value) {
            if (value.split("\\s").length > 1) {
                return new StringBuilder().append('"').append(value.replace('"', ' ')).append('"').toString();
            }
            return value;
        }
    
        /**
         * Escapes special characters in a query string if escaping is enabled.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/DiscreteDomain.java

        @Override
        public Integer maxValue() {
          return Integer.MAX_VALUE;
        }
    
        private Object readResolve() {
          return INSTANCE;
        }
    
        @Override
        public String toString() {
          return "DiscreteDomain.integers()";
        }
    
        @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0;
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 17:34:21 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/Kerb5Context.java

                    return ticket.getSessionKey();
                }
            }
            return null;
        }
    
        /**
         * {@inheritDoc}
         *
         * @see java.lang.Object#toString()
         */
        @Override
        public String toString() {
            if (this.gssContext == null || !this.gssContext.isEstablished()) {
                return String.format("KERB5[src=%s,targ=%s]", this.clientName, this.serviceName);
            }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 13.5K bytes
    - Viewed (1)
  8. src/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java

        }
    
        public void test_toString() {
            // Test toString method (inherited from Throwable)
            String type = "CustomToken";
            String message = "Custom token error";
            InvalidAccessTokenException exception = new InvalidAccessTokenException(type, message);
    
            String toStringResult = exception.toString();
            assertTrue(toStringResult.contains(InvalidAccessTokenException.class.getName()));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/SID.java

     * such as <code>Administrators</code> or <code>MYDOM\alice</code>.
     * <p>
     * Consider the following output of <code>examples/SidLookup.java</code>:
     *
     * <pre>
     *        toString: S-1-5-21-4133388617-793952518-2001621813-512
     * toDisplayString: WNET\Domain Admins
     *         getType: 2
     *     getTypeText: Domain group
     *   getDomainName: WNET
     *  getAccountName: Domain Admins
     * </pre>
     */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  10. api/maven-api-core/src/test/java/org/apache/maven/api/feature/FeaturesTest.java

            // Test with integer 1 (should use toString() and then parseBoolean)
            Map<String, Object> properties = Map.of(Constants.MAVEN_DEPLOY_BUILD_POM, 1);
            assertFalse(Features.deployBuildPom(properties)); // "1".parseBoolean() = false
        }
    
        @Test
        void testDeployBuildPomWithIntegerZero() {
            // Test with integer 0 (should use toString() and then parseBoolean)
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jul 04 19:42:23 UTC 2025
    - 7.2K bytes
    - Viewed (0)
Back to top