Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 572 for mstart0 (0.1 sec)

  1. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/PayloadClassLoaderRegistry.java

     * <p>Implementations must allow concurrent sessions.
     */
    @ThreadSafe
    public interface PayloadClassLoaderRegistry {
        /**
         * Starts serializing an object graph.
         * The returned value is not required to be thread-safe.
         */
        SerializeMap newSerializeSession();
    
        /**
         * Starts deserializing an object graph.
         * The returned value is not required to be thread-safe.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. src/runtime/cgo/gcc_linux_amd64.c

    	size_t size;
    	int err;
    
    	sigfillset(&ign);
    	pthread_sigmask(SIG_SETMASK, &ign, &oset);
    
    	pthread_attr_init(&attr);
    	pthread_attr_getstacksize(&attr, &size);
    	// Leave stacklo=0 and set stackhi=size; mstart will do the rest.
    	ts->g->stackhi = size;
    	err = _cgo_try_pthread_create(&p, &attr, threadentry, ts);
    
    	pthread_sigmask(SIG_SETMASK, &oset, nil);
    
    	if (err != 0) {
    		fatalf("pthread_create failed: %s", strerror(err));
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 22:06:46 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/fixtures/server.go

    	"k8s.io/apimachinery/pkg/runtime/schema"
    	genericapiserver "k8s.io/apiserver/pkg/server"
    	storagevalue "k8s.io/apiserver/pkg/storage/value"
    	"k8s.io/client-go/dynamic"
    	"k8s.io/client-go/rest"
    )
    
    // StartDefaultServer starts a test server.
    func StartDefaultServer(t servertesting.Logger, flags ...string) (func(), *rest.Config, *serveroptions.CustomResourceDefinitionsServerOptions, error) {
    	tearDownFn, s, err := startDefaultServer(t, flags...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. tensorflow/cc/training/queue_runner.h

      ~QueueRunner();
    
      /// Starts the queue runner with the given session.
      Status Start(Session* sess);
    
      /// Starts the queue runner with the given session and sets the run arguments
      /// for sess->Run. It also collects and stores the cost model.
      Status StartAndCollectCostGraph(Session* sess,
                                      const RunOptions& run_options = RunOptions());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 31 18:27:00 UTC 2022
    - 5K bytes
    - Viewed (0)
  5. src/html/template/examplefiles_test.go

    	})
    	// Clean up after the test; another quirk of running as an example.
    	defer os.RemoveAll(dir)
    
    	// pattern is the glob pattern used to find all the template files.
    	pattern := filepath.Join(dir, "*.tmpl")
    
    	// Here starts the example proper.
    	// T0.tmpl is the first name matched, so it becomes the starting template,
    	// the value returned by ParseGlob.
    	tmpl := template.Must(template.ParseGlob(pattern))
    
    	err := tmpl.Execute(os.Stdout, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 7.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/ProgressOperationsTest.groovy

        def ops = new ProgressOperations()
    
        def "starts operation"() {
            when:
            def op = ops.start("compile", null, new OperationIdentifier(1), null)
    
            then:
            op.parent == null
            op.operationId.id == 1L
        }
    
        def "maintains operation hierarchy"() {
            when:
            def op1 = ops.start("compile", null, new OperationIdentifier(1), null)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/processors/CaptureTestOutputTestResultProcessorTest.groovy

        TestResultProcessor target = Mock()
        TestOutputRedirector redirector = Mock()
        @Subject processor = new CaptureTestOutputTestResultProcessor(target, redirector)
    
        def "starts capturing output"() {
            def suite = new DefaultTestSuiteDescriptor("1", "Foo")
            def event = new TestStartEvent(1)
    
            when:
            processor.started(suite, event)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. dockerscripts/docker-entrypoint.sh

    #!/bin/sh
    #
    
    # If command starts with an option, prepend minio.
    if [ "${1}" != "minio" ]; then
    	if [ -n "${1}" ]; then
    		set -- minio "$@"
    	fi
    fi
    
    docker_switch_user() {
    	if [ -n "${MINIO_USERNAME}" ] && [ -n "${MINIO_GROUPNAME}" ]; then
    		if [ -n "${MINIO_UID}" ] && [ -n "${MINIO_GID}" ]; then
    			chroot --userspec=${MINIO_UID}:${MINIO_GID} / "$@"
    		else
    			echo "${MINIO_USERNAME}:x:1000:1000:${MINIO_USERNAME}:/:/sbin/nologin" >>/etc/passwd
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Nov 03 21:18:18 UTC 2023
    - 675 bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/internal/language/language.go

    	// Remove the setting if value is "".
    	if value == "" {
    		start, sep, end, _ := t.findTypeForKey(key)
    		if start != sep {
    			// Remove a possible empty extension.
    			switch {
    			case t.str[start-2] != '-': // has previous elements.
    			case end == len(t.str), // end of string
    				end+2 < len(t.str) && t.str[end+2] == '-': // end of extension
    				start -= 2
    			}
    			if start == int(t.pVariant) && end == len(t.str) {
    				t.str = ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  10. cluster/images/etcd/migrate/migrate.go

    	opts = migrateOpts{}
    )
    
    func main() {
    	registerFlags(migrateCmd.Flags(), &opts)
    	err := migrateCmd.Execute()
    	if err != nil {
    		klog.Errorf("Failed to execute migratecmd: %s", err)
    	}
    }
    
    // runMigrate starts the migration.
    func runMigrate() {
    	if err := opts.validateAndDefault(); err != nil {
    		klog.Fatalf("%v", err)
    	}
    	copyBinaries()
    
    	target := &EtcdVersionPair{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 16 23:10:54 UTC 2020
    - 3.8K bytes
    - Viewed (0)
Back to top