Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 305 for _foobar (0.14 sec)

  1. platforms/documentation/docs/src/snippets/mavenMigration/profiles/tests/greeting-default.out

    foobar...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7 bytes
    - Viewed (0)
  2. 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)
  3. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyReportTaskIntegrationTest.groovy

    compileClasspath - Compile classpath for source set 'main'.
    +--- project :a
    |    \\--- foo:bar:1.0 -> 3.0
    |         \\--- foo:baz:5.0
    +--- project :b
    |    \\--- foo:bar:0.5.dont.exist -> 3.0 (*)
    +--- project :c
    |    \\--- foo:bar:3.0 (*)
    +--- project :d
    |    \\--- foo:bar:2.0 -> 3.0 (*)
    \\--- project :e
         \\--- foo:bar:3.0 (*)
    """
        }
    
        def "renders the dependency tree"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 05:32:54 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  4. tests/test_tutorial/test_query_params_str_validations/test_tutorial012_an_py39.py

        assert response.json() == {"q": ["foo", "bar"]}
    
    
    @needs_py39
    def test_multi_query_values(client: TestClient):
        url = "/items/?q=baz&q=foobar"
        response = client.get(url)
        assert response.status_code == 200, response.text
        assert response.json() == {"q": ["baz", "foobar"]}
    
    
    @needs_py39
    def test_openapi_schema(client: TestClient):
        response = client.get("/openapi.json")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/mavenMigration/profiles/kotlin/profile-default.gradle.kts

    val message by extra("foobar")  // <4>...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 39 bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/dependencies/HtmlDependencyReportTaskIntegrationTest.groovy

            barInsight.size() == 3
            barInsight[0].name == 'foo:bar:2.0'
            barInsight[0].resolvable == 'RESOLVED'
            barInsight[0].hasConflict == false
            barInsight[0].description == null
            barInsight[0].children.size() == 0
    
            barInsight[1].name == 'foo:bar:2.0'
            barInsight[1].resolvable == 'RESOLVED'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/mavenMigration/profiles/groovy/profile-default.gradle

    ext.message = 'foobar'  // <4>...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 31 bytes
    - Viewed (0)
  8. src/go/ast/print_test.go

    )
    
    var tests = []struct {
    	x any // x is printed as s
    	s string
    }{
    	// basic types
    	{nil, "0  nil"},
    	{true, "0  true"},
    	{42, "0  42"},
    	{3.14, "0  3.14"},
    	{1 + 2.718i, "0  (1+2.718i)"},
    	{"foobar", "0  \"foobar\""},
    
    	// maps
    	{map[Expr]string{}, `0  map[ast.Expr]string (len = 0) {}`},
    	{map[string]int{"a": 1},
    		`0  map[string]int (len = 1) {
    		1  .  "a": 1
    		2  }`},
    
    	// pointers
    	{new(int), "0  *0"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 15:35:30 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  9. docs/sts/assume-role.md

    ```
    [foobar]
    region = us-east-1
    aws_access_key_id = foobar
    aws_secret_access_key = foo12345
    ```
    
    > NOTE: In the following commands `--role-arn` and `--role-session-name` are not meaningful for MinIO and can be set to any value satisfying the command line requirements.
    
    ```
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  10. pkg/volume/csi/csi_metrics_test.go

    		name          string
    		volumeID      string
    		targetPath    string
    		expectSuccess bool
    	}{
    		{
    			name:          "with valid name and volume id",
    			expectSuccess: true,
    			volumeID:      "foobar",
    			targetPath:    "/mnt/foo",
    		},
    	}
    
    	for _, tc := range tests {
    		metricsGetter := &metricsCsi{volumeID: tc.volumeID, targetPath: tc.targetPath}
    		metricsGetter.csiClient = &csiDriverClient{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top