Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 706 for IsSubstring (0.15 sec)

  1. src/main/java/jcifs/smb1/http/NetworkExplorer.java

                    }
                } else { /* Basic */
                    String auth = new String( Base64.decode( msg.substring(6) ), "US-ASCII" );
                    int index = auth.indexOf( ':' );
                    String user = (index != -1) ? auth.substring(0, index) : auth;
                    String password = (index != -1) ? auth.substring(index + 1) : "";
                    index = user.indexOf('\\');
                    if (index == -1) index = user.indexOf('/');
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 22 03:57:31 UTC 2020
    - 19.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/http/NetworkExplorer.java

                }
                else { /* Basic */
                    String auth = new String(Base64.decode(msg.substring(6)), "US-ASCII");
                    int index = auth.indexOf(':');
                    String user = ( index != -1 ) ? auth.substring(0, index) : auth;
                    String password = ( index != -1 ) ? auth.substring(index + 1) : "";
                    index = user.indexOf('\\');
                    if ( index == -1 )
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 21.3K bytes
    - Viewed (0)
  3. samples/tlssurvey/src/main/kotlin/okhttp3/survey/types/SuiteId.kt

     */
    package okhttp3.survey.types
    
    import okio.ByteString
    
    data class SuiteId(val id: ByteString?, val name: String) {
      fun matches(suiteId: SuiteId): Boolean {
        return id == suiteId.id || name.substring(4) == suiteId.name.substring(4)
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Apr 02 01:44:15 UTC 2024
    - 842 bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/AbstractOptionIntegrationSpec.groovy

                    }
                }
            """
        }
    
        String taskWithSinglePropertyOption(String propertyType, String optionType) {
            String methodName = propertyType.substring(0, 1).toLowerCase() + propertyType.substring(1)
    
            """
                import org.gradle.api.DefaultTask;
                import org.gradle.api.tasks.Internal;
                import org.gradle.api.tasks.TaskAction;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 09:40:56 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

                    this.share = this.canon.substring(1);
                    this.unc = "\\";
                }
                else if ( firstSep == prefixLen ) {
                    this.share = this.canon.substring(1, firstSep);
                    this.unc = "\\";
                }
                else {
                    this.share = this.canon.substring(1, firstSep);
                    this.unc = this.canon.substring(firstSep, prefixLen + 1).replace('/', '\\');
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jul 20 08:24:53 UTC 2019
    - 23.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/suggest/converter/KatakanaToAlphabetConverter.java

                String[] alphabets;
                if (i + 1 < text.length() && convertMap.get(text.substring(i, i + 2)) != null) {
                    alphabets = convertMap.get(text.substring(i, i + 2));
                    i += 2;
                } else {
                    if (convertMap.get(text.substring(i, i + 1)) != null) {
                        alphabets = convertMap.get(text.substring(i, i + 1));
                    } else {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/validation/DefaultPluginId.java

            return value.contains(SEPARATOR);
        }
    
        @Nullable
        public String getNamespace() {
            return isQualified() ? value.substring(0, value.lastIndexOf(SEPARATOR)) : null;
        }
    
        public String getName() {
            return isQualified() ? value.substring(value.lastIndexOf(SEPARATOR) + 1) : value;
        }
    
        @Override
        public String toString() {
            return value;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultTextArea.java

                                    pos++;
                                } else if (next > pos) {
                                    ansi.a(textStr.substring(pos, next));
                                    pos = next;
                                } else {
                                    ansi.a(textStr.substring(pos));
                                    pos = textStr.length();
                                }
                            }
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/AbstractIdeLifecycleIntegrationTest.groovy

        String getCleanTaskName(String generationTaskName) {
            int lastSeparator = generationTaskName.lastIndexOf(":")
            String taskName = generationTaskName.substring(lastSeparator + 1)
            String cleanTaskName = "clean${taskName.capitalize()}"
            return generationTaskName.substring(0, lastSeparator + 1) + cleanTaskName
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/http/NtlmServlet.java

                }
                else {
                    String auth = new String(Base64.decode(msg.substring(6)), "US-ASCII");
                    int index = auth.indexOf(':');
                    String user = ( index != -1 ) ? auth.substring(0, index) : auth;
                    String password = ( index != -1 ) ? auth.substring(index + 1) : "";
                    index = user.indexOf('\\');
                    if ( index == -1 )
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 7.6K bytes
    - Viewed (0)
Back to top