Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 227 for rary (0.08 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler.go

    	// A response via different Accept encodings (eg: protobuf, json) will
    	// yield the same etag. This is okay because Accept is part of the Vary header.
    	// Per RFC7231 a client must only cache a response etag pair if the header field
    	// matches as indicated by the Vary field. Thus, protobuf and json and other Accept
    	// encodings will not be cached as the same response despite having the same etag.
    	cachedResponseETag string
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  2. src/net/mail/message_test.go

    		in: `From: John Doe <******@****.***e>
    To: Mary Smith <mary@example.net>
    Subject: Saying Hello
    Date: Fri, 21 Nov 1997 09:55:06 -0600
    Message-ID: <******@****.***e>
    
    This is a message just to say hello.
    So, "Hello".
    `,
    		header: Header{
    			"From":       []string{"John Doe <******@****.***e>"},
    			"To":         []string{"Mary Smith <mary@example.net>"},
    			"Subject":    []string{"Saying Hello"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/dll_windows.go

    func (p *LazyProc) Find() error {
    	// Non-racy version of:
    	// if p.proc == nil {
    	if atomic.LoadPointer((*unsafe.Pointer)(unsafe.Pointer(&p.proc))) == nil {
    		p.mu.Lock()
    		defer p.mu.Unlock()
    		if p.proc == nil {
    			e := p.l.Load()
    			if e != nil {
    				return e
    			}
    			proc, e := p.l.dll.FindProc(p.Name)
    			if e != nil {
    				return e
    			}
    			// Non-racy version of:
    			// p.proc = proc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 05 12:36:42 UTC 2020
    - 12K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/writers_test.go

    				},
    				URL: &url.URL{Path: "/path"},
    			},
    			wantCode: http.StatusOK,
    			wantHeaders: http.Header{
    				"Content-Type":     []string{"application/json"},
    				"Content-Encoding": []string{"gzip"},
    				"Vary":             []string{"Accept-Encoding"},
    			},
    		}
    	}
    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.APIResponseCompression, true)
    	for i := 0; i < 100; i++ {
    		ctt := newTest()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. src/testing/testing_test.go

    	}
    }
    
    func BenchmarkSubRacy(b *testing.B) {
    	if os.Getenv("GO_WANT_HELPER_PROCESS") != "1" {
    		b.Skipf("skipping intentionally-racy benchmark")
    	}
    
    	b.Run("non-racy", func(b *testing.B) {
    		tot := 0
    		for i := 0; i < b.N; i++ {
    			tot++
    		}
    		_ = tot
    	})
    
    	b.Run("racy", func(b *testing.B) {
    		for i := 0; i < b.N; i++ {
    			doRace()
    		}
    	})
    
    	doRace() // should be reported separately
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Lists.java

       * unspecified amount of padding; you almost certainly mean to call {@link
       * #newArrayListWithCapacity} (see that method for further advice on usage).
       *
       * <p><b>Note:</b> This method will soon be deprecated. Even in the rare case that you do want
       * some amount of padding, it's best if you choose your desired amount explicitly.
       *
       * @param estimatedSize an estimate of the eventual {@link List#size()} of the new list
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  7. cmd/sts-datatypes.go

    	// Note: The size of the security token that STS APIs return is not fixed. We
    	// strongly recommend that you make no assumptions about the maximum size. As
    	// of this writing, the typical size is less than 4096 bytes, but that can vary.
    	// Also, future updates to AWS might require larger sizes.
    	Credentials auth.Credentials `xml:",omitempty"`
    
    	// A percentage value that indicates the size of the policy in packed form.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 9.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Lists.java

       * unspecified amount of padding; you almost certainly mean to call {@link
       * #newArrayListWithCapacity} (see that method for further advice on usage).
       *
       * <p><b>Note:</b> This method will soon be deprecated. Even in the rare case that you do want
       * some amount of padding, it's best if you choose your desired amount explicitly.
       *
       * @param estimatedSize an estimate of the eventual {@link List#size()} of the new list
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.9K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/Cache.kt

        }
      }
    
      /**
       * Initialize the cache. This will include reading the journal files from the storage and building
       * up the necessary in-memory cache information.
       *
       * The initialization time may vary depending on the journal file size and the current actual
       * cache size. The application needs to be aware of calling this function during the
       * initialization phase and preferably in a background worker thread.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultPolymorphicDomainObjectContainerTest.groovy

                kate: "DefaultPolymorphicDomainObjectContainerTest.Person",
                bob: "DefaultPolymorphicDomainObjectContainerTest.Person",
                mary: "DefaultPolymorphicDomainObjectContainerTest.Person", // TODO should be AgeAwarePerson
                john: "DefaultPolymorphicDomainObjectContainerTest.Person",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 10 22:34:19 UTC 2021
    - 16K bytes
    - Viewed (0)
Back to top