Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for inurl (0.04 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/proxy/transport_test.go

    import (
    	"bytes"
    	"compress/flate"
    	"compress/gzip"
    	"fmt"
    	"io"
    	"net/http"
    	"net/http/httptest"
    	"net/url"
    	"strings"
    	"testing"
    )
    
    func parseURLOrDie(inURL string) *url.URL {
    	parsed, err := url.Parse(inURL)
    	if err != nil {
    		panic(err)
    	}
    	return parsed
    }
    
    func TestProxyTransport(t *testing.T) {
    	testTransport := &Transport{
    		Scheme:      "http",
    		Host:        "foo.com",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/query/QueryFieldConfig.java

        public static final String SCORE_FIELD = "score";
    
        public static final String DOC_SCORE_FIELD = "_score";
    
        public static final String SITE_FIELD = "site";
    
        public static final String INURL_FIELD = "inurl";
    
        protected static final String SCORE_SORT_VALUE = "score";
    
        protected String[] responseFields;
    
        protected String[] scrollResponseFields;
    
        protected String[] cacheResponseFields;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/it/search/SearchApiTests.java

        }
    
        @Test
        public void searchTestWithInUrl() throws Exception {
            String query = "tools";
            Map<String, String> params = new HashMap<>();
            params.put("q", "inurl:" + query);
            params.put("num", "100");
            String response = checkMethodBase(new HashMap<>()).params(params).get("/api/v1/documents").asString();
            assertTrue(JsonPath.from(response).getInt("record_count") > 0);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/library/urls.go

    //	url('../relative-path') // error
    //
    // isURL
    //
    // Returns true if a string is a valid URL. The URL must be an absolute URI or an absolute path.
    //
    //	isURL( <string>) <bool>
    //
    // Examples:
    //
    //	isURL('https://user:******@****.***:80/path?query=val#fragment') // returns true
    //	isURL('/absolute-path') // returns true
    //	isURL('https://a:b:c/') // returns false
    //	isURL('../relative-path') // returns false
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/library/library_compatibility_test.go

    	knownFunctions := sets.New(
    		// Kubernetes 1.24:
    		"isSorted", "sum", "max", "min", "indexOf", "lastIndexOf", "find", "findAll", "url", "getScheme", "getHost", "getHostname",
    		"getPort", "getEscapedPath", "getQuery", "isURL",
    		// Kubernetes <1.27>:
    		"path", "group", "serviceAccount", "resource", "subresource", "namespace", "name", "check", "allowed", "reason",
    		// Kubernetes <1.28>:
    		"errored", "error",
    		// Kubernetes <1.29>:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 12:03:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/PropertyAccessorTypeTest.groovy

            where:
            getGetterName    | isGetterName    | setterName       | propertyName
            "getUrl"         | "isUrl"         | "setUrl"         | "url"
            "getURL"         | "isURL"         | "setURL"         | "URL"
            "getcCompiler"   | "iscCompiler"   | "setcCompiler"   | "cCompiler"
            "getCCompiler"   | "isCCompiler"   | "setCCompiler"   | "CCompiler"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/library/format.go

    //      format.dns1123SubdomainPrefix().validate("mysubdomain.prefix.-")
    //      format.dns1035LabelPrefix().validate("my-label-prefix-")
    //      format.uri().validate("http://example.com")
    //          Uses same pattern as isURL, but returns an error
    //      format.uuid().validate("123e4567-e89b-12d3-a456-426614174000")
    //      format.byte().validate("aGVsbG8=")
    //      format.date().validate("2021-01-01")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/environment/environment_test.go

    				{version.MajorMinor(1, 23), StoredExpressions},
    			},
    			validExpressions: []string{
    				"[1, 2, 3].indexOf(2) == 1",      // lists
    				"'abc'.contains('bc')",           //strings
    				"isURL('http://example.com')",    // urls
    				"'a 1 b 2'.find('[0-9]') == '1'", // regex
    			},
    		},
    		{
    			name: "authz disabled",
    			typeVersionCombinations: []envTypeAndVersion{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. src/cmd/vendor/rsc.io/markdown/link.go

    	}
    	j++
    	for j < len(s) && isScheme(s[j]) && j-(i+1) <= 32 {
    		j++
    	}
    	if j-(i+1) < 2 || j-(i+1) > 32 || j >= len(s) || s[j] != ':' {
    		return nil, 0, false
    	}
    	j++
    	for j < len(s) && isURL(s[j]) {
    		j++
    	}
    	if j >= len(s) || s[j] != '>' {
    		return nil, 0, false
    	}
    	link := s[i+1 : j]
    	// link = mdUnescaper.Replace(link)
    	return &AutoLink{link, link}, j + 1, true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. src/runtime/race/testdata/mop_test.go

    	var crawl func(string, int)
    	crawl = func(u string, d int) {
    		nurl := 0
    		defer func() {
    			ch <- nurl
    		}()
    		seen[u] = true
    		if d <= 0 {
    			wg.Done()
    			return
    		}
    		urls := [...]string{"a", "b", "c"}
    		for _, uu := range urls {
    			if _, ok := seen[uu]; !ok {
    				wg.Add(1)
    				go crawl(uu, d-1)
    				nurl++
    			}
    		}
    		wg.Done()
    	}
    	wg.Add(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 23 16:46:25 UTC 2023
    - 28.9K bytes
    - Viewed (0)
Back to top