Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,244 for syncFn (0.26 sec)

  1. src/cmd/go/internal/workcmd/sync.go

    // go work sync
    
    package workcmd
    
    import (
    	"cmd/go/internal/base"
    	"cmd/go/internal/gover"
    	"cmd/go/internal/imports"
    	"cmd/go/internal/modload"
    	"cmd/go/internal/toolchain"
    	"context"
    
    	"golang.org/x/mod/module"
    )
    
    var cmdSync = &base.Command{
    	UsageLine: "go work sync",
    	Short:     "sync workspace build list to modules",
    	Long: `Sync syncs the workspace's build list back to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. pkg/kube/krt/join.go

    	return res
    }
    
    func (j *join[T]) Register(f func(o Event[T])) Syncer {
    	return registerHandlerAsBatched[T](j, f)
    }
    
    func (j *join[T]) RegisterBatch(f func(o []Event[T], initialSync bool), runExistingState bool) Syncer {
    	sync := multiSyncer{}
    	for _, c := range j.collections {
    		sync.syncers = append(sync.syncers, c.RegisterBatch(f, runExistingState))
    	}
    	return sync
    }
    
    // nolint: unused // (not true, its to implement an interface)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. src/internal/pkgbits/sync.go

    	// Private markers (only known to cmd/compile).
    	SyncPrivate
    
    	SyncFuncExt
    	SyncVarExt
    	SyncTypeExt
    	SyncPragma
    
    	SyncExprList
    	SyncExprs
    	SyncExpr
    	SyncExprType
    	SyncAssign
    	SyncOp
    	SyncFuncLit
    	SyncCompLit
    
    	SyncDecl
    	SyncFuncBody
    	SyncOpenScope
    	SyncCloseScope
    	SyncCloseAnotherScope
    	SyncDeclNames
    	SyncDeclName
    
    	SyncStmts
    	SyncBlockStmt
    	SyncIfStmt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 04 17:12:28 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  4. testing/integ-test/src/integTest/groovy/org/gradle/integtests/SyncTaskIntegrationTest.groovy

            then:
            executedAndNotSkipped ':sync'
        }
    
        @NotYetImplemented
        def 'sync is not up to date when files are added to the destination dir'() {
            given:
            defaultSourceFileTree()
            file('dest').create {}
    
            buildScript '''
                task sync(type: Sync) {
                    from 'source'
                    into 'dest'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. pkg/kube/krt/static.go

    	return maps.Values(s.vals)
    }
    
    func (s *staticList[T]) Register(f func(o Event[T])) Syncer {
    	return registerHandlerAsBatched(s, f)
    }
    
    func (s *staticList[T]) Synced() Syncer {
    	return alwaysSynced{}
    }
    
    func (s *staticList[T]) RegisterBatch(f func(o []Event[T], initialSync bool), runExistingState bool) Syncer {
    	if runExistingState {
    		f(slices.Map(s.List(), func(e T) Event[T] {
    			return Event[T]{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. pkg/kube/multicluster/secretcontroller_test.go

    		if c.ID != "c1" {
    			c.Synced.Store(true)
    		}
    	}
    	assert.EventuallyEqual(t, c.controller.ListRemoteClusters, []cluster.DebugInfo{
    		{ID: "config", SyncStatus: "synced"},
    		{ID: "c0", SecretName: "istio-system/s0", SyncStatus: "synced"},
    		{ID: "c1", SecretName: "istio-system/s1", SyncStatus: "syncing"},
    	})
    
    	// Sync the last one
    	c.component.ForCluster("c1").Synced.Store(true)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. pkg/kube/krt/collection.go

    type multiIndex[I, O any] struct {
    	outputs  map[Key[O]]O
    	inputs   map[Key[I]]I
    	mappings map[Key[I]]sets.Set[Key[O]]
    }
    
    func (h *manyCollection[I, O]) Synced() Syncer {
    	return channelSyncer{
    		name:   h.collectionName,
    		synced: h.synced,
    	}
    }
    
    // nolint: unused // (not true, its to implement an interface)
    func (h *manyCollection[I, O]) dump() {
    	h.recomputeMu.Lock()
    	defer h.recomputeMu.Unlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. pkg/proxy/metrics/metrics.go

    		},
    	)
    
    	// SyncProxyRulesLastTimestamp is the timestamp proxy rules were last
    	// successfully synced.
    	SyncProxyRulesLastTimestamp = metrics.NewGauge(
    		&metrics.GaugeOpts{
    			Subsystem:      kubeProxySubsystem,
    			Name:           "sync_proxy_rules_last_timestamp_seconds",
    			Help:           "The last time proxy rules were successfully synced",
    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. pkg/controller/deployment/sync.go

    	if err != nil {
    		return err
    	}
    
    	allRSs := append(oldRSs, newRS)
    	return dc.syncDeploymentStatus(ctx, allRSs, newRS, d)
    }
    
    // sync is responsible for reconciling deployments on scaling events or when they
    // are paused.
    func (dc *DeploymentController) sync(ctx context.Context, d *apps.Deployment, rsList []*apps.ReplicaSet) error {
    	newRS, oldRSs, err := dc.getAllReplicaSetsAndSyncRevision(ctx, d, rsList, false)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  10. pkg/controller/statefulset/stateful_set.go

    	setListerSynced cache.InformerSynced
    	// pvcListerSynced returns true if the pvc shared informer has synced at least once
    	pvcListerSynced cache.InformerSynced
    	// revListerSynced returns true if the rev shared informer has synced at least once
    	revListerSynced cache.InformerSynced
    	// StatefulSets that need to be synced.
    	queue workqueue.TypedRateLimitingInterface[string]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top