Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 562 for search_ (0.16 sec)

  1. src/index/suffixarray/suffixarray.go

    func (x *Index) lookupAll(s []byte) ints {
    	// find matching suffix index range [i:j]
    	// find the first index where s would be the prefix
    	i := sort.Search(x.sa.len(), func(i int) bool { return bytes.Compare(x.at(i), s) >= 0 })
    	// starting at i, find the first index at which s is not a prefix
    	j := i + sort.Search(x.sa.len()-i, func(j int) bool { return !bytes.HasPrefix(x.at(j+i), s) })
    	return x.sa.slice(i, j)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/plugins/ExtensionAware.java

     * If <code>propertyMissing()</code> always returns a value for any property, Gradle will not search the rest of the scopes below.</li>
     *
     * <li>The extra properties of the object.  Each object maintains a map of extra properties, which
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 26 07:18:37 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  3. src/os/exec/lp_windows.go

    // license that can be found in the LICENSE file.
    
    package exec
    
    import (
    	"errors"
    	"io/fs"
    	"os"
    	"path/filepath"
    	"strings"
    	"syscall"
    )
    
    // ErrNotFound is the error resulting if a path search failed to find an executable file.
    var ErrNotFound = errors.New("executable file not found in %PATH%")
    
    func chkStat(file string) error {
    	d, err := os.Stat(file)
    	if err != nil {
    		return err
    	}
    	if d.IsDir() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/MetadataSourcesResolveIntegrationTest.groovy

            resolve.expectGraph {
                root(":", ":test:") {
                    edge("org.test:projectA:1.+", "org.test:projectA:1.2")
                }
            }
        }
    
        def "will only search for defined metadata sources"() {
            def metadataSource = isGradleMetadataPublished() ? "gradleMetadata" : useIvy() ? "ivyDescriptor" : "mavenPom"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. src/internal/bytealg/indexbyte_amd64.s

    	// Find first set bit, if any.
    	BSFL	DX, DX
    	JNZ	ssesuccess
    	// Advance to next block.
    	ADDQ	$16, DI
    sseloopentry:
    	CMPQ	DI, AX
    	JB	sseloop
    
    	// Search the last 16-byte chunk. This chunk may overlap with the
    	// chunks we've already searched, but that's ok.
    	MOVQ	AX, DI
    	MOVOU	(AX), X1
    	PCMPEQB	X0, X1
    	PMOVMSKB X1, DX
    	BSFL	DX, DX
    	JNZ	ssesuccess
    
    failure:
    	MOVQ $-1, (R8)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 01 19:06:01 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/meta/errors.go

    }
    
    // NoKindMatchError is returned if the RESTMapper can't find any match for a kind
    type NoKindMatchError struct {
    	// GroupKind is the API group and kind that was searched
    	GroupKind schema.GroupKind
    	// SearchedVersions is the optional list of versions the search was restricted to
    	SearchedVersions []string
    }
    
    func (e *NoKindMatchError) Error() string {
    	searchedVersions := sets.NewString()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 11 22:50:51 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  7. MIGRATION.md

    ## Migration From Other Enterprise Search Systems
    
    ### Google Search Appliance (GSA) / Google Mini
    
    Fess provides a [Google Search Appliance](https://enterprise.google.com/search/products/gsa.html) (GSA) compatible API. To enable this API, set `web.api.gsa=true` to system.properties. This will enable an enpoint at `<Fess Server Name>:8080/gsa`. When a search query is sent to `<Fess Server Name>:8080/gsa/?q=QUERY`, a GSA compatible response will be returned
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Mar 05 06:12:02 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  8. src/net/dnsconfig_unix_test.go

    			attempts: 2,
    		},
    	},
    	{
    		name: "testdata/search-resolv.conf",
    		want: &dnsConfig{
    			servers:  []string{"8.8.8.8:53"},
    			search:   []string{"test.", "invalid."},
    			ndots:    1,
    			timeout:  5 * time.Second,
    			attempts: 2,
    		},
    	},
    	{
    		name: "testdata/search-single-dot-resolv.conf",
    		want: &dnsConfig{
    			servers:  []string{"8.8.8.8:53"},
    			search:   []string{},
    			ndots:    1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 17:41:32 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/user/cbean/ca/bs/BsRoleCA.java

    import org.opensearch.search.aggregations.bucket.terms.TermsAggregationBuilder;
    import org.opensearch.search.aggregations.metrics.CardinalityAggregationBuilder;
    import org.opensearch.search.aggregations.metrics.ScriptedMetricAggregationBuilder;
    import org.opensearch.search.aggregations.metrics.TopHitsAggregationBuilder;
    import org.opensearch.search.aggregations.metrics.ValueCountAggregationBuilder;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/configuration/ApplyScriptPluginBuildOperationIntegrationTest.groovy

            ops[1].details.file == otherScript1.absolutePath
            ops[2].details.file == otherScript2.absolutePath
    
            operations.search(ops[0], ApplyScriptPluginBuildOperationType).size() == 2
            operations.search(ops[1], ApplyScriptPluginBuildOperationType).size() == 1
            operations.search(ops[2], ApplyScriptPluginBuildOperationType).size() == 0
        }
    
        def "captures settings script events"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 6.4K bytes
    - Viewed (0)
Back to top