Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 236 for impacted (0.17 sec)

  1. src/cmd/dist/buildtool.go

    // if a newer copy needs to be substituted for the Go bootstrap copy when used
    // by the command packages. Paths ending with /... automatically
    // include all packages within subdirectories as well.
    // These will be imported during bootstrap as bootstrap/name, like bootstrap/math/big.
    var bootstrapDirs = []string{
    	"cmp",
    	"cmd/asm",
    	"cmd/asm/internal/...",
    	"cmd/cgo",
    	"cmd/compile",
    	"cmd/compile/internal/...",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. src/go/types/scope.go

    //
    // Note that obj.Parent() may be different from the returned scope if the
    // object was inserted into the scope and already had a parent at that
    // time (see Insert). This can only happen for dot-imported objects
    // whose scope is the scope of the package that exported them.
    func (s *Scope) LookupParent(name string, pos token.Pos) (*Scope, Object) {
    	for ; s != nil; s = s.parent {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/issues_test.go

    }
    
    // TestIssue34921 verifies that we don't update an imported type's underlying
    // type when resolving an underlying type. Specifically, when determining the
    // underlying type of b.T (which is the underlying type of a.T, which is int)
    // we must not set the underlying type of a.T again since that would lead to
    // a race condition if package b is imported elsewhere, in a package that is
    // concurrently type-checked.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  4. src/go/internal/gcimporter/iimport.go

    	list := append(([]*types.Package)(nil), pkgList[1:]...)
    	slices.SortFunc(list, func(a, b *types.Package) int {
    		return strings.Compare(a.Path(), b.Path())
    	})
    	localpkg.SetImports(list)
    
    	// package was imported completely and without errors
    	localpkg.MarkComplete()
    	return localpkg, nil
    }
    
    type setConstraintArgs struct {
    	t          *types.TypeParam
    	constraint types.Type
    }
    
    type iimporter struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. docs/changelogs/changelog_4x.md

        of our effort to remove the okhttp-tls module's dependency on Bouncy Castle. We think Bouncy
        Castle is great! But it's a large dependency (6.5 MiB) and its security provider feature
        impacts VM-wide behavior.
    
     *  New: Reduce contention for applications that make a very high number of concurrent requests.
        Previously OkHttp used its connection pool as a lock when making changes to connections and
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LocalCache.java

        }
      }
    
      Set<K> keySet;
    
      @Override
      public Set<K> keySet() {
        // does not impact recency ordering
        Set<K> ks = keySet;
        return (ks != null) ? ks : (keySet = new KeySet(this));
      }
    
      Collection<V> values;
    
      @Override
      public Collection<V> values() {
        // does not impact recency ordering
        Collection<V> vs = values;
        return (vs != null) ? vs : (values = new Values(this));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 27 19:19:19 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  7. pkg/kubelet/util/pod_startup_latency_tracker_test.go

    		if err := testutil.GatherAndCompare(metrics.GetGather(), strings.NewReader(wants), metricsName); err != nil {
    			t.Fatal(err)
    		}
    
    		// any new pod observations should not impact the metrics, as the pod should be recorder only once
    		tracker.ObservedPodOnWatch(podStarted, frozenTime.Add(time.Second*150))
    		tracker.ObservedPodOnWatch(podStarted, frozenTime.Add(time.Second*200))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 06:09:49 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/issues0.go

    import (
    	"fmt"
    	syn "regexp/syntax"
    	t1 "text/template"
    	t2 "html/template"
    )
    
    func issue7035() {
    	type T struct{ X int }
    	_ = func() {
    		fmt.Println() // must refer to imported fmt rather than the fmt below
    	}
    	fmt := new(T)
    	_ = fmt.X
    }
    
    func issue8066() {
    	const (
    		_ = float32(340282356779733661637539395458142568447)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. pilot/pkg/xds/eds.go

    type EdsGenerator struct {
    	Cache         model.XdsCache
    	EndpointIndex *model.EndpointIndex
    }
    
    var _ model.XdsDeltaResourceGenerator = &EdsGenerator{}
    
    // Map of all configs that do not impact EDS
    var skippedEdsConfigs = sets.New(
    	kind.Gateway,
    	kind.VirtualService,
    	kind.WorkloadGroup,
    	kind.AuthorizationPolicy,
    	kind.RequestAuthentication,
    	kind.Secret,
    	kind.Telemetry,
    	kind.WasmPlugin,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. src/go/doc/reader.go

    // ----------------------------------------------------------------------------
    // Named types
    
    // baseTypeName returns the name of the base type of x (or "")
    // and whether the type is imported or not.
    func baseTypeName(x ast.Expr) (name string, imported bool) {
    	switch t := x.(type) {
    	case *ast.Ident:
    		return t.Name, false
    	case *ast.IndexExpr:
    		return baseTypeName(t.X)
    	case *ast.IndexListExpr:
    		return baseTypeName(t.X)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
Back to top