Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 218 for endPod (0.12 sec)

  1. 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)
  2. 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)
  3. test/typeparam/issue50561.dir/diameter.go

    	underflow error
    }
    
    // InboundHandler is extends of uclient.NetInboundHandler
    type InboundHandler interface {
    	OriginHost() string
    	OriginRealm() string
    }
    
    type transactionID struct {
    	hopID uint32
    	endID uint32
    }
    
    type roundTripper struct {
    	promise map[transactionID]Promise[*ByteBuffer]
    	host    string
    	realm   string
    }
    
    func (r *roundTripper) OriginHost() string {
    	return r.host
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 13 22:58:24 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/eventclock/fake_event_clock_test.go

    		if nextTime.Before(lastTime) {
    			t.Errorf("Got %s after %s", nextTime, lastTime)
    		}
    	}
    	endTime := ec.Now()
    	dx := endTime.Sub(now)
    	if dx > time.Minute+fuzz {
    		t.Errorf("Run started at %#+v, ended at %#+v, dx=%d", now, endTime, dx)
    	}
    	now = endTime
    	var shouldRun int32
    	strictable = false
    	for i := 0; i < batchSize; i++ {
    		d := time.Duration(rand.Intn(30)-3) * time.Second
    		try(i%2 == 0, d >= 0, d)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 07 04:07:31 UTC 2021
    - 3.2K 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