Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 957 for ONCE (0.1 sec)

  1. pkg/controller/endpoint/endpoints_controller.go

    	// Added as a member to the struct to allow injection for testing.
    	servicesSynced cache.InformerSynced
    
    	// podLister is able to list/get pods and is populated by the shared informer passed to
    	// NewEndpointController.
    	podLister corelisters.PodLister
    	// podsSynced returns true if the pod shared informer has been synced at least once.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/SequentialExecutor.java

          // If the worker is not yet running, the delegate Executor might reject our attempt to start
          // it. To preserve FIFO order and failure atomicity of rejected execution when the same
          // Runnable is executed more than once, allocate a wrapper that we know is safe to remove by
          // object identity.
          // A data structure that returned a removal handle from add() would allow eliminating this
          // allocation.
          submittedTask =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/inl_test.go

    		// architectures don't have atomic intrinsics, so these go over
    		// the inlining budget. Move back to the main table once that
    		// problem is solved.
    		want["sync"] = []string{
    			"(*Mutex).Lock",
    			"(*Mutex).Unlock",
    			"(*RWMutex).RLock",
    			"(*RWMutex).RUnlock",
    			"(*Once).Do",
    		}
    	}
    
    	// Functions that must actually be inlined; they must have actual callers.
    	must := map[string]bool{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/SequentialExecutor.java

          // If the worker is not yet running, the delegate Executor might reject our attempt to start
          // it. To preserve FIFO order and failure atomicity of rejected execution when the same
          // Runnable is executed more than once, allocate a wrapper that we know is safe to remove by
          // object identity.
          // A data structure that returned a removal handle from add() would allow eliminating this
          // allocation.
          submittedTask =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. docs/tr/docs/alternatives.md

    Ancak bir noktada, geçmişteki diğer araçlardan en iyi fikirleri alarak bütün bu çözümleri kapsayan, ayrıca bütün bunları Python'ın daha önce mevcut olmayan özelliklerini (Python 3.6+ ile gelen <abbr title="Tip belirteçleri: Type Hints">tip belirteçleri</abbr>) kullanarak yapan bir şey üretmekten başka seçenek kalmamıştı.
    
    ## Daha Önce Geliştirilen Araçlar
    
    ### <a href="https://www.djangoproject.com/" class="external-link" target="_blank">Django</a>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/batch/v1/generated.proto

      // as successful before `.status.succeeded >= .spec.completions`. Once any of the rules are met,
      // the "SucceededCriteriaMet" condition is added, and the lingering pods are removed.
      // The terminal state for such a Job has the "Complete" condition.
      // Additionally, these rules are evaluated in order; Once the Job meets one of the rules,
      // other rules are ignored. At most 20 elements are allowed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    var map_ControllerRevision = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    TIP: To understand the Daemon's impact on your builds, you can profile your build with `--profile`.
    
    In between builds, the Daemon waits idly for the next build.
    As a result, your machine only loads Gradle into memory once for multiple builds instead of once per build.
    This is a significant performance optimization.
    
    === Runtime Code Optimizations
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. src/text/tabwriter/tabwriter_test.go

    	var b buffer
    	b.init(1000)
    
    	var w Writer
    	w.Init(&b, minwidth, tabwidth, padding, padchar, flags)
    
    	// write all at once
    	title := testname + " (written all at once)"
    	b.clear()
    	write(t, title, &w, src)
    	verify(t, title, &w, &b, src, expected)
    
    	// write byte-by-byte
    	title = testname + " (written byte-by-byte)"
    	b.clear()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/CrossBuildScriptCachingIntegrationSpec.groovy

            scriptCachesDir = new File(versionCaches, 'scripts')
            remappedCachesDir = new File(versionCaches, 'scripts-remapped')
        }
    
        def "identical build files are compiled once"() {
            given:
            root {
                core {
                    'core.gradle'(this.simpleBuild())
                }
                module1 {
                    'module1.gradle'(this.simpleBuild())
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top