Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 957 for _top (0.03 sec)

  1. src/internal/trace/testdata/testprog/stress-start-stop.go

    			w = os.Stdout
    		} else {
    			w = new(bytes.Buffer)
    		}
    		if err := trace.Start(w); err != nil {
    			log.Fatalf("failed to start tracing: %v", err)
    		}
    		time.Sleep(time.Millisecond)
    		trace.Stop()
    	}
    	<-outerDone
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/html/top.html

    <!DOCTYPE html>
    <html>
    <head>
      <meta charset="utf-8">
      <title>{{.Title}}</title>
      {{template "css" .}}
      <style type="text/css">
      </style>
    </head>
    <body>
      {{template "header" .}}
      <div id="top">
        <table id="toptable">
          <thead>
            <tr>
              <th id="flathdr1">Flat</th>
              <th id="flathdr2">Flat%</th>
              <th>Sum%</th>
              <th id="cumhdr1">Cum</th>
              <th id="cumhdr2">Cum%</th>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 14:39:18 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  3. src/main/webapp/images/logo-top.png

    logo-top.png...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Oct 30 11:23:45 UTC 2015
    - 1.5K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/worksWithNonStandardLayout/expectedFiles/top-level.iml.xml

    Tom Tresansky <******@****.***> 1689028866 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 482 bytes
    - Viewed (0)
  5. pilot/pkg/server/instance_test.go

    	inst.RunComponent("fake", func(stop <-chan struct{}) error {
    		return expected
    	})
    
    	stop := newReclosableChannel()
    	t.Cleanup(stop.Close)
    	g.Expect(inst.Start(stop.c)).To(Equal(expected))
    }
    
    func TestStartWithNoError(t *testing.T) {
    	g := NewWithT(t)
    
    	inst := server.New()
    	c := newFakeComponent(0, test.NewStop(t))
    	inst.RunComponent("fake", c.Run)
    
    	stop := newReclosableChannel()
    	t.Cleanup(stop.Close)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 23:02:39 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/fake.go

    	}
    	cleanupStop := false
    	stop := opts.Stop
    	if stop == nil {
    		// If we created the stop, clean it up. Otherwise, caller is responsible
    		cleanupStop = true
    		stop = make(chan struct{})
    	}
    	f := namespace.NewDiscoveryNamespacesFilter(
    		kclient.New[*corev1.Namespace](opts.Client),
    		opts.MeshWatcher,
    		stop,
    	)
    	kubelib.SetObjectFilter(opts.Client, f)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. platforms/core-runtime/concurrent/src/test/groovy/org/gradle/internal/concurrent/CompositeStoppableTest.groovy

            when:
            stoppable.stop()
    
            then:
            1 * a.stop()
            1 * b.stop()
        }
    
        def stopsAllElementsWhenOneFailsToStop() {
            Stoppable a = Mock()
            Stoppable b = Mock()
            RuntimeException failure = new RuntimeException()
            stoppable.add(a)
            stoppable.add(b)
    
            when:
            stoppable.stop()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. pilot/pkg/config/monitor/monitor_test.go

    		callCount++
    		return configs, err
    	}
    	mon := NewMonitor("", store, someConfigFunc, "")
    	stop := make(chan struct{})
    	defer func() { close(stop) }()
    	mon.Start(stop)
    
    	go func() {
    		updateTicker := time.NewTicker(100 * time.Millisecond)
    		numUpdates := 10
    		for {
    			select {
    			case <-stop:
    				updateTicker.Stop()
    				return
    			case <-updateTicker.C:
    				mon.updateCh <- struct{}{}
    				numUpdates--
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/async/ServiceLifecycleTest.groovy

                }
            }
    
            then:
            instant.action1Done > instant.action2Done
        }
    
        def "can stop multiple times"() {
            when:
            lifecycle.stop()
            lifecycle.stop()
            lifecycle.requestStop()
            lifecycle.requestStop()
            lifecycle.stop()
    
            then:
            noExceptionThrown()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:55 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/processors/RestartEveryNTestClassProcessorTest.groovy

            then:
            1 * delegate.processTestClass(test2)
            then:
            1 * delegate.stop()
            0 * _._
        }
    
        def "stopNow does nothing after stop completed"() {
            when:
            processor.startProcessing(resultProcessor)
            processor.processTestClass(test1)
            processor.stop()
    
            then:
            1 * factory.create() >> delegate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top