Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 3,120 for setOp (0.07 sec)

  1. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/maven/MavenS3RepoResolveIntegrationTest.groovy

            return '/maven/release/'
        }
    
        String artifactVersion = "1.85"
        MavenS3Module module
    
        def setup(){
            module = getMavenS3Repo().module("org.gradle", "test", artifactVersion)
        }
    
        def "should not download artifacts when already present in maven home"() {
            setup:
            module.publish()
    
            m2.generateGlobalSettingsFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/BuildInitPluginSpec.groovy

    class BuildInitPluginSpec extends AbstractProjectBuilderSpec {
        def setup() {
            project.gradle.attachSettings(Stub(SettingsState))
        }
    
        def "adds 'init' task"() {
            when:
            project.pluginManager.apply BuildInitPlugin
    
            then:
            project.tasks.init instanceof InitBuild
            project.tasks.init.group == "Build Setup"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 01:15:37 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/AbstractTaskOutputPackagingBenchmark.java

            private Path iterationDir;
    
            @Setup(Level.Trial)
            public void setupTrial() throws IOException {
                this.tempDir = Files.createTempDirectory("task-output-cache-benchmark-");
            }
    
            @TearDown(Level.Trial)
            public void tearDownTrial() throws IOException {
                FileUtils.forceDelete(tempDir.toFile());
            }
    
            @Setup(Level.Iteration)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. test/gcstring.go

    	"runtime"
    	"time"
    )
    
    type T struct {
    	ptr **int
    	pad [120]byte
    }
    
    var things []interface{}
    
    func main() {
    	setup()
    	runtime.GC()
    	runtime.GC()
    	time.Sleep(10*time.Millisecond)
    	runtime.GC()
    	runtime.GC()
    	time.Sleep(10*time.Millisecond)
    }
    
    func setup() {
    	var Ts []interface{}
    	buf := make([]byte, 128)
    	
    	for i := 0; i < 10000; i++ {
    		s := string(buf)
    		t := &T{ptr: new(*int)}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 872 bytes
    - Viewed (0)
  5. tests/integration/telemetry/tracing/otelcollector/tracing_test.go

    							})
    						}
    					})
    			}
    		})
    }
    
    func TestMain(m *testing.M) {
    	framework.NewSuite(m).
    		Label(label.CustomSetup).
    		Setup(istio.Setup(tracing.GetIstioInstance(), setupConfig)).
    		Setup(tracing.TestSetup).
    		Setup(testSetup).
    		Run()
    }
    
    // TODO: convert test to Telemetry API for both scenarios
    func setupConfig(_ resource.Context, cfg *istio.Config) {
    	if cfg == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:30 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. 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)
  7. src/main/java/org/codelibs/fess/app/web/admin/failureurl/AdminFailureurlAction.java

                RenderDataUtil.register(data, "failureUrlItems", failureUrlService.getFailureUrlList(failureUrlPager)); // page navi
            }).useForm(SearchForm.class, setup -> {
                setup.setup(form -> {
                    copyBeanToBean(failureUrlPager, form, op -> op.include("url", "errorCountMin", "errorCountMax", "errorName"));
                });
            });
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/joblog/AdminJoblogAction.java

                RenderDataUtil.register(data, "jobLogItems", jobLogService.getJobLogList(jobLogPager)); // page navi
            }).useForm(SearchForm.class, setup -> {
                setup.setup(form -> {
                    copyBeanToBean(jobLogPager, form, op -> op.include("id"));
                });
            });
        }
    
        private HtmlResponse asDetailsHtml() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. guava-tests/benchmark/com/google/common/collect/SetCreationBenchmark.java

      @Param("1234")
      private SpecialRandom random;
    
      @Param({"ImmutableSetImpl", "HashSetImpl"})
      private SetImpl impl;
    
      // the following must be set during setUp
      private CollectionBenchmarkSampleData sampleData;
    
      @BeforeExperiment
      void setUp() {
        sampleData = new CollectionBenchmarkSampleData(true, random, 0.8, size);
      }
    
      @Benchmark
      int creation(int reps) {
        int x = 0;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 1.8K bytes
    - Viewed (0)
  10. manifests/charts/gateway/README.md

    This allows the same configurations and lifecycle to apply to gateways as sidecars.
    
    Note: this does mean that the namespace the gateway is deployed in must not have the `istio-injection=disabled` label.
    See [Controlling the injection policy](https://istio.io/latest/docs/setup/additional-setup/sidecar-injection/#controlling-the-injection-policy) for more info.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 19:38:07 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top