Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 217 for startm (0.15 sec)

  1. pkg/kubelet/cm/devicemanager/manager_test.go

    		updateChan <- new(interface{})
    	}
    	activePods := func() []*v1.Pod {
    		return []*v1.Pod{}
    	}
    
    	// test steady state, initialization where sourcesReady, containerMap and containerRunningSet
    	// are relevant will be tested with a different flow
    	err = w.Start(activePods, &sourcesReadyStub{}, containermap.NewContainerMap(), sets.New[string]())
    	require.NoError(t, err)
    
    	return w, updateChan
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_server_test.go

    	}
    	clientConfig := &Config{
    		InsecureSkipVerify: true,
    		MinVersion:         VersionTLS12,
    	}
    	state, _, err := testHandshake(t, clientConfig, serverConfig)
    	if err != nil {
    		t.Fatalf("handshake failed: %s", err)
    	}
    	if state.Version != VersionTLS13 {
    		t.Fatalf("incorrect version %x, should be %x", state.Version, VersionTLS11)
    	}
    
    	clientConfig.MinVersion = 0
    	serverConfig.MaxVersion = VersionTLS11
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

         * Returns additional JVM args that should be used to start the build JVM.
         */
        protected List<String> getImplicitBuildJvmArgs() {
            List<String> buildJvmOpts = new ArrayList<>();
            buildJvmOpts.add("-ea");
    
            if (isDebug()) {
                if (System.getenv().containsKey("CI")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. cmd/test-utils_test.go

    	testServer.Server.TLS = config
    	testServer.Server.StartTLS()
    	return testServer
    }
    
    // Starts the test server and returns the TestServer instance.
    func StartTestServer(t TestErrHandler, instanceType string) TestServer {
    	// create an instance of TestServer.
    	testServer := UnstartedTestServer(t, instanceType)
    	testServer.Server.Start()
    	return testServer
    }
    
    // Sets the global config path to empty string.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //   FlushInfoLog() - flushes informational log messages.
    //
    // Stdout and stderr capturing:
    //   CaptureStdout()     - starts capturing stdout.
    //   GetCapturedStdout() - stops capturing stdout and returns the captured
    //                         string.
    //   CaptureStderr()     - starts capturing stderr.
    //   GetCapturedStderr() - stops capturing stderr and returns the captured
    //                         string.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    			// Assert
    			if err != nil {
    				t.Fatalf("AddPodToVolume failed. Expected: <no error> Actual: <%v>", err)
    			}
    			dsw.MarkVolumesReportedInUse([]v1.UniqueVolumeName{volumeName})
    
    			// Start the reconciler to fill ASW.
    			stopChan, stoppedChan := make(chan struct{}), make(chan struct{})
    			go func() {
    				defer close(stoppedChan)
    				reconciler.Run(stopChan)
    			}()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    		if i == len(lines)-1 && len(line) <= len(prefix) && bytes.TrimSpace(line) == nil {
    			lines[i] = []byte{}
    			break
    		}
    		if !bytes.HasPrefix(line, prefix) {
    			panic(fmt.Errorf("line %d doesn't start with expected number (%d) of tabs: %v", i, len(prefix), string(line)))
    		}
    		lines[i] = line[len(prefix):]
    	}
    	joined := string(bytes.Join(lines, []byte{'\n'}))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  8. src/cmd/cgo/out.go

    // while in the prolog written into the start of the C code generated
    // from a cgo-using Go file it means the C.GoString function. There is
    // no way to resolve this conflict, but it also doesn't make much
    // difference, as Go code never wants to refer to the latter meaning.
    const gccExportHeaderProlog = `
    /* Start of boilerplate cgo prologue.  */
    #line 1 "cgo-gcc-export-header-prolog"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.proto

    }
    
    message StartupProbe {
      // Enables or disables a startup probe.
      // For optimal startup times, changing this should be tied to the readiness probe values.
      //
      // If the probe is enabled, it is recommended to have delay=0s,period=15s,failureThreshold=4.
      // This ensures the pod is marked ready immediately after the startup probe passes (which has a 1s poll interval),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	var items []runtime.Object
    
    	// TODO(wojtek-t): Decide if we don't want to start workers more opportunistically.
    	workersNumber := e.DeleteCollectionWorkers
    	if workersNumber < 1 {
    		workersNumber = 1
    	}
    	wg := sync.WaitGroup{}
    	// Ensure that chanSize is not too high (to avoid wasted work) but
    	// at the same time high enough to start listing before we process
    	// the whole page.
    	chanSize := 2 * workersNumber
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
Back to top