Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 627 for pusha (0.05 sec)

  1. pilot/pkg/xds/workload.go

    	// This is only an escape hatch for a lack of complete mapping of "Input changed -> Output changed".
    	// WDS does not suffer this limitation, so we could almost safely ignore these.
    	// However, other code will merge "Partial push + Full push -> Full push", so skipping full pushes isn't viable.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 14:14:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/heap_test.go

    	// Also check that mixed pushes and pops work correctly.
    	for _, s := range tests {
    		h := heap{}
    		for i := 0; i < len(s)/2; i++ {
    			// two pushes, one pop
    			h.push(s[2*i])
    			if !verify(&h, 0) {
    				t.Errorf("heap invariant violated: %v", h)
    			}
    			h.push(s[2*i+1])
    			if !verify(&h, 0) {
    				t.Errorf("heap invariant violated: %v", h)
    			}
    			h.pop()
    			if !verify(&h, 0) {
    				t.Errorf("heap invariant violated: %v", h)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 19:13:42 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

    Once the project is generated, commit the changes and push to the repository.
    
    [listing.terminal.sample-command]
    ----
    $ gradle init
    $ git add .
    $ git commit -m "Initial commit"
    $ git push
    ----
    
    === Test building the project
    
    The project uses the <<gradle_wrapper.adoc#gradle_wrapper_reference,Gradle Wrapper>> for building the project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/fuzz_test.go

    		fg := fuzz.New(t, data)
    		proxy := fuzz.Struct[*model.Proxy](fg)
    		to := fuzz.Struct[TestOptions](fg)
    		lb := fuzz.Struct[*ListenerBuilder](fg)
    		cg := NewConfigGenTest(t, to)
    		lb.node = cg.SetupProxy(proxy)
    		lb.push = cg.PushContext()
    		cg.ConfigGen.buildGatewayListeners(lb)
    	})
    }
    
    func FuzzBuildSidecarOutboundHTTPRouteConfig(f *testing.F) {
    	f.Fuzz(func(t *testing.T, patchCount int, hostname string, data []byte) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. tests/integration/security/fuzz/backends/tomcat/Makefile

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    HUB ?= "gcr.io/istio-testing/fuzz_tomcat"
    TAG ?= "0.1"
    
    push: Dockerfile
    	docker build . -t $(HUB):$(TAG)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 23 20:55:02 UTC 2021
    - 705 bytes
    - Viewed (0)
  6. tests/integration/security/fuzz/fuzzers/dotdotpwn/Makefile

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    HUB ?= "gcr.io/istio-testing/dotdotpwn"
    TAG ?= "0.1"
    
    push: Dockerfile
    	docker build . -t $(HUB):$(TAG)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 09 15:40:48 UTC 2021
    - 703 bytes
    - Viewed (0)
  7. tests/integration/security/fuzz/fuzzers/jwt_tool/Makefile

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    HUB ?= "gcr.io/istio-testing/jwttool"
    TAG ?= "0.1"
    
    push: Dockerfile
    	docker build . -t $(HUB):$(TAG)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 21 20:06:01 UTC 2021
    - 701 bytes
    - Viewed (0)
  8. pilot/pkg/xds/xdsgen.go

    		// TODO: send different version for incremental eds
    		VersionInfo: req.Push.PushVersion,
    		Nonce:       nonce(req.Push.LedgerVersion),
    		Resources:   xds.ResourcesToAny(res),
    	}
    
    	configSize := ResourceSize(res)
    	configSizeBytes.With(typeTag.Value(w.TypeUrl)).Record(float64(configSize))
    
    	ptype := "PUSH"
    	if logdata.Incremental {
    		ptype = "PUSH INC"
    	}
    
    	if err := xds.Send(con, resp); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/tracing_test.go

    	model.AssertProvidersHandled(configureFromProviderConfigHandled)
    }
    
    func TestConfigureTracing(t *testing.T) {
    	clusterName := "testcluster"
    	authority := "testhost"
    
    	clusterLookupFn = func(push *model.PushContext, service string, port int) (hostname string, cluster string, err error) {
    		return authority, clusterName, nil
    	}
    	defer func() {
    		clusterLookupFn = model.LookupCluster
    	}()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 20:47:52 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  10. pilot/pkg/networking/plugin/authn/authentication.go

    	proxy        *model.Proxy
    }
    
    func NewBuilder(push *model.PushContext, proxy *model.Proxy) *Builder {
    	return NewBuilderForService(push, proxy, nil)
    }
    
    func NewBuilderForService(push *model.PushContext, proxy *model.Proxy, svc *model.Service) *Builder {
    	applier := authn.NewPolicyApplier(push, proxy, svc)
    	trustDomains := TrustDomainsForValidation(push.Mesh)
    	return &Builder{
    		applier:      applier,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top