Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 922 for uris (0.1 sec)

  1. src/main/resources/fess_indices/fess/lt/stopwords.txt

    judu
    judvi
    judviejų
    jųdviejų
    judviem
    judviese
    jumis
    jums
    jumyse
    juo
    juodu
    juodviese
    juos
    juose
    jus
    jūs
    jūsų
    ką
    kad
    kai
    kaip
    kas
    kiek
    kol
    kur
    kurie
    kuris
    man
    mane
    manęs
    manimi
    mano
    manyje
    mes
    metu
    mudu
    mudvi
    mudviejų
    mudviem
    mudviese
    mumis
    mums
    mumyse
    mus
    mūsų
    nei
    nes
    net
    nors
    nuo
    o
    pat
    per
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 786 bytes
    - Viewed (0)
  2. pkg/apis/rbac/helpers.go

    	r.PolicyRule.ResourceNames = combine(r.PolicyRule.ResourceNames, names)
    	return r
    }
    
    // URLs combines the PolicyRule.NonResourceURLs and input urls.
    func (r *PolicyRuleBuilder) URLs(urls ...string) *PolicyRuleBuilder {
    	r.PolicyRule.NonResourceURLs = combine(r.PolicyRule.NonResourceURLs, urls)
    	return r
    }
    
    // RuleOrDie calls the binding method and panics if there is an error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 23 15:11:00 UTC 2020
    - 12.1K bytes
    - Viewed (0)
  3. src/go/doc/comment/testdata/link6.txt

    -- input --
    URLs with punctuation are hard.
    We don't want to consume the end-of-sentence punctuation.
    
    For example, https://en.wikipedia.org/wiki/John_Adams_(miniseries).
    And https://example.com/[foo]/bar{.
    And https://example.com/(foo)/bar!
    And https://example.com/{foo}/bar{.
    And https://example.com/)baz{foo}.
    
    [And https://example.com/].
    
    -- gofmt --
    URLs with punctuation are hard.
    We don't want to consume the end-of-sentence punctuation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  4. pkg/apis/rbac/v1/helpers.go

    	r.PolicyRule.ResourceNames = append(r.PolicyRule.ResourceNames, names...)
    	return r
    }
    
    func (r *PolicyRuleBuilder) URLs(urls ...string) *PolicyRuleBuilder {
    	r.PolicyRule.NonResourceURLs = append(r.PolicyRule.NonResourceURLs, urls...)
    	return r
    }
    
    func (r *PolicyRuleBuilder) RuleOrDie() rbacv1.PolicyRule {
    	ret, err := r.Rule()
    	if err != nil {
    		panic(err)
    	}
    	return ret
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 18 15:37:57 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  5. platforms/software/resources/src/test/groovy/org/gradle/internal/resource/ExternalResourceNameTest.groovy

        def base = new File(root, "base")
    
        def "can construct a resource name from URI"() {
            expect:
            def name = new ExternalResourceName(new URI(uri))
    
            name.uri.toASCIIString() == uri
            name.path == expectedPath
            name.uri.path == expectedPath
            name.root.uri.toASCIIString() == expectedRoot
    
            where:
            uri                           | expectedRoot        | expectedPath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 17:19:47 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/maven-publish/publish-artifact/kotlin/build.gradle.kts

            create<MavenPublication>("maven") {
                artifact(rpmArtifact)
            }
        }
    // end::custom-artifact-publication[]
        repositories {
            // change URLs to point to your repo, e.g. http://my.org/repo
            maven {
                url = uri(layout.buildDirectory.dir("repo"))
            }
        }
    // tag::custom-artifact-publication[]
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/it/admin/WebConfigTests.java

            final Map<String, Object> requestBody = new HashMap<>();
            final String keyProp = NAME_PREFIX + id;
            final String urls = "http://" + NAME_PREFIX + id;
            requestBody.put(KEY_PROPERTY, keyProp);
            requestBody.put("urls", urls);
            requestBody.put("user_agent", "Mozilla/5.0");
            requestBody.put("num_of_thread", 5);
            requestBody.put("interval_time", 1000);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. cluster/gce/manifests/etcd.manifest

    /usr/local/bin/migrate-if-needed.sh 1>>/var/log/etcd{{ suffix }}.log 2>&1; fi; exec /usr/local/bin/etcd --name etcd-{{ hostname }} --listen-peer-urls {{ etcd_protocol }}://{{ host_ip }}:{{ server_port }} --initial-advertise-peer-urls {{ etcd_protocol }}://{{ hostname }}:{{ server_port }} --advertise-client-urls {{ etcd_apiserver_protocol }}://127.0.0.1:{{ port }} --listen-client-urls {{ etcd_apiserver_protocol }}://{{ listen_client_ip }}:{{ port }} {{ quota_bytes }} --data-dir /var/etcd/data{{ suffix }} --initial-cluster-state...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/maven-publish/conditional-publishing/kotlin/build.gradle.kts

                artifact(tasks["sourcesJar"])
            }
        }
        repositories {
            // change URLs to point to your repos, e.g. http://my.org/repo
            maven {
                name = "external"
                url = uri(layout.buildDirectory.dir("repos/external"))
            }
            maven {
                name = "internal"
                url = uri(layout.buildDirectory.dir("repos/internal"))
            }
        }
    }
    // end::publishing[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/SampleOutputNormalizer.groovy

            commandOutput = commandOutput.replaceAll(escapedFilePath, NORMALIZED_SAMPLES_PATH)
    
            // Replace sample project dir clickable file:/// URLs
            String escapedFileUrl = Pattern.quote(new ConsoleRenderer().asClickableFileUrl(executionMetadata.tempSampleProjectDir))
            commandOutput = commandOutput.replaceAll(escapedFileUrl, NORMALIZED_SAMPLES_FILE_URL)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top