Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,255 for yearly (0.1 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/controller.go

    	)
    
    	// Forcefully shutdown workqueue. Drop any enqueued items.
    	// Important to do this in a `defer` at the start of `Run`.
    	// Otherwise, if there are any early returns without calling this, we
    	// would never shut down the workqueue
    	defer c.queue.ShutDown()
    
    	enqueue := func(obj interface{}, isInInitialList bool) {
    		var key string
    		var err error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. src/net/http/status.go

    	switch code {
    	case StatusContinue:
    		return "Continue"
    	case StatusSwitchingProtocols:
    		return "Switching Protocols"
    	case StatusProcessing:
    		return "Processing"
    	case StatusEarlyHints:
    		return "Early Hints"
    	case StatusOK:
    		return "OK"
    	case StatusCreated:
    		return "Created"
    	case StatusAccepted:
    		return "Accepted"
    	case StatusNonAuthoritativeInfo:
    		return "Non-Authoritative Information"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 10 23:30:35 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/watch/watch_test.go

    	}
    
    	// Prove that f implements Interface by phrasing this as a function.
    	consumer := func(w Interface) {
    		for _, expect := range table {
    			got, ok := <-w.ResultChan()
    			if !ok {
    				t.Fatalf("closed early")
    			}
    			if e, a := expect.t, got.Type; e != a {
    				t.Fatalf("Expected %v, got %v", e, a)
    			}
    			if a, ok := got.Object.(testType); !ok || a != expect.s {
    				t.Fatalf("Expected %v, got %v", expect.s, a)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 15 11:34:31 UTC 2018
    - 3.7K bytes
    - Viewed (0)
  4. guava-gwt/src/com/google/common/collect/Collect.gwt.xml

        The problem is that GWT responds poorly to two .gwt.xml files in the same
        Java package; see https://goo.gl/pRV3Yn for details.
    
        The summary is that it ignores one file in favor of the other.
        util.concurrent, like nearly all our packages, has two .gwt.xml files: one
        for prod and one for tests. However, unlike our other packages, as of this
        writing it has test supersource but no prod supersource.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 24 14:08:06 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. guava-gwt/src/com/google/common/math/Math.gwt.xml

        The problem is that GWT responds poorly to two .gwt.xml files in the same
        Java package; see https://goo.gl/pRV3Yn for details.
    
        The summary is that it ignores one file in favor of the other.
        util.concurrent, like nearly all our packages, has two .gwt.xml files: one
        for prod and one for tests. However, unlike our other packages, as of this
        writing it has test supersource but no prod supersource.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  6. guava-gwt/test/com/google/common/testing/Testing.gwt.xml

        The problem is that GWT responds poorly to two .gwt.xml files in the same
        Java package; see https://goo.gl/pRV3Yn for details.
    
        The summary is that it ignores one file in favor of the other.
        util.concurrent, like nearly all our packages, has two .gwt.xml files: one
        for prod and one for tests. However, unlike our other packages, as of this
        writing it has test supersource but no prod supersource.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/g3doc/enable_mlir_bridge.md

    Sessions and Session Configs are no longer available in TF 2.x. Instead, there
    is a global **Context** that holds all the equivalences. You can manipulate the
    **Context** with following code. Note that it must be added early in your
    program (at least before any of your model computation).
    
    ```
    tf.config.experimental.enable_mlir_bridge()
    ```
    
    ## How to disable the old TPU bridge?
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 13 23:12:13 UTC 2020
    - 989 bytes
    - Viewed (0)
  8. common/config/.golangci.yml

            # - name: empty-lines
            # - name: confusing-results
            # - name: empty-block
            # - name: get-return
            # - name: confusing-naming
            # - name: unexported-naming
            # - name: early-return
            # - name: unused-parameter
            # - name: unnecessary-stmt
            # - name: deep-exit
            # - name: import-shadowing
            # - name: modifies-value-receiver
            # - name: unused-receiver
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. build.gradle.kts

        id("gradlebuild.lifecycle")                  // CI: Add lifecycle tasks to for the CI pipeline (currently needs to be applied early as it might modify global properties)
        id("gradlebuild.generate-subprojects-info")  // CI: Generate subprojects information for the CI testing pipeline fan out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 11:54:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. src/internal/testlog/exit.go

    // This is in the testlog package because, like other definitions in
    // package testlog, it is a hook between the testing package and the
    // os package. This is used to ensure that an early call to os.Exit(0)
    // does not cause a test to pass.
    func PanicOnExit0() bool {
    	panicOnExit0.mu.Lock()
    	defer panicOnExit0.mu.Unlock()
    	return panicOnExit0.val
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top