Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for tasty (0.21 sec)

  1. src/html/example_test.go

    func ExampleEscapeString() {
    	const s = `"Fran & Freddie's Diner" <tasty@example.com>`
    	fmt.Println(html.EscapeString(s))
    	// Output: &#34;Fran &amp; Freddie&#39;s Diner&#34; &lt;tasty@example.com&gt;
    }
    
    func ExampleUnescapeString() {
    	const s = `&quot;Fran &amp; Freddie&#39;s Diner&quot; &lt;tasty@example.com&gt;`
    	fmt.Println(html.UnescapeString(s))
    	// Output: "Fran & Freddie's Diner" <tasty@example.com>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 19 05:15:22 UTC 2015
    - 619 bytes
    - Viewed (0)
  2. src/html/template/example_test.go

    	fmt.Println(template.URLQueryEscaper(v...))
    
    	// Output:
    	// &#34;Fran &amp; Freddie&#39;s Diner&#34; &lt;tasty@example.com&gt;
    	// &#34;Fran &amp; Freddie&#39;s Diner&#34; &lt;tasty@example.com&gt;
    	// &#34;Fran &amp; Freddie&#39;s Diner&#34;32&lt;tasty@example.com&gt;
    	// \"Fran \u0026 Freddie\'s Diner\" \******@****.***\u003E
    	// \"Fran \u0026 Freddie\'s Diner\" \******@****.***\u003E
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  3. platforms/jvm/scala/src/test/groovy/org/gradle/api/plugins/scala/Scala3PluginTest.groovy

            task.source as List  == project.sourceSets.main.output.findAll { it.name.endsWith(".tasty") } as List // We take output of main (with tasty files)
            assertThat(task.classpath, sameCollection(project.layout.files(project.sourceSets.main.output, project.sourceSets.main.compileClasspath)))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactSelectionIntegrationTest.groovy

        }
    }
    class FlavorSelectionRule implements AttributeDisambiguationRule<String> {
        void execute(MultipleCandidatesDetails<String> details) {
            if (details.candidateValues.contains('tasty')) {
                details.closestMatch('tasty')
            }
        }
    }
    
    dependencies.attributesSchema {
        attribute(buildType) {
            compatibilityRules.add(BuildTypeCompatibilityRule)
        }
        attribute(flavor) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/ScalaDoc.java

        public FileTree getSource() {
            return super.getSource();
        }
    
        /**
         * Returns the compilation outputs needed by Scaladoc filtered to include <a href="https://docs.scala-lang.org/scala3/guides/tasty-overview.html">TASTy</a> files.
         * <p>
         * NOTE: This is only useful with Scala 3 or later. Scala 2 only processes source files.
         * </p>
         * @return the compilation outputs produced from the sources
         * @since 7.3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaIntegrationTest.groovy

            def scalaLibs = [
                'scala3-compiler_3-3.0.1.', 'scala3-sbt-bridge-3.0.1.', 'scala3-interfaces-3.0.1.', 'tasty-core_3-3.0.1.',
                'scala3-library_3-3.0.1.', 'scala-asm-9.1.0-scala-1', 'compiler-interface-1.3.5', 'jline-reader-3.19.0.',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

                            from.attribute(color, 'blue')
                            from.attribute(flavor, 'bland')
                            to.attribute(color, 'green')
                            to.attribute(flavor, 'tasty')
                            parameters {
                                transformName = 'Single step transform'
                            }
                        }
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  8. src/net/http/client_test.go

    	}
    	if got := res.Header.Get("Location"); got != fakeURL {
    		t.Errorf("Location header = %q; want %q", got, fakeURL)
    	}
    }
    
    var expectedCookies = []*Cookie{
    	{Name: "ChocolateChip", Value: "tasty"},
    	{Name: "First", Value: "Hit"},
    	{Name: "Second", Value: "Hit"},
    }
    
    var echoCookiesRedirectHandler = HandlerFunc(func(w ResponseWriter, r *Request) {
    	for _, cookie := range r.Cookies() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/tasks/shouldRunAfterWithCycle/groovy/build.gradle

    def taskX = tasks.register('taskX') {
        doLast {
            println 'taskX'
        }
    }
    def taskY = tasks.register('taskY') {
        doLast {
            println 'taskY'
        }
    }
    def taskZ = tasks.register('taskZ') {
        doLast {
            println 'taskZ'
        }
    }
    taskX.configure { dependsOn(taskY) }
    taskY.configure { dependsOn(taskZ) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 365 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/tasks/finalizersWithFailure/groovy/build.gradle

    def taskX = tasks.register('taskX') {
        doLast {
            println 'taskX'
            throw new RuntimeException()
        }
    }
    def taskY = tasks.register('taskY') {
        doLast {
            println 'taskY'
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 242 bytes
    - Viewed (0)
Back to top