Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for foo76d (0.3 sec)

  1. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperProjectIntegrationTest.groovy

            file("build.gradle") << """
        task hello {
            doLast {
                println 'hello'
            }
        }
    
        task echoProperty {
            def food = providers.gradleProperty('fooD')
            doLast {
                println "fooD=" + food.get()
            }
        }
    """
        }
    
        void "has non-zero exit code on build failure"() {
            given:
            prepareWrapper()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperHttpsIntegrationTest.groovy

            file("build.gradle") << """
        task hello {
            doLast {
                println 'hello'
            }
        }
    
        task echoProperty {
            doLast {
                println "fooD=" + project.findProperty("fooD")
            }
        }
    """
        }
    
        private prepareWrapper(String baseUrl) {
            prepareWrapper(new URI("${baseUrl}/$TEST_DISTRIBUTION_URL"), keyStore)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperHttpIntegrationTest.groovy

            file("build.gradle") << """
        task hello {
            doLast {
                println 'hello'
            }
        }
    
        task echoProperty {
            doLast {
                println "fooD=" + project.findProperty("fooD")
            }
        }
    """
        }
    
        private prepareWrapper(String baseUrl) {
            prepareWrapper(new URI("${baseUrl}/$TEST_DISTRIBUTION_URL"))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. docs/en/docs/async.md

    But the details between *concurrency* and *parallelism* are quite different.
    
    To see the difference, imagine the following story about burgers:
    
    ### Concurrent Burgers
    
    You go with your crush to get fast food, you stand in line while the cashier takes the orders from the people in front of you. 😍
    
    <img src="/img/async/concurrent-burgers/concurrent-burgers-01.png" class="illustration">
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		})
    	}
    }
    
    // TestStoreListResourceVersion tests that if List with ResourceVersion > 0, it will wait until
    // the results are as fresh as given version.
    func TestStoreListResourceVersion(t *testing.T) {
    	fooPod := &example.Pod{
    		ObjectMeta: metav1.ObjectMeta{Namespace: "test", Name: "foo"},
    		Spec:       example.PodSpec{NodeName: "machine"},
    	}
    	barPod := &example.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers_test.go

    		},
    		{
    			node: api.Node{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo6"},
    				Status:     api.NodeStatus{Conditions: []api.NodeCondition{{Type: "InvalidValue", Status: api.ConditionTrue}}},
    			},
    			// Columns: Name, Status, Roles, Age, KubeletVersion
    			expected: []metav1.TableRow{{Cells: []interface{}{"foo6", "Unknown", "<none>", "<unknown>", ""}}},
    		},
    		{
    			node: api.Node{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
Back to top