Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 530 for pusha (0.89 sec)

  1. src/cmd/asm/internal/asm/testdata/386enc.s

    	MOVL CR4, DI // 0f20e7
    	MOVL AX, CR0 // 0f22c0
    	MOVL DX, CR0 // 0f22c2
    	MOVL DI, CR4 // 0f22e7
    	MOVL DR0, AX // 0f21c0
    	MOVL DR6, DX // 0f21f2
    	MOVL DR7, SI // 0f21fe
    	// Test other movtab entries.
    	PUSHL SS // 16
    	PUSHL FS // 0fa0
    	POPL FS  // 0fa1
    	POPL SS  // 17
    
    	RDPID AX                                // f30fc7f8
    
    	// End of tests.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. pkg/ctrlz/assets/static/js/prism-1.14.0.min.js

    =H+G.length,N=F.slice(0,H),O=F.slice(I),P=[D,M];N&&(++D,E+=N.length,P.push(N));var Q=new r(s,x?c.tokenize(G,x):G,B,G,z);if(P.push(Q),O&&P.push(O),Array.prototype.splice.apply(g,P),1!=M&&c.matchGrammar(f,g,h,D,E,!0,s),n)break}}}}},tokenize:function(f,g){var l=[f],m=g.rest;if(m){for(var n in m)g[n]=m[n];delete g.rest}return c.matchGrammar(f,l,g,0,0,!1),l},hooks:{all:{},add:function(f,g){var h=c.hooks.all;h[f]=h[f]||[],h[f].push(g)},run:function(f,g){var h=c.hooks.all[f];if(h&&h.length)for(var m,l=...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  3. samples/bookinfo/src/build-services.sh

    t="${BOOKINFO_TAG:?BOOKINFO_TAG must be set}"
    if [[ ("${h}" == "istio" || "${h}" == "docker.io/istio") && -z "$CI" && "$*" =~ "--push" ]]; then
      echo "Can only push to prod registry in CI"
      exit 1
    fi
    
    if [[ "${BOOKINFO_LATEST}" == "true" ]]; then
      BOOKINFO_TAG="${BOOKINFO_TAG},latest"
    fi
    
    # Pass input args to the command. This allows using --push, --load, etc
    env TAGS="${BOOKINFO_TAG}" HUB="${BOOKINFO_HUB}" \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. pilot/pkg/xds/endpoints/endpoint_builder.go

    	hostname     host.Name
    	port         int
    	push         *model.PushContext
    	proxy        *model.Proxy
    	dir          model.TrafficDirection
    
    	mtlsChecker *mtlsChecker
    }
    
    func NewEndpointBuilder(clusterName string, proxy *model.Proxy, push *model.PushContext) EndpointBuilder {
    	dir, subsetName, hostname, port := model.ParseSubsetKey(clusterName)
    
    	svc := push.ServiceForHostname(proxy, hostname)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. pilot/pkg/security/authz/builder/extauthz.go

    }()
    
    type builtExtAuthz struct {
    	http *extauthzhttp.ExtAuthz
    	tcp  *extauthztcp.ExtAuthz
    	err  error
    }
    
    func processExtensionProvider(push *model.PushContext) map[string]*builtExtAuthz {
    	resolved := map[string]*builtExtAuthz{}
    	for i, config := range push.Mesh.ExtensionProviders {
    		var errs error
    		if config.Name == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top