Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 85 for x_subs (0.11 sec)

  1. cmd/kubeadm/app/util/version.go

    	var bucketURL, urlSuffix string
    	subs := kubeBucketPrefixes.FindAllStringSubmatch(version, 1)
    	if len(subs) != 1 || len(subs[0]) != 4 {
    		return "", "", errors.Errorf("invalid version %q", version)
    	}
    
    	switch {
    	case strings.HasPrefix(subs[0][2], "ci"):
    		// Just use whichever the user specified
    		urlSuffix = subs[0][2]
    		bucketURL = kubeCIBucketURL
    	default:
    		urlSuffix = "release"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:50:19 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/preflight/utils.go

    	}
    
    	cleanOutput := strings.TrimSpace(string(out))
    	subs := kubeletVersionRegex.FindAllStringSubmatch(cleanOutput, -1)
    	if len(subs) != 1 || len(subs[0]) < 2 {
    		return nil, errors.Errorf("Unable to parse output from Kubelet: %q", cleanOutput)
    	}
    	return version.ParseSemantic(subs[0][1])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 07 07:51:36 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  3. pilot/pkg/xds/workload.go

    			addresses = updatedAddresses.IntersectInPlace(subs)
    		}
    	}
    
    	if !w.Wildcard {
    		// We only need this for on-demand. This allows us to subscribe the client to resources they
    		// didn't explicitly request.
    		// For wildcard, they subscribe to everything already.
    		additional := e.Server.Env.ServiceDiscovery.AdditionalPodSubscriptions(proxy, addresses, subs)
    		if addresses == nil {
    			addresses = sets.New[string]()
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 14:14:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go

    		{name: "FMADDS", argLength: 3, reg: fp31, asm: "FMADDS", commutative: true, typ: "Float32"},                                         // (arg0 * arg1) + arg2
    		{name: "FMSUBS", argLength: 3, reg: fp31, asm: "FMSUBS", commutative: true, typ: "Float32"},                                         // (arg0 * arg1) - arg2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	SUBSW R2.SXTH<<3, R13, R6                  // a6ad226b
    	SUBS R21.UXTX<<2, R27, R4                  // 646b35eb
    	SUBSW $(44<<12), R6, R9                    // SUBSW $180224, R6, R9         // c9b04071
    	SUBS $(1804<<12), R13, R9                  // SUBS $7389184, R13, R9        // a9315cf1
    	SUBSW R22->28, R6, R7                      // c770966b
    	SUBSW R22>>28, R6, R7                      // c770566b
    	SUBS R26<<15, R6, R16                      // d03c1aeb
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 01:11:41 UTC 2023
    - 43.9K bytes
    - Viewed (0)
  6. src/regexp/all_test.go

    	b.StartTimer()
    	b.ReportAllocs()
    	for i := 0; i < b.N; i++ {
    		subs := re.FindSubmatch(s)
    		if string(subs[0]) != wantSubs {
    			b.Fatalf("FindSubmatch(%q)[0] = %q; want %q", s, subs[0], wantSubs)
    		}
    		if string(subs[1]) != "aab" {
    			b.Fatalf("FindSubmatch(%q)[1] = %q; want %q", s, subs[1], "aab")
    		}
    	}
    }
    
    func BenchmarkFindStringSubmatch(b *testing.B) {
    	b.StopTimer()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfr/python/tfr_gen_test.py

    
    Composite = composite.Composite
    
    #--- test fn for mlir location ---
    
    
    @Composite('TestInputNOp')
    def _tfr_loc_test(x):
      n = 10
      x_sum = x[0]
      for i in range(1, n):
        x_sum = math_ops.Add(x_sum, x[i])
      return x_sum
    
    
    #--- test fn for tfr tensors ---
    
    
    @composite.Composite('TestNoOp')
    def _tfr_tensor_empty_arg():
      pass
    
    
    @composite.Composite('TestIdentityOp')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 28.8K bytes
    - Viewed (0)
  8. src/runtime/memclr_arm64.s

    loop_zva_prolog:
    	STP	(ZR, ZR), (R0)
    	STP	(ZR, ZR), 16(R0)
    	STP	(ZR, ZR), 32(R0)
    	SUBS	$64, R4, R4
    	STP	(ZR, ZR), 48(R0)
    	ADD	$64, R0, R0
    	BGE	loop_zva_prolog
    
    	ADD	R4, R0, R0
    
    aligned:
    	SUB	R5, R1, R1
    
    loop_zva:
    	WORD	$0xd50b7420 // DC ZVA, R0
    	ADD	R5, R0, R0
    	SUBS	R5, R1, R1
    	BHS	loop_zva
    	ANDS	R6, R1, R1
    	BNE	tail_maybe_long
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 18:26:13 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  9. test/typeparam/maps.go

    	}
    }
    
    func TestSub() {
    	mc := _Copy(m1)
    	_Sub(mc, mc)
    	if len(mc) > 0 {
    		panic(fmt.Sprintf("_Sub(%v, %v) = %v, want empty map", m1, m1, mc))
    	}
    	mc = _Copy(m1)
    	_Sub(mc, map[int]int{1: 0})
    	want := map[int]int{2: 4, 4: 8, 8: 16}
    	if !_Equal(mc, want) {
    		panic(fmt.Sprintf("_Sub result = %v, want %v", mc, want))
    	}
    }
    
    func TestIntersect() {
    	mc := _Copy(m1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/installation.adoc

    This is identifiable by the presence of the `gradlew` or `gradlew.bat` files in the root of the project:
    
    [listing,subs=+macros]
    ----
    .   // <1>
    ├── gradle
    │   └── wrapper // <2>
    ├── gradlew         // <3>
    ├── gradlew.bat     // <3>
    └── ⋮
    ----
    <1> Project root directory.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top