Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 168 for withers (0.12 sec)

  1. pkg/revisions/tag_watcher.go

    	"istio.io/istio/pkg/kube/controllers"
    	"istio.io/istio/pkg/kube/kclient"
    	"istio.io/istio/pkg/kube/kubetypes"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // TagWatcher keeps track of the current tags and can notify watchers
    // when the tags change.
    type TagWatcher interface {
    	Run(stopCh <-chan struct{})
    	HasSynced() bool
    	AddHandler(handler TagHandler)
    	GetMyTags() sets.String
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. pilot/pkg/keycertbundle/watcher_test.go

    			!bytes.Equal(keyCertBundle.CABundle, ca) {
    			t.Errorf("got wrong keyCertBundle %v", keyCertBundle)
    		}
    	default:
    		t.Errorf("watched non keyCertBundle")
    	}
    
    	// 3. set new key cert bundle, notify all watchers
    	_, watch2 := watcher.AddWatcher()
    
    	key = []byte("key2")
    	cert = []byte("cert2")
    	ca = []byte("caBundle2")
    	watcher.SetAndNotify(key, cert, ca)
    	select {
    	case <-watch1:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 28 17:46:00 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  3. samples/tlssurvey/src/main/kotlin/okhttp3/survey/RunSurvey.kt

      val survey = CipherSuiteSurvey(clients = clients, ianaSuites = ianaSuitesNew, orderBy = orderBy)
    
      survey.printGoogleSheet()
    }
    
    fun rest(clients: List<Client>): List<SuiteId> {
      // combine all ciphers to get these near the top
      return clients.flatMap { it.enabled }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/FileWatchingFilter.java

     *
     * - Immutable locations are managed by Gradle, i.e. file system changes should never be external,
     *   and therefore these locations should not be watched to cut down on the number of watchers needed.
     *
     * - Locations known to be modified during a build might receive late file events that would invalidate VFS state we just
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/watch_tracker.go

    	if index == nil {
    		w.watchCount[*identifier] += incr
    	} else {
    		// For resources with defined index, for a given watch event we are
    		// only processing the watchers that:
    		// (a) do not specify field selector for an index field
    		// (b) do specify field selector with the value equal to the value
    		//     coming from the processed object
    		//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyGraphIntegrationTest.groovy

            given:
            singleProjectBuild("buildC") {
                buildFile << """
                    apply plugin: 'java'
                """
            }
            withArgs(["--include-build", '../buildB', "--include-build", '../buildC'])
            buildA.buildFile << """
                dependencies {
                    implementation "org.test:buildB:1.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:37:49 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/NonHierarchicalFileWatcherUpdaterTest.groovy

            vfsHasSnapshotsAt(fileOutsideOfWatchableHierarchies)
    
            when:
            buildFinished()
            then:
            0 * _
            !vfsHasSnapshotsAt(fileOutsideOfWatchableHierarchies)
        }
    
        def "watchers are stopped when removing the last watched snapshot"() {
            def rootDir = file("root").createDir()
            ["first", "second", "third"].collect { rootDir.createFile(it) }
            def rootDirSnapshot = snapshotDirectory(rootDir)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 13:24:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. pkg/revisions/default_watcher.go

    	"istio.io/istio/pkg/kube/kclient"
    )
    
    const (
    	defaultTagWebhookName = "istio-revision-tag-default"
    )
    
    // DefaultWatcher keeps track of the current default revision and can notify watchers
    // when the default revision changes.
    type DefaultWatcher interface {
    	Run(stopCh <-chan struct{})
    	HasSynced() bool
    	GetDefault() string
    	AddHandler(handler DefaultHandler)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 09 02:22:47 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/Monitor.java

        int waiters = guard.waiterCount++;
        if (waiters == 0) {
          // push guard onto activeGuards
          guard.next = activeGuards;
          activeGuards = guard;
        }
      }
    
      /** Records that the current thread is no longer waiting on the specified guard. */
      @GuardedBy("lock")
      private void endWaitingFor(Guard guard) {
        int waiters = --guard.waiterCount;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 18:22:01 UTC 2023
    - 38.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/filters/goaway_test.go

    				}
    
    				if w != nil {
    					watchers <- w
    				}
    			}
    		}()
    	}
    
    	wg.Wait()
    
    	// check if watch request is broken by GOAWAY frame
    	watchTimeout := time.NewTimer(time.Second * 10)
    	defer watchTimeout.Stop()
    	for i := 0; i < expectWatchers; i++ {
    		var watcher <-chan watchResponse
    
    		select {
    		case watcher = <-watchers:
    		default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 12:58:54 UTC 2021
    - 13.9K bytes
    - Viewed (0)
Back to top