Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 50 for zeroing (0.64 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		{
    			name: "RV=unset, allowWatchBookmarks=true, sendInitialEvents=nil",
    			opts: listOptions(true, nil, ""),
    			// Expecting RV 0, due to https://github.com/kubernetes/kubernetes/pull/123935 reverted to serving those requests from watch cache.
    			// Set to 100, when WatchFromStorageWithoutResourceVersion is set to true.
    			expectedWatchResourceVersion: 0,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                            .map(Object::toString)
                            .toList();
                    if (!Objects.equals(oldRepos, newRepos)) {
                        logger.debug("Merging repositories from " + model.getId() + "\n"
                                + newRepos.stream().map(s -> "    " + s).collect(Collectors.joining("\n")));
                    }
                }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// versions are the api versions that are available.
    	// +listType=atomic
    	Versions []string `json:"versions" protobuf:"bytes,1,rep,name=versions"`
    	// a map of client CIDR to server address that is serving this group.
    	// This is to help clients reach servers in the most network-efficient way possible.
    	// Clients can use the appropriate server address as per the CIDR that they match.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  4. guava/src/com/google/common/collect/ImmutableSortedMap.java

       * elements.
       *
       * <p>If the mapped keys contain duplicates (according to the comparator), the values are merged
       * using the specified merging function. Entries will appear in the encounter order of the first
       * occurrence of the key.
       *
       * @since 21.0
       */
      public static <T extends @Nullable Object, K, V>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  5. src/html/template/escape_test.go

    		{
    			// covering issue 10801
    			"{{.X | (print 12 | println).x }}",
    			".X | (print 12 | println).x | urlquery | html",
    			[]string{"urlquery", "html"},
    		},
    		// The following test cases ensure that the merging of internal escapers
    		// with the predefined "html" and "urlquery" escapers is correct.
    		{
    			"{{.X | urlquery}}",
    			".X | _html_template_urlfilter | urlquery",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  6. common/scripts/metallb-native.yaml

              allowPrivilegeEscalation: false
              capabilities:
                drop:
                - all
              readOnlyRootFilesystem: true
            volumeMounts:
            - mountPath: /tmp/k8s-webhook-server/serving-certs
              name: cert
              readOnly: true
          nodeSelector:
            kubernetes.io/os: linux
          securityContext:
            fsGroup: 65534
            runAsNonRoot: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     *
     * Because they don't attempt canonical form, these classes are surprisingly difficult to use
     * securely. Suppose you're building a webservice that checks that incoming paths are prefixed
     * "/static/images/" before serving the corresponding assets from the filesystem.
     *
     * ```java
     * String attack = "http://example.com/static/images/../../../../../etc/passwd";
     * System.out.println(new URL(attack).getPath());
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  8. src/net/http/fs_test.go

    	req.URL.Path = ""
    	ServeFile(rec, req, "testdata")
    	res := rec.Result()
    	if res.StatusCode != 301 {
    		t.Errorf("code = %v; want 301", res.Status)
    	}
    }
    
    // Tests that ranges are ignored with serving empty content. (Issue 54794)
    func TestServeContentWithEmptyContentIgnoreRanges(t *testing.T) {
    	for _, r := range []string{
    		"bytes=0-128",
    		"bytes=1-",
    	} {
    		rec := httptest.NewRecorder()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  9. pkg/apis/admissionregistration/types.go

    }
    
    // MatchCondition represents a condition which must by fulfilled for a request to be sent to a webhook.
    type MatchCondition struct {
    	// Name is an identifier for this match condition, used for strategic merging of MatchConditions,
    	// as well as providing an identifier for logging purposes. A good name should be descriptive of
    	// the associated expression.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

       * elements.
       *
       * <p>If the mapped keys contain duplicates (according to the comparator), the values are merged
       * using the specified merging function. Entries will appear in the encounter order of the first
       * occurrence of the key.
       *
       * @since 33.2.0 (available since 21.0 in guava-jre)
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
Back to top