Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 627 for pusha (0.03 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. 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)
  3. 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)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocConverter.java

                    nodes.push(currentList);
                    return true;
                }
                if (elementName.equals("dt")) {
                    if (currentItem != null) {
                        nodes.pop();
                    }
                    currentItem = document.createElement("varlistentry");
                    nodes.push(currentItem);
                    nodes.push(document.createElement("term"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 29.3K 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. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top