Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 186 for endPod (0.1 sec)

  1. src/cmd/compile/internal/base/timings.go

    			var label string
    			var events []*event
    			if pt.start {
    				// previous phase started
    				label = pt.label
    				events = t.events[i-1]
    				if qt.start {
    					// start implicitly ended previous phase; nothing to do
    				} else {
    					// stop ended previous phase; append stop labels, if any
    					if qt.label != "" {
    						label += ":" + qt.label
    					}
    					// events associated with stop replace prior events
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/imports/build.go

    			// Note that ended==false here means that inSlashStar==false,
    			// since seeing a /* would have set ended==true.
    			end = len(content) - len(p)
    			continue Lines
    		}
    		if !bytes.HasPrefix(line, bSlashSlash) { // Not comment line
    			ended = true
    		}
    
    		if !inSlashStar && isGoBuildComment(line) {
    			if goBuild != nil {
    				return nil, nil, false, errMultipleGoBuild
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. samples/bookinfo/src/productpage/templates/productpage.html

                  </svg>
                  {% endfor %}
                  {% for n in range(5 - review.rating.stars) %}
                  <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="h-5 w-5 flex-none">
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. pkg/envoy/agent.go

    				log.Infof("Graceful termination logic ended prematurely, envoy process terminated early")
    				return
    			default:
    				if err != nil {
    					log.Errorf(err.Error())
    					retryCount++
    					// Max retry 5 times
    					if retryCount > 4 {
    						a.abortCh <- errAbort
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. scripts/docs.py

    {% for sponsor in sponsors.gold -%}
    <a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}"></a>
    {% endfor -%}
    {%- for sponsor in sponsors.silver -%}
    <a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}"></a>
    {% endfor %}
    {% endif %}
    """
    
    
    def generate_readme_content() -> str:
        en_index = en_docs_path / "docs" / "index.md"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:26:14 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. guava-testlib/README.md

    -   [StackOverflow: Ask "how-to" and "why-didn't-it-work" questions](https://stackoverflow.com/questions/ask?tags=guava+java)
    -   [guava-discuss: For open-ended questions and discussion](https://groups.google.com/group/guava-discuss)
    
    ## IMPORTANT WARNINGS
    
    1. APIs marked with the `@Beta` annotation at the class or method level
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 17:43:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache-local/src/test/groovy/org/gradle/caching/local/internal/DirectoryBuildCacheTest.groovy

                output.write("bar".getBytes())
            }
    
            then:
            1 * fileAccessTracker.markAccessed(cachedFile)
    
            // Note that we don't know which variant of the file ended up in the cache,
            // as `Files.move()` and `File.renameTo()` can either fail or replace the
            // already existing file; it's up to the implementation.
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 14:32:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/configuration/internal/DynamicCallContextTracker.java

         *
         * @param entryPoint the key to identify the dynamic call
         */
        void enterDynamicCall(Object entryPoint);
    
        /**
         * Notifies the tracker that the dynamic call ended.
         * The tracker itself notifies all the registered listeners.
         *
         * @param entryPoint the key identifying the dynamic call, should match the key passed to {@code enterDynamicCall}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:19 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. src/runtime/trace/annotation.go

    // The returned Region's [Region.End] method must be called
    // from the same goroutine where the region was started.
    // Within each goroutine, regions must nest. That is, regions started
    // after this region must be ended before this region can be ended.
    // Recommended usage is
    //
    //	defer trace.StartRegion(ctx, "myTracedRegion").End()
    func StartRegion(ctx context.Context, regionType string) *Region {
    	if !IsEnabled() {
    		return noopRegion
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/filterlatency/filterlatency_test.go

    	}
    	if filterRecordGot == nil {
    		t.Fatal("expected a filter record in the request context, but got nil")
    	}
    	if requestFilterEndedAt != filterCompletedAtGot {
    		t.Errorf("expected filter ended timestamp=%s but got=%s", requestFilterEndedAt, filterCompletedAtGot)
    	}
    }
    
    func TestTrackCompletedContextDoesNotHaveFilterRecord(t *testing.T) {
    	var actionCallCount, handlerCallCount int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top