Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 706 for IsSubstring (0.21 sec)

  1. src/index/suffixarray/sais2.go

    			unmap_8_64(text, sa, numLMS)
    		} else {
    			// If maxID == numLMS, then each LMS-substring
    			// is unique, so the relative ordering of two LMS-suffixes
    			// is determined by just the leading LMS-substring.
    			// That is, the LMS-suffix sort order matches the
    			// (simpler) LMS-substring sort order.
    			// Copy the original LMS-substring order into the
    			// suffix array destination.
    			copy(sa, sa[len(sa)-numLMS:])
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/dcerpc/DcerpcBinding.java

                    if (iface != null) {
                        int c, p;
                        c = iface.indexOf(':');
                        p = iface.indexOf('.', c + 1);
                        uuid = new UUID(iface.substring(0, c));
                        major = Integer.parseInt(iface.substring(c + 1, p));
                        minor = Integer.parseInt(iface.substring(p + 1));
                        return;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 3.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/CollectionPropertyIntegrationTest.groovy

            '"${str.toLowerCase().substring(1, 2)}", "${str.substring(2, 3)}"'                            | _
            '[ "${str.toLowerCase().substring(1, 2)}", "${str.substring(2, 3)}" ]'                        | _
            'providers.provider { [ "${str.toLowerCase().substring(1, 2)}", "${str.substring(2, 3)}" ] }' | _
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:57:00 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/internal/scan/config/fixtures/ApplyDevelocityPluginFixture.groovy

                def start = pluginManagementMatcher.start(0)
                def end = pluginManagementMatcher.end(0)
                pluginManagementBlock = settingsText.substring(start, end)
                settingsText = settingsText.substring(0, start) + settingsText.substring(end)
            } else {
                pluginManagementBlock = null
            }
    
            // todo: handle more special blocks, when actually needed
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AbstractFilePermissions.java

            return unixSymbolic.substring(0, 3);
        }
    
        @SuppressWarnings("OctalInteger")
        protected static int getGroupPartOf(int unixNumeric) {
            return (unixNumeric & 0_070) >> 3;
        }
    
        protected static String getGroupPartOf(String unixSymbolic) {
            return unixSymbolic.substring(3, 6);
        }
    
        @SuppressWarnings("OctalInteger")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java

                    dr.server = expandedNames[ 0 ].substring(1).toLowerCase();
                }
                else {
                    dr.server = ref.getSpecialName().substring(1).toLowerCase();
                }
                if ( log.isDebugEnabled() ) {
                    log.debug("Server " + dr.server + " path " + reqPath + " remain " + reqPath.substring(consumed) + " path consumed " + consumed);
                }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Nov 13 15:13:49 UTC 2021
    - 11K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java

            String url = u;
            final String originalUrl = url;
    
            int idx = url.indexOf("://");
            if (idx >= 0) {
                url = url.substring(idx + 3);
            }
    
            idx = url.indexOf('/');
            if (idx >= 0) {
                url = url.substring(0, idx);
            }
    
            if (url.equals(originalUrl)) {
                return getFessConfig().getCrawlerDocumentUnknownHostname();
            }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParser.java

                            endBaseStr = pos;
                        }
                        parts.add(original.substring(startPart, pos));
                        startPart = pos;
                    }
                    digit = false;
                }
            }
            if (pos > startPart) {
                parts.add(original.substring(startPart, pos));
            }
            DefaultVersion base = null;
            if (endBaseStr > 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. pkg/test/util/structpath/instance_test.go

    	tests := []struct {
    		name    string
    		substrs []string
    		err     bool
    	}{
    		{
    			name:    "Substring exist",
    			substrs: []string{"Random", "Type", "URL", "some"},
    			err:     false,
    		},
    		{
    			name:    "Substring does not exist",
    			substrs: []string{"RaNdOm"},
    			err:     true,
    		},
    		{
    			name:    "Substring empty",
    			substrs: []string{" "},
    			err:     true,
    		},
    	}
    	for _, tt := range tests {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 11 16:19:15 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/valueProviders/envVarsSysPropsDoValueSource/kotlin/build.gradle.kts

        interface Parameters : ValueSourceParameters {
            val substring: Property<String>
        }
    
        override fun obtain(): Map<String, String> {
            return System.getenv().filterKeys { key ->
                key.contains(parameters.substring.get())
            }
        }
    }
    // end::value-source[]
    
    // tag::create-provider[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 726 bytes
    - Viewed (0)
Back to top