Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for foo_vr (0.41 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/HtmlReportTemplate.kt

        /**
         * Returns the header and footer of the html template as a pair.
         */
        fun load(): Pair<String, String> {
            val template = readHtmlTemplate()
            val headerEnd = template.indexOf(modelLine)
            require(headerEnd > 0) {
                "Invalid configuration cache report template!"
            }
            val header = template.substring(0, headerEnd)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/AbstractProjectBasedReportTask.java

        protected abstract void generateReportFor(ProjectDetails project, T model);
    
        /**
         * Provides a means of printing a customizable footer section below the per-project details body
         * of the report.
         * <p>
         * By default, there is no footer information printed.
         *
         * @param modelsByProjectDetails information about the projects under report
         * @since 8.9
         */
        @Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/ProjectConfigurationIntegrationTest.groovy

        def "accessing the task by path from containing project is safe"() {
            buildFile << """
                task foobar
                println "the name: " + tasks.getByPath(":foobar").name
            """
    
            when:
            run()
    
            then:
            output.contains "the name: foobar"
        }
    
        @ToBeFixedForIsolatedProjects(because = "allprojects, evaluationDependsOn")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/upgrade/admin_upgrade.jsp

    											<la:option value="14.12">14.12</la:option>
    											<la:option value="14.13">14.13</la:option>
    										</la:select>
    									</div>
    								</div>
    							</div>
    							<div class="card-footer">
    								<button type="submit" class="btn btn-primary ${f:h(editableClass)}" name="upgradeFrom"
    									value="<la:message key="labels.upgrade_start_button"/>"
    								>
    									<em class="fa fa-arrow-circle-right">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. src/mime/quotedprintable/reader_test.go

    		{in: "foo\nbar", want: "foo\nbar"},
    		{in: "foo\rbar", want: "foo\rbar"},
    		{in: "foo\r\nbar", want: "foo\r\nbar"},
    
    		// Different types of soft line-breaks.
    		{in: "foo=\r\nbar", want: "foobar"},
    		{in: "foo=\nbar", want: "foobar"},
    		{in: "foo=\rbar", want: "foo", err: "quotedprintable: invalid hex byte 0x0d"},
    		{in: "foo=\r\r\r \nbar", want: "foo", err: `quotedprintable: invalid bytes after =: "\r\r\r \n"`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/template_test.go

    const (
    	validTmpl    = "image: {{ .ImageRepository }}/pause:ver"
    	validTmplOut = "image: registry.k8s.io/pause:ver"
    	doNothing    = "image: registry.k8s.io/pause:ver"
    	invalidTmpl1 = "{{ .baz }/d}"
    	invalidTmpl2 = "{{ !foobar }}"
    )
    
    func TestParseTemplate(t *testing.T) {
    	var tmplTests = []struct {
    		name        string
    		template    string
    		data        interface{}
    		output      string
    		errExpected bool
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/AbstractProcessInstrumentationInDynamicGroovyIntegrationTest.groovy

                    process.waitForProcessOutput(System.out, System.err)
                """, enableIndy)
    
            when:
            configurationCacheFails(":help")
    
            then:
            failure.assertOutputContains("FOOBAR=$expectedEnvVar\nCWD=${cwd.path}")
            problems.assertFailureHasProblems(failure) {
                withProblem("Plugin class 'SomePlugin': external process started")
            }
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/security/first-steps.md

        * So, to authenticate with our API, it sends a header `Authorization` with a value of `Bearer ` plus the token.
        * If the token contains `foobar`, the content of the `Authorization` header would be: `Bearer foobar`.
    
    ## **FastAPI**'s `OAuth2PasswordBearer`
    
    **FastAPI** provides several tools, at different levels of abstraction, to implement these security features.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:48:20 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/AbstractProcessInstrumentationIntegrationTest.groovy

        // spaces and it breaks logic String.execute which splits the given string at spaces without
        // any options to escape the space.
        ShellScript baseScript = ShellScript.builder().printEnvironmentVariable('FOOBAR').printWorkingDir().writeTo(testDirectory, "test")
    
        def setup() {
            testDirectory.createDir(pwd)
        }
    
    
        static String getPwd() {
            return "tmp"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. cmd/import-boss/main_test.go

    		base:   "",
    		pfx:    "/foo",
    		expect: false,
    	}, {
    		base:   "/foo",
    		pfx:    "/foo",
    		expect: true,
    	}, {
    		base:   "/foo/bar",
    		pfx:    "/foo",
    		expect: true,
    	}, {
    		base:   "/foobar/qux",
    		pfx:    "/foo",
    		expect: false,
    	}, {
    		base:   "/foo/bar/bat/qux/zrb",
    		pfx:    "/foo/bar/bat",
    		expect: true,
    	}}
    
    	for _, tc := range cases {
    		ret := hasPathPrefix(tc.base, tc.pfx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top