Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 145 for fulfil (0.12 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    - The configuration cache does not support all <<configuration_cache#config_cache:plugins:core, core Gradle plugins>> and <<configuration_cache#config_cache:not_yet_implemented, features>>. Full support is a work in progress.
    - Your build and the plugins you depend on might require changes to fulfil the <<configuration_cache#config_cache:requirements, requirements>>.
    - IDE imports and syncs do not yet use the configuration cache.
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    	}
    
    	createConfigs([]*config.Config{httpDNS, httpDNSRR, tcpStatic}, store, t)
    
    	expectEvents(t, fx,
    		Event{Type: "xds full", ID: "*.google.com"},
    		Event{Type: "xds full", ID: "*.istio.io"},
    		Event{Type: "xds full", ID: "tcpstatic.com"},
    		Event{Type: "service", ID: "*.google.com", Namespace: httpDNS.Namespace},
    		Event{Type: "eds cache", ID: "*.google.com", Namespace: httpDNS.Namespace},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context.go

    	if len(other.Reason) > 0 {
    		if pr.Reason == nil {
    			pr.Reason = make(map[TriggerReason]int)
    		}
    		pr.Reason.Merge(other.Reason)
    	}
    
    	// If either is full we need a full push
    	pr.Full = pr.Full || other.Full
    
    	// The other push context is presumed to be later and more up to date
    	if other.Push != nil {
    		pr.Push = other.Push
    	}
    
    	// Do not merge when any one is empty
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/route/route_test.go

    		g.Expect(ok).NotTo(BeFalse())
    		g.Expect(redirectAction.Redirect.PathRewriteSpecifier).To(Equal(&envoyroute.RedirectAction_PathRedirect{
    			PathRedirect: "%PREFIX()%/replace-full",
    		}))
    	})
    
    	t.Run("for full path redirect", func(t *testing.T) {
    		g := NewWithT(t)
    		cg := core.NewConfigGenTest(t, core.TestOptions{})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceregistry_test.go

    		// Endpoint update is triggered since its a brand new service
    		if ev := fx.WaitOrFail(t, "xds full"); !ev.Reason.Has(model.EndpointUpdate) {
    			t.Fatalf("xds push reason does not contain %v: %v", model.EndpointUpdate, ev)
    		}
    		// headless service update must trigger nds push, so we trigger a full push.
    		if ev := fx.WaitOrFail(t, "xds full"); !ev.Reason.Has(model.HeadlessEndpointUpdate) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  6. src/runtime/mgc.go

    	return float64(selfTime)/float64(delta) > 1.2*gcController.fractionalUtilizationGoal
    }
    
    var work workType
    
    type workType struct {
    	full  lfstack          // lock-free list of full blocks workbuf
    	_     cpu.CacheLinePad // prevents false-sharing between full and empty
    	empty lfstack          // lock-free list of empty blocks workbuf
    	_     cpu.CacheLinePad // prevents false-sharing between empty and nproc/nwait
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  7. pilot/pkg/model/push_context_test.go

    		right  *PushRequest
    		merged PushRequest
    	}{
    		{
    			"left nil",
    			nil,
    			&PushRequest{Full: true},
    			PushRequest{Full: true},
    		},
    		{
    			"right nil",
    			&PushRequest{Full: true},
    			nil,
    			PushRequest{Full: true},
    		},
    		{
    			"simple merge",
    			&PushRequest{
    				Full:  true,
    				Push:  push0,
    				Start: t0,
    				ConfigsUpdated: sets.Set[ConfigKey]{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/buildlist.go

    			for _, f := range strings.Split(os.Getenv("GODEBUG"), ",") {
    				switch f {
    				case "lazymod=log":
    					debug.PrintStack()
    					fmt.Fprintf(os.Stderr, "go: read full module graph.\n")
    				case "lazymod=strict":
    					debug.PrintStack()
    					base.Fatalf("go: read full module graph (forbidden by GODEBUG=lazymod=strict).")
    				}
    			}
    		})
    	}
    
    	var graphRoots []module.Version
    	if inWorkspaceMode() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. src/runtime/mbitmap.go

    	}
    	return
    }
    
    func doubleCheckHeapPointers(x, dataSize uintptr, typ *_type, header **_type, span *mspan) {
    	// Check that scanning the full object works.
    	tp := span.typePointersOfUnchecked(span.objBase(x))
    	maxIterBytes := span.elemsize
    	if header == nil {
    		maxIterBytes = dataSize
    	}
    	bad := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  10. src/cmd/dist/build.go

    		}
    	}
    
    	workdir := pathf("%s/%s", workdir, pkg)
    	xmkdirall(workdir)
    
    	var clean []string
    	defer func() {
    		for _, name := range clean {
    			xremove(name)
    		}
    	}()
    
    	// dir = full path to pkg.
    	dir := pathf("%s/src/%s", goroot, pkg)
    	name := filepath.Base(dir)
    
    	// ispkg predicts whether the package should be linked as a binary, based
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
Back to top