Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,334 for setOp (0.04 sec)

  1. prow/integ-suite-kind.sh

      export METRICS_SERVER_CONFIG_DIR='./prow/config/metrics'
    
      if [[ "${TOPOLOGY}" == "SINGLE_CLUSTER" ]]; then
        trace "setup kind cluster" setup_kind_cluster_retry "istio-testing" "${NODE_IMAGE}" "${KIND_CONFIG}"
      else
        trace "load cluster topology" load_cluster_topology "${CLUSTER_TOPOLOGY_CONFIG_FILE}"
        trace "setup kind clusters" setup_kind_clusters "${NODE_IMAGE}" "${IP_FAMILY}"
    
        TOPOLOGY_JSON=$(cat "${CLUSTER_TOPOLOGY_CONFIG_FILE}")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 05:42:41 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. buildscripts/verify-build.sh

    	chmod a+x "$FUNCTIONAL_TESTS"
    }
    
    function main() {
    	echo "Testing in FS setup"
    	if ! run_test_fs; then
    		echo "FAILED"
    		purge "$WORK_DIR"
    		exit 1
    	fi
    
    	echo "Testing in Erasure setup"
    	if ! run_test_erasure; then
    		echo "FAILED"
    		purge "$WORK_DIR"
    		exit 1
    	fi
    
    	echo "Testing in Distributed Erasure setup"
    	if ! run_test_dist_erasure; then
    		echo "FAILED"
    		purge "$WORK_DIR"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 19:28:51 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/TestLauncherDebugTestsCrossVersionTest.groovy

    @TargetGradleVersion(">=5.6")
    @Timeout(60)
    class TestLauncherDebugTestsCrossVersionTest extends ToolingApiSpecification implements WithOldConfigurationsSupport {
        @Rule
        JDWPUtil jdwpClient = new JDWPUtil()
    
        def setup() {
            buildFile << """
                plugins { id 'java-library' }
                ${mavenCentralRepository()}
                dependencies { ${testImplementationConfiguration} 'junit:junit:4.13' }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/transfer/ProgressLoggingExternalResourceAccessorTest.groovy

            then:
            result == null
    
            and:
            1 * delegate.withContent(location, false, _) >> null
    
            and:
            0 * action._
        }
    
        def "reads empty content"() {
            setup:
            expectReadBuildOperation(0)
            expectResourceRead(new ByteArrayInputStream())
    
            when:
            def result = accessor.withContent(location, false, action)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 12:31:19 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/ClosedProjectSubstitutionCrossVersionSpec.groovy

    @TargetGradleVersion(">=5.6")
    class ClosedProjectSubstitutionCrossVersionSpec extends ToolingApiSpecification {
    
        def "will substitute and run build dependencies for closed projects on startup"() {
            setup:
            multiProjectBuildInRootFolder("parent", ["child1", "child2"]) {
                buildFile << """
                subprojects {
                    apply plugin: 'java-library'
                }
                project(":child1") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. .github/workflows/submit-github-dependency-graph.yml

    jobs:
      generate-and-submit:
        permissions:
          contents: write
        runs-on: ubuntu-latest
        steps:
        - uses: actions/checkout@v4
        - uses: actions/setup-java@v4
          with:
            distribution: temurin
            java-version: 11
        - name: Setup Gradle
          uses: gradle/actions/dependency-submission@v3
          with:
            # Action runs a custom dependencies task that fails with config-cache on Gradle 8.7 (works with 8.6)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/role/AdminRoleAction.java

            return asHtml(path_AdminRole_AdminRoleJsp).renderWith(data -> {
                RenderDataUtil.register(data, "roleItems", roleService.getRoleList(rolePager)); // page navi
            }).useForm(SearchForm.class, setup -> {
                setup.setup(form -> {
                    copyBeanToBean(rolePager, form, op -> op.include("id"));
                });
            });
        }
    
        private HtmlResponse asEditHtml() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. tests/integration/pilot/mcs/autoexport/autoexport_test.go

    )
    
    func TestMain(m *testing.M) {
    	// nolint: staticcheck
    	framework.
    		NewSuite(m).
    		Label(label.CustomSetup).
    		RequireMultiPrimary().
    		RequireMinVersion(17).
    		Setup(common.InstallMCSCRDs).
    		Setup(istio.Setup(&i, enableMCSAutoExport)).
    		Setup(common.DeployEchosFunc("se", &echos)).
    		Run()
    }
    
    func TestAutoExport(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(ctx framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/dra/plugin/client_test.go

    	for _, test := range []struct {
    		description string
    		setup       func(string) tearDown
    		pluginName  string
    		shouldError bool
    	}{
    		{
    			description: "plugin name is empty",
    			setup: func(_ string) tearDown {
    				return func() {}
    			},
    			pluginName:  "",
    			shouldError: true,
    		},
    		{
    			description: "plugin name not found in the list",
    			setup: func(_ string) tearDown {
    				return func() {}
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 16:27:05 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. tests/integration/ambient/main_test.go

    	// nolint: staticcheck
    	framework.
    		NewSuite(m).
    		RequireMinVersion(24).
    		Label(label.IPv4). // https://github.com/istio/istio/issues/41008
    		Setup(func(t resource.Context) error {
    			t.Settings().Ambient = true
    			return nil
    		}).
    		Setup(istio.Setup(&i, func(ctx resource.Context, cfg *istio.Config) {
    			// can't deploy VMs without eastwest gateway
    			ctx.Settings().SkipVMs()
    			cfg.EnableCNI = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top