Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 59 for Zzzz (0.25 sec)

  1. src/go/printer/testdata/declarations.input

    func _() {
    	// no entry has a type
    	const (
    		zzzzzz = 1
    		z = 2
    		zzz = 3
    	)
    	// some entries have a type
    	const (
    		xxxxxx = 1
    		x = 2
    		xxx = 3
    		yyyyyyyy float = iota
    		yyyy = "bar"
    		yyy
    		yy = 2
    	)
    }
    
    func _() {
    	// no entry has a type
    	var (
    		zzzzzz = 1
    		z = 2
    		zzz = 3
    	)
    	// no entry has a value
    	var (
    		_ int
    		_ float
    		_ string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/SetsTest.java

                    Set<String> unfiltered = Sets.newLinkedHashSet();
                    unfiltered.add("yyy");
                    Collections.addAll(unfiltered, elements);
                    unfiltered.add("zzz");
                    return Sets.filter(unfiltered, Collections2Test.NOT_YYY_ZZZ);
                  }
                })
            .named("Sets.filter")
            .withFeatures(
                CollectionFeature.SUPPORTS_ADD,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  3. src/go/printer/testdata/declarations.golden

    func _() {
    	// no entry has a type
    	const (
    		zzzzzz	= 1
    		z	= 2
    		zzz	= 3
    	)
    	// some entries have a type
    	const (
    		xxxxxx			= 1
    		x			= 2
    		xxx			= 3
    		yyyyyyyy	float	= iota
    		yyyy			= "bar"
    		yyy
    		yy	= 2
    	)
    }
    
    func _() {
    	// no entry has a type
    	var (
    		zzzzzz	= 1
    		z	= 2
    		zzz	= 3
    	)
    	// no entry has a value
    	var (
    		_	int
    		_	float
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  4. pkg/config/model_test.go

    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pkg/test/config"
    )
    
    func TestDeepCopy(t *testing.T) {
    	cfg := Config{
    		Meta: Meta{
    			Name:              "name1",
    			Namespace:         "zzz",
    			CreationTimestamp: time.Now(),
    			Labels:            map[string]string{"app": "test-app"},
    			Annotations:       map[string]string{"policy.istio.io/checkRetries": "3"},
    		},
    		Spec: &networking.Gateway{},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. src/net/url/url_test.go

    	{"http:opaque?x=y#zzz", "https:/foo?a=b#frag", "https:/foo?a=b#frag"},
    	{"http:opaque?x=y#zzz", "https:foo:bar", "https:foo:bar"},
    	{"http:opaque?x=y#zzz", "https:bar/baz?a=b#frag", "https:bar/baz?a=b#frag"},
    	{"http:opaque?x=y#zzz", "https://user@host:1234?a=b#frag", "https://user@host:1234?a=b#frag"},
    	{"http:opaque?x=y#zzz", "?a=b#frag", "http:opaque?a=b#frag"},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  6. src/encoding/xml/xml_test.go

    	d.Entity = testEntity
    	testRawToken(t, d, testInput, rawTokens)
    }
    
    const nonStrictInput = `
    <tag>non&entity</tag>
    <tag>&unknown;entity</tag>
    <tag>&#123</tag>
    <tag>&#zzz;</tag>
    <tag>&なまえ3;</tag>
    <tag>&lt-gt;</tag>
    <tag>&;</tag>
    <tag>&0a;</tag>
    `
    
    var nonStrictTokens = []Token{
    	CharData("\n"),
    	StartElement{Name{"", "tag"}, []Attr{}},
    	CharData("non&entity"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  7. cni/test/install_cni.go

    			CNIBinTargetDirs:      []string{tempCNIBinDir},
    			K8sServicePort:        "443",
    			K8sServiceHost:        "10.110.0.1",
    			MonitoringPort:        0,
    			LogUDSAddress:         "",
    			KubeconfigFilename:    "ZZZ-istio-cni-kubeconfig",
    			CNINetDir:             "/etc/cni/net.d",
    			ChainedCNIPlugin:      chainedCNIPlugin,
    			PluginLogLevel:        "debug",
    			ExcludeNamespaces:     "istio-system",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context_test.go

    			Hosts:    []string{"rule3gw.com"},
    			ExportTo: []string{"test1", "test2", "*"},
    		},
    	}
    	rootNS := config.Config{
    		Meta: config.Meta{
    			Name:             "zzz",
    			Namespace:        "zzz",
    			GroupVersionKind: gvk.VirtualService,
    		},
    		Spec: &networking.VirtualService{
    			Hosts: []string{"rootNS.com"},
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  9. cni/pkg/cmd/root.go

    	registerStringParameter(constants.CNINetworkConfigFile, "", "CNI config template as a file")
    	registerStringParameter(constants.KubeconfigFilename, "ZZZ-istio-cni-kubeconfig",
    		"Name of the kubeconfig file which CNI plugin will use when interacting with API server")
    	registerIntegerParameter(constants.KubeconfigMode, constants.DefaultKubeconfigMode, "File mode of the kubeconfig file")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. src/cmd/doc/doc_test.go

    func TestNoPackageClauseWhenNoMatch(t *testing.T) {
    	maybeSkip(t)
    	var b strings.Builder
    	var flagSet flag.FlagSet
    	err := do(&b, &flagSet, []string{"template.ZZZ"})
    	// Expect an error.
    	if err == nil {
    		t.Error("expect an error for template.zzz")
    	}
    	// And the output should not contain any package clauses.
    	const dontWant = `package template // import `
    	output := b.String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 31.2K bytes
    - Viewed (0)
Back to top