Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 316 for pubs (0.04 sec)

  1. tools/gen_istio_image_list.sh

            hubs=()
            images=()
            tags=()
    
            for hub in ${HUB}; do
              hubs+=( "$hub" );
            done
    
            for img in ${IMAGE}; do
              images+=( "$img" );
            done
    
            for tag in ${TAG}; do
              tags+=( "$tag" );
            done
    
            for i in "${!hubs[@]}"; do
              if [ -z "${images[$i]}" ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 04:04:35 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. 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)
  3. src/internal/bytealg/compare_arm64.s

    	MOVD	$1, R0
    	CNEG	HI, R0, R0
    	RET
    small:
    	TBZ	$3, R6, lt_8
    	MOVD	(R0), R4
    	MOVD	(R2), R5
    	CMP	R4, R5
    	BNE	cmp
    	SUBS	$8, R6
    	BEQ	samebytes
    	ADD	$8, R0
    	ADD	$8, R2
    	SUB	$8, R6
    	B	tail
    lt_8:
    	TBZ	$2, R6, lt_4
    	MOVWU	(R0), R4
    	MOVWU	(R2), R5
    	CMPW	R4, R5
    	BNE	cmp
    	SUBS	$4, R6
    	BEQ	samebytes
    	ADD	$4, R0
    	ADD	$4, R2
    lt_4:
    	TBZ	$1, R6, lt_2
    	MOVHU	(R0), R4
    	MOVHU	(R2), R5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 18:26:13 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  4. tools/docker-builder/types.go

    	if legacy, f := os.LookupEnv("DOCKER_ARCHITECTURES"); f {
    		arch = strings.Split(legacy, ",")
    	}
    
    	hub := []string{env.Register("HUB", "localhost:5000", "").Get()}
    	if hubs, f := os.LookupEnv("HUBS"); f {
    		hub = strings.Split(hubs, " ")
    	}
    	tag := []string{env.Register("TAG", "latest", "").Get()}
    	if tags, f := os.LookupEnv("TAGS"); f {
    		tag = strings.Split(tags, " ")
    	}
    
    	builder := DockerBuilder
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/cmd/go/internal/vcs/discovery_test.go

    	        `,
    		IgnoreMod,
    		[]metaImport{{"myitcv.io", "git", "https://github.com/myitcv/x"}},
    	},
    	{
    		`<meta name="go-import" content="myitcv.io git https://github.com/myitcv/x">
    	        <meta name="go-import" content="myitcv.io/blah2 mod https://raw.githubusercontent.com/myitcv/pubx/master">
    	        `,
    		PreferMod,
    		[]metaImport{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 11 18:14:49 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/cmd/internal/archive/testdata/mycgo/c2.c

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include <stdio.h>
    
    void c2(void) {
    	puts("c2");
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 10 22:16:32 UTC 2020
    - 211 bytes
    - Viewed (0)
Back to top