Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 236 for startm (0.13 sec)

  1. cni/pkg/nodeagent/informers_test.go

    		"",
    	).Return(nil)
    
    	server := &meshDataplane{
    		kubeClient: client.Kube(),
    		netServer:  fs,
    	}
    
    	fs.Start(ctx)
    	handlers := setupHandlers(ctx, client, server, "istio-system")
    	client.RunAndWait(ctx.Done())
    	go handlers.Start()
    
    	// label the namespace
    	labelsPatch := []byte(fmt.Sprintf(`{"metadata":{"labels":{"%s":"%s"}}}`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/cache/internal/DefaultGeneratedGradleJarCacheIntegrationTest.groovy

        }
    
        def "locks cache upon JAR creation"() {
            given:
            def startSecondInvocation = new CountDownLatch(1)
            def jarFile1
            def jarFile2
    
            when:
            concurrent.start {
                jarFile1 = defaultGeneratedGradleJarCache.get(CACHE_IDENTIFIER, new Action<File>() {
                    @Override
                    void execute(File file) {
                        startSecondInvocation.countDown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. src/os/exec/exec_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    
    	if err := cmd.Start(); err != nil {
    		t.Fatal(err)
    	}
    	t.Cleanup(func() {
    		if err := cmd.Wait(); err != nil {
    			t.Error(err)
    		}
    	})
    
    	if err := cmd.Start(); err == nil || !strings.HasSuffix(err.Error(), "already started") {
    		t.Fatalf("second call to Start returned a nil; want an 'already started' error")
    	}
    
    	outc := make(chan []byte, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/bootstrap/ForegroundDaemonAction.java

            this.configuration = configuration;
        }
    
        @Override
        public void run() {
            LoggingManagerInternal loggingManager = loggingRegistry.newInstance(LoggingManagerInternal.class);
            loggingManager.start();
    
            DaemonProcessState daemonProcessState = new DaemonProcessState(configuration, loggingRegistry, loggingManager, DefaultClassPath.of());
            ServiceRegistry daemonServices = daemonProcessState.getServices();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. pkg/apis/resource/validation/validation_resourceclaimtemplate_test.go

    		},
    		"bad-name": {
    			wantFailures: field.ErrorList{field.Invalid(field.NewPath("metadata", "name"), badName, "a lowercase RFC 1123 subdomain must consist of lower case alphanumeric characters, '-' or '.', and must start and end with an alphanumeric character (e.g. 'example.com', regex used for validation is '[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*')")},
    			template:     testClaimTemplate(badName, goodNS, goodClaimSpec),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    			// resourceVersion = 0 means that we don't require any specific starting point
    			// and we would like to start watching from ~now.
    			// However, to keep backward compatibility, we additionally need to return the
    			// current state and only then start watching from that point.
    			//
    			// TODO: In v2 api, we should stop returning the current state - #13969.
    			return w.getIntervalFromStoreLocked(key, matchesSingle)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessInstrumentationInStaticGroovyIntegrationTest.groovy

            // ProcessBuilder.start()
            fromStringArray()  | "new ProcessBuilder(command).start()"                                                 | ""                | ""
            fromStringList()   | "new ProcessBuilder(command).start()"                                                 | ""                | ""
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. cni/pkg/cmd/root.go

    		// Start metrics server
    		monitoring.SetupMonitoring(cfg.InstallConfig.MonitoringPort, "/metrics", ctx.Done())
    
    		// Start UDS log server
    		udsLogger := udsLog.NewUDSLogger(log.GetOutputLevel())
    		if err = udsLogger.StartUDSLogServer(cfg.InstallConfig.LogUDSAddress, ctx.Done()); err != nil {
    			log.Errorf("Failed to start up UDS Log Server: %v", err)
    			return
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. pkg/test/framework/suite.go

    		return s.doSkip(ctx)
    	}
    
    	defer func() {
    		end := time.Now()
    		scopes.Framework.Infof("=== Suite %q run time: %v ===", ctx.Settings().TestID, end.Sub(start))
    
    		ctx.RecordTraceEvent("suite-runtime", end.Sub(start).Seconds())
    		ctx.RecordTraceEvent("echo-calls", echo.GlobalEchoRequests.Load())
    		ctx.RecordTraceEvent("yaml-apply", GlobalYAMLWrites.Load())
    		traceFile := filepath.Join(ctx.Settings().BaseDir, "trace.yaml")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ExternalProcessFixture.groovy

                }
            }
        }
    
        static PrintProcessOutput processBuilder() {
            return new ProcessApiPrintOutput("new ProcessBuilder(command).start()", "ProcessBuilder(*command).start()", "new ProcessBuilder(command).start()")
        }
    
        static PrintProcessOutput stringArrayExecute() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top