Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 343 for December (0.16 sec)

  1. guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

     * weak references.
     *
     * <p><strong>Performance</strong>
     *
     * <p>The extra bookkeeping done by cycle detecting locks comes at some cost to performance.
     * Benchmarks (as of December 2011) show that:
     *
     * <ul>
     *   <li>for an unnested {@code lock()} and {@code unlock()}, a cycle detecting lock takes 38ns as
     *       opposed to the 24ns taken by a plain lock.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
  2. LICENSE

      No covered work shall be deemed part of an effective technological
    measure under any applicable law fulfilling obligations under article
    11 of the WIPO copyright treaty adopted on 20 December 1996, or
    similar laws prohibiting or restricting circumvention of such
    measures.
    
      When you convey a covered work, you waive any legal power to forbid
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 33.7K bytes
    - Viewed (0)
  3. pkg/controller/replicaset/replica_set_test.go

    	// ReplicaSet controller's store.
    	// All use the same CreationTimestamp since ControllerRef should be able
    	// to handle that.
    	timestamp := metav1.Date(2014, time.December, 0, 0, 0, 0, 0, time.Local)
    	var controllers []*apps.ReplicaSet
    	for j := 1; j < 10; j++ {
    		rsSpec := newReplicaSet(1, labelMap)
    		rsSpec.CreationTimestamp = timestamp
    		rsSpec.Name = fmt.Sprintf("rs%d", j)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers_test.go

    			},
    			{
    				Source:         api.EventSource{Component: "kubelet"},
    				Message:        "Item 3",
    				FirstTimestamp: metav1.NewTime(time.Date(2002, time.December, 25, 0, 0, 0, 0, time.UTC)),
    				LastTimestamp:  metav1.NewTime(time.Date(2002, time.December, 25, 0, 0, 0, 0, time.UTC)),
    				Count:          1,
    				Type:           api.EventTypeNormal,
    			},
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/moment-with-locales.min.js

    l_aug_sep_okt_nov_dec".split("_"),Dn=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],Tn=/^(januari|februari|maart|april|mei|april|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i;l.defineLocale("nl-be",{months:"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"),monthsShort:function(e,a){return e?/-...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 12 13:18:07 UTC 2018
    - 319K bytes
    - Viewed (0)
  6. docs/pt/docs/tutorial/request-forms-and-files.md

        Isso não é uma limitação do **FastAPI** , é parte do protocolo HTTP.
    
    ## Recapitulando
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    //
    // Expands to the name of the variable used to remember the names of
    // the defined tests in the given test case.
    # define GTEST_TYPED_TEST_CASE_P_STATE_(TestCaseName) \
      gtest_typed_test_case_p_state_##TestCaseName##_
    
    // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE DIRECTLY.
    //
    // Expands to the name of the variable used to remember the names of
    // the registered tests in the given test case.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    //
    // Expands to the name of the variable used to remember the names of
    // the defined tests in the given test case.
    # define GTEST_TYPED_TEST_CASE_P_STATE_(TestCaseName) \
      gtest_typed_test_case_p_state_##TestCaseName##_
    
    // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE DIRECTLY.
    //
    // Expands to the name of the variable used to remember the names of
    // the registered tests in the given test case.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. test/stackobj3.go

    	c = -1
    	n = 0
    	runtime.SetFinalizer(s.h, func(h *HeapObj) {
    		// Remember at what phase the heap object was collected.
    		c = n
    	})
    	f(s, true)
    	if c != 2 {
    		panic("bad liveness")
    	}
    }
    
    func fFalse() {
    	var s StkObj
    	s.h = new(HeapObj)
    	c = -1
    	n = 0
    	runtime.SetFinalizer(s.h, func(h *HeapObj) {
    		// Remember at what phase the heap object was collected.
    		c = n
    	})
    	f(s, false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 19:54:16 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  10. src/internal/zstd/testdata/1890a371.gettysburg.txt-100x.zst

    larger sense, we can not dedicate - we can not consecrate - we can not hallow - this ground. The brave men, living and dead, who struggled here, have consecrated it, far above our poor power to add or detract. The world will little note, nor long remember what we say here, but it can never forget what they did here. It is for us the living, rather, to be dedicated here to the unfinished work which they who fought here have thus far so nobly advanced. It is rather for us to be here dedicated to the...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 14:35:13 UTC 2023
    - 826 bytes
    - Viewed (0)
Back to top