Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 57 for w2 (0.06 sec)

  1. tests/integration/ambient/waypoint_test.go

    			istioctl.NewOrFail(t, t, istioctl.Config{}).InvokeOrFail(t, []string{
    				"waypoint",
    				"-n",
    				nsConfig.Name(),
    				"delete",
    				"w1",
    				"w2",
    			})
    			retry.UntilSuccessOrFail(t, func() error {
    				for _, name := range []string{"w1", "w2"} {
    					if err := checkWaypointIsReady(t, nsConfig.Name(), name); err != nil {
    						if !errors.Is(err, kubetest.ErrNoPodsFetched) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/input-extra-resources/default_installation_failed.yaml

      sideEffects: None
      timeoutSeconds: 10
    ---
    apiVersion: admissionregistration.k8s.io/v1
    kind: MutatingWebhookConfiguration
    metadata:
      labels:
        app: sidecar-injector
        istio.io/tag: default
      name: w2-istio-sidecar-injector-istio-system
    
    webhooks:
    - admissionReviewVersions:
      - v1beta1
      - v1
      clientConfig:
        service:
          name: istiod
          namespace: istio-system
          path: /inject
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

                    list.add((WebConfig) crawlingConfigHelper.getCrawlingConfig("W2"));
                    list.add((WebConfig) crawlingConfigHelper.getCrawlingConfig("W3"));
                    return list;
                }
            }, WebConfigBhv.class.getCanonicalName());
            final List<WebConfig> configList = crawlingConfigHelper.getWebConfigListByIds(List.of("W1", "W2", "W3"));
            assertEquals(3, configList.size());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  4. test/codegen/memcombine.go

    }
    
    func zero_uint32_2(w1, w2 []uint32) {
    	_, _ = w1[1], w2[1]
    	// arm64:"MOVD\tZR",-"MOVB",-"MOVH",-"MOVW"
    	// amd64:`MOVQ\s[$]0,\s\([A-Z]+\)`
    	// ppc64x:`MOVD\s`
    	w1[0], w1[1] = 0, 0
    	// arm64:"MOVD\tZR",-"MOVB",-"MOVH",-"MOVW"
    	// amd64:`MOVQ\s[$]0,\s\([A-Z]+\)`
    	// ppc64x:`MOVD\s`
    	w2[1], w2[0] = 0, 0
    }
    
    func zero_uint32_4(w1, w2 []uint32) {
    	_, _ = w1[3], w2[3]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  5. src/net/http/pattern_test.go

    		{"/path/to/something", pattern{segments: []segment{
    			lit("path"), lit("to"), lit("something"),
    		}}},
    		{
    			"/{w1}/lit/{w2}",
    			pattern{
    				segments: []segment{wild("w1"), lit("lit"), wild("w2")},
    			},
    		},
    		{
    			"/{w1}/lit/{w2}/",
    			pattern{
    				segments: []segment{wild("w1"), lit("lit"), wild("w2"), multi("")},
    			},
    		},
    		{
    			"example.com/",
    			pattern{host: "example.com", segments: []segment{multi("")}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. test/divmod.go

    	}
    }
    
    // generate all uint64 values x, y where x has at most n1 bits set in the low w1
    // and y has at most n2 bits set in the low w2 and call f(x, y) for each.
    func gen2(n1, w1, n2, w2 int, f func(uint64, uint64)) {
    	gen1(n1, w1, func(x uint64) {
    		gen1(n2, w2, func(y uint64) {
    			f(x, y)
    		})
    	})
    }
    
    // x and y are uint64s with at most 2 bits set.
    // Check those values and values above and below,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 9.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/quantize-dynamic-range.mlir

    // PerChannelWeightOnly-DAG: %[[w2:.*]] = "tfl.pseudo_qconst"() <{qtype = tensor<64x3x3x3x!quant.uniform<i8<-127:127>:f32:3, {1.000000e+00,1.000000e+00,1.000000e+00}
    // PerChannelWeightOnly-DAG: %[[dq_w2:.*]] = "tfl.dequantize"(%[[w2]]) : (tensor<64x3x3x3x!quant.uniform<i8<-127:127>:f32:3, {1.000000e+00,1.000000e+00,1.000000e+00}>>) -> tensor<64x3x3x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 21:09:00 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  8. src/net/rpc/jsonrpc/all_test.go

    	ServeConn(srv)                                                    // must return, not loop
    }
    
    // Copied from package net.
    func myPipe() (*pipe, *pipe) {
    	r1, w1 := io.Pipe()
    	r2, w2 := io.Pipe()
    
    	return &pipe{r1, w2}, &pipe{r2, w1}
    }
    
    type pipe struct {
    	*io.PipeReader
    	*io.PipeWriter
    }
    
    type pipeAddr int
    
    func (pipeAddr) Network() string {
    	return "pipe"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:09:53 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    	switch kind {
    	case 8:
    		if arch.ptrSize == 4 {
    			w1, w2 := "lo", "hi"
    			if arch.bigEndian {
    				w1, w2 = w2, w1
    			}
    			cc = append(cc, newComponent(suffix+"_"+w1, 4, "half "+s, off, 4, suffix))
    			cc = append(cc, newComponent(suffix+"_"+w2, 4, "half "+s, off+4, 4, suffix))
    		}
    
    	case asmEmptyInterface:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (MOVWstore [i] {s} p w2 x:(STM2 [i-8] {s} p w0 w1 mem))
      && x.Uses == 1
      && is20Bit(int64(i)-8)
      && setPos(v, x.Pos)
      && clobber(x)
      => (STM3 [i-8] {s} p w0 w1 w2 mem)
    (MOVWstore [i] {s} p w3 x:(STM3 [i-12] {s} p w0 w1 w2 mem))
      && x.Uses == 1
      && is20Bit(int64(i)-12)
      && setPos(v, x.Pos)
      && clobber(x)
      => (STM4 [i-12] {s} p w0 w1 w2 w3 mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
Back to top