Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,460 for syncs (0.06 sec)

  1. istioctl/pkg/internaldebug/internal-debug.go

    `,
    		Example: `  # Retrieve sync status for all Envoys in a mesh
      istioctl x internal-debug syncz
    
      # Retrieve sync diff for a single Envoy and Istiod
      istioctl x internal-debug syncz istio-egressgateway-59585c5b9c-ndc59.istio-system
    
      # SECURITY OPTIONS
    
      # Retrieve syncz debug information directly from the control plane, using token security
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 04:16:55 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. pkg/proxy/proxyinfo.go

    	// Ask Pilot for the Envoy sidecar sync status, which includes the sidecar version info
    	allSyncz, err := kubeClient.AllDiscoveryDo(context.TODO(), istioNamespace, "debug/syncz")
    	if err != nil {
    		return nil, err
    	}
    
    	pi := []istioVersion.ProxyInfo{}
    	for _, syncz := range allSyncz {
    		var sss []*sidecarSyncStatus
    		err = json.Unmarshal(syncz, &sss)
    		if err != nil {
    			return nil, err
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 06 22:41:32 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. pilot/pkg/xds/debug_test.go

    	req, err := http.NewRequest(http.MethodGet, "/debug", nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    	rr := httptest.NewRecorder()
    	syncz := http.HandlerFunc(server.Syncz)
    	syncz.ServeHTTP(rr, req)
    	got := []xds.SyncStatus{}
    	if err := json.Unmarshal(rr.Body.Bytes(), &got); err != nil {
    		t.Error(err)
    	}
    	return got
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.Sync.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 795 bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.9.md

    *   Added the concurrent service sync flag to the Cloud Controller Manager to allow changing the number of workers. (`--concurrent-service-syncs`) ([#55561](https://github.com/kubernetes/kubernetes/pull/55561),[ @jhorwit2](https://github.com/jhorwit2))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  6. pkg/kubelet/kubeletconfig/util/files/files.go

    	tmpPath = tmpFile.Name()
    
    	// write data
    	if _, err := tmpFile.Write(data); err != nil {
    		return tmpPath, err
    	}
    	// sync file, to ensure it's written in case a hard reset happens
    	return tmpPath, tmpFile.Sync()
    }
    
    // ReplaceFile replaces the contents of the file at `path` with `data` by writing to a tmp file in the same
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 13 01:02:46 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.27.md

    - Expanded the partial fix for https://github.com/kubernetes/kubernetes/issues/111539
      which was already started in https://github.com/kubernetes/kubernetes/pull/109706
      Specifically, we will now reduce the amount of syncs for `ETP=local` services even
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  8. releasenotes/notes/add-cluster-id-for-cluster-sync-metrics.yaml

    Kebe <******@****.***> 1682963494 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 01 17:51:34 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. pilot/pkg/xds/statusgen.go

    	// TypeDebugSyncronization requests Envoy CSDS for proxy sync status
    	TypeDebugSyncronization = v3.DebugType + "/syncz"
    
    	// TypeDebugConfigDump requests Envoy configuration for a proxy without creating one
    	TypeDebugConfigDump = v3.DebugType + "/config_dump"
    
    	// TODO: TypeURLReady - readiness events for endpoints, agent can propagate
    )
    
    // StatusGen is a Generator for XDS status: connections, syncz, configdump
    type StatusGen struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 23:30:28 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. src/internal/trace/summary.go

    	name string
    }
    
    // Event feeds a single event into the stats summarizer.
    func (s *Summarizer) Event(ev *Event) {
    	if s.syncTs == 0 {
    		s.syncTs = ev.Time()
    	}
    	s.lastTs = ev.Time()
    
    	switch ev.Kind() {
    	// Record sync time for the RangeActive events.
    	case EventSync:
    		s.syncTs = ev.Time()
    
    	// Handle state transitions.
    	case EventStateTransition:
    		st := ev.StateTransition()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top