Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 46 for syncs (0.17 sec)

  1. src/cmd/go/internal/load/pkg.go

    			continue
    		}
    
    		// Silently ignore attempts to run coverage on sync/atomic
    		// and/or internal/runtime/atomic when using atomic coverage
    		// mode. Atomic coverage mode uses sync/atomic, so we can't
    		// also do coverage on it.
    		if cfg.BuildCoverMode == "atomic" && p.Standard &&
    			(p.ImportPath == "sync/atomic" || p.ImportPath == "internal/runtime/atomic") {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    limitations under the License.
    */
    
    package registry
    
    import (
    	"context"
    	"encoding/json"
    	"fmt"
    	"path"
    	"reflect"
    	"strconv"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"testing"
    	"time"
    
    	fuzz "github.com/google/gofuzz"
    
    	"k8s.io/apimachinery/pkg/api/apitesting"
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	"k8s.io/apimachinery/pkg/api/errors"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/proxier_test.go

    		}
    	}
    
    	// simulate a restart by enabling initial sync logic.
    	fp.initialSync = true
    	err = fp.syncEndpoint(proxy.ServicePortName{
    		NamespacedName: types.NamespacedName{
    			Name:      "svc1",
    			Namespace: "ns1",
    		},
    		Port:     "80",
    		Protocol: v1.ProtocolTCP,
    	}, true, vs)
    	if err != nil {
    		t.Errorf("failed to sync endpoint, err: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    	gp.m.locks--
    }
    
    //go:linkname sync_runtime_procPin sync.runtime_procPin
    //go:nosplit
    func sync_runtime_procPin() int {
    	return procPin()
    }
    
    //go:linkname sync_runtime_procUnpin sync.runtime_procUnpin
    //go:nosplit
    func sync_runtime_procUnpin() {
    	procUnpin()
    }
    
    //go:linkname sync_atomic_runtime_procPin sync/atomic.runtime_procPin
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    	"context"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"io"
    	"io/ioutil"
    	"math/rand"
    	"net/http"
    	"net/http/httptest"
    	"net/http/httputil"
    	"net/url"
    	"reflect"
    	"strconv"
    	"strings"
    	"sync"
    	"testing"
    	"time"
    
    	"github.com/emicklei/go-restful/v3"
    	"github.com/google/go-cmp/cmp"
    
    	"k8s.io/apimachinery/pkg/api/apitesting/fuzzer"
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    	"fmt"
    	"go/token"
    	"internal/lazyregexp"
    	"io"
    	"io/fs"
    	"log"
    	"math/rand"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"regexp"
    	"runtime"
    	"slices"
    	"sort"
    	"strconv"
    	"strings"
    	"sync"
    	"time"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/cache"
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/fsys"
    	"cmd/go/internal/gover"
    	"cmd/go/internal/load"
    	"cmd/go/internal/modload"
    	"cmd/go/internal/str"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. src/cmd/trace/testdata/go122.test

    String id=163
    	data="net.listenerBacklog.func1"
    String id=164
    	data="sync.(*Once).doSlow"
    String id=165
    	data="/usr/local/google/home/mknyszek/work/go-1/src/sync/once.go"
    String id=166
    	data="sync.(*Once).Do"
    String id=167
    	data="net.listenerBacklog"
    String id=168
    	data="syscall.Listen"
    String id=169
    	data="sync.(*WaitGroup).Wait"
    String id=170
    	data="runtime.gopark"
    String id=171
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  8. pkg/proxy/nftables/proxier_test.go

    	}
    
    	// Empty a service's endpoints and restore it after stale chains age.
    	// - its chains will be flushed, but not immediately deleted in the first sync.
    	// - its chains will be deleted first, then recreated in the second sync.
    	fp.OnEndpointSliceUpdate(eps3update2, eps3update3)
    	fp.syncProxyRules()
    	ageStaleChains()
    	fp.OnEndpointSliceUpdate(eps3update3, eps3update2)
    	fp.syncProxyRules()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  9. pkg/scheduler/schedule_one_test.go

    limitations under the License.
    */
    
    package scheduler
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"math"
    	"math/rand"
    	"reflect"
    	"regexp"
    	goruntime "runtime"
    	"sort"
    	"strconv"
    	"sync"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	v1 "k8s.io/api/core/v1"
    	eventsv1 "k8s.io/api/events/v1"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_builder_test.go

    		Instances:  instances,
    	})
    
    	cb := NewClusterBuilder(cg.SetupProxy(proxy), &model.PushRequest{Push: cg.PushContext()}, nil)
    	wg := sync.WaitGroup{}
    	wg.Add(5)
    	var actual []*endpoint.LocalityLbEndpoints
    	mu := sync.Mutex{}
    	for i := 0; i < 5; i++ {
    		go func() {
    			eb := endpoints.NewCDSEndpointBuilder(
    				proxy, cb.req.Push,
    				"outbound|8080|v1|foo.com",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
Back to top