Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 183 for pusha (0.32 sec)

  1. pkg/fuzz/README.md

        // Run our actual test code. In this case, we are just checking nothing crashes.
        // In other tests, explicit assertions may be helpful.
        policies := push.AuthzPolicies.ListAuthorizationPolicies(selectionOpts)
        New(bundle, push, policies, option).BuildHTTP()
      })
    }
    ```
    
    ## Running tests
    
    Fuzz tests can be run using standard Go tooling:
    
    ```shell
    go test ./path/to/pkg -v -run=^$ -fuzz=Fuzz
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 05 21:25:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. docker-buildx.sh

    release=$(git describe --abbrev=0 --tags)
    
    docker buildx build --push --no-cache \
    	--build-arg RELEASE="${release}" \
    	-t "minio/minio:latest" \
    	-t "quay.io/minio/minio:latest" \
    	-t "minio/minio:${release}" \
    	-t "quay.io/minio/minio:${release}" \
    	--platform=linux/arm64,linux/amd64,linux/ppc64le,linux/s390x \
    	-f Dockerfile.release .
    
    docker buildx prune -f
    
    docker buildx build --push --no-cache \
    	--build-arg RELEASE="${release}" \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/envoyfilter/fuzz_test.go

    		c := fuzz.Struct[*cluster.Cluster](fg)
    
    		serviceDiscovery := memory.NewServiceDiscovery()
    		env := newTestEnvironment(serviceDiscovery, mesh, buildEnvoyFilterConfigStore(patches))
    		push := model.NewPushContext()
    		push.InitContext(env, nil, nil)
    		efw := push.EnvoyFilters(proxy)
    		ApplyClusterMerge(networking.EnvoyFilter_GATEWAY, efw, c, []host.Name{host.Name(hostname)})
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/grpcgen/cds.go

    func (g *GrpcConfigGenerator) BuildClusters(node *model.Proxy, push *model.PushContext, names []string) model.Resources {
    	filter := newClusterFilter(names)
    	clusters := make([]*cluster.Cluster, 0, len(names))
    	for defaultClusterName, subsetFilter := range filter {
    		builder, err := newClusterBuilder(node, push, defaultClusterName, subsetFilter)
    		if err != nil {
    			log.Warn(err)
    			continue
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/tensorflow/utils/call_graph_util.h

        func::FuncOp root, SymbolTable &symtab,
        const std::function<bool(SymbolUserOpInterface)> &predicate,
        llvm::SmallVector<SymbolUserOpInterface> &ops) {
      std::stack<func::FuncOp> worklist;
      worklist.push(root);
      while (!worklist.empty()) {
        func::FuncOp u = worklist.top();
        worklist.pop();
        auto result = u.walk([&](SymbolUserOpInterface op) {
          if (llvm::isa<T, Types...>(op) && (!predicate || predicate(op))) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Dec 16 06:18:49 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. pilot/pkg/xds/discovery_test.go

    					pushes[proxy.ID()]++
    					pushesMu.Unlock()
    				case <-stopCh:
    					return
    				}
    			}
    		}()
    	}
    	go doSendPushes(stopCh, semaphore, queue)
    
    	for push := 0; push < 100; push++ {
    		for _, proxy := range proxies {
    			queue.Enqueue(proxy, &model.PushRequest{Push: &model.PushContext{}})
    		}
    		time.Sleep(time.Millisecond * 10)
    	}
    	for queue.Pending() > 0 {
    		time.Sleep(time.Millisecond)
    	}
    	pushesMu.Lock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top