Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 50 for Zzzz (0.33 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/google/SetGenerators.java

        @Override
        protected SortedSet<String> create(String[] elements) {
          List<String> list = Lists.newArrayList(elements);
          list.add("zzz");
          return ImmutableSortedSet.copyOf(list).headSet("zzy");
        }
      }
    
      public static class ImmutableSortedSetTailsetGenerator extends TestStringSortedSetGenerator {
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/PathTest.groovy

            path.segments() == segments
    
            where:
            pathString    | segments
            ':foo:bar'    | ["foo", "bar"]
            'foo:bar'     | ["foo", "bar"]
            'foo:bar:zzz' | ["foo", "bar", "zzz"]
        }
    
        def "validatePath fails"(path) {
            when:
            Path.validatePath(path)
    
            then:
            thrown(InvalidUserDataException)
    
            where:
            path << ["", null]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 12:54:37 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. android/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
    - 47.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top