Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for yyy (0.03 sec)

  1. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpModelIntegrationTest.groovy

              eclipse.wtp.component {
                resource sourcePath: 'xxxResource', deployPath: 'deploy-xxx'
                resource sourcePath: 'yyyResource', deployPath: 'deploy-yyy'
              }
    """
            //then
            def component = getComponentFile().text
    
            assert component.contains('xxxSource')
            assert !component.contains('yyySource')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  2. istioctl/pkg/proxyconfig/proxyconfig_test.go

    		{ // logger name valid, but logging level invalid
    			execClientConfig: loggingConfig,
    			args:             strings.Split("log details-v1-5b7f94f9bc-wp5tb --level http:yyy", " "),
    			expectedString:   "unrecognized logging level: yyy",
    			wantException:    true,
    		},
    		{ // both logger name and logging level invalid
    			execClientConfig: loggingConfig,
    			args:             strings.Split("log details-v1-5b7f94f9bc-wp5tb --level xxx:yyy", " "),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 21:51:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/test/groovy/org/gradle/plugin/devel/plugins/JavaGradlePluginPluginTest.groovy

            ['com/xxx/TestPlugin.class']     | 'com.xxx.TestPlugin' | true
            ['TestPlugin.class']             | 'TestPlugin'         | true
            []                               | 'com.xxx.TestPlugin' | false
            ['com/xxx/yyy/TestPlugin.class'] | 'com.xxx.TestPlugin' | false
        }
    
        def "PluginValidationAction logs correct warning messages for broken plugins"(String impl, String implFile, String expectedMessage) {
            setup:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/SetsTest.java

                new TestStringSetGenerator() {
                  @Override
                  public Set<String> create(String[] elements) {
                    Set<String> unfiltered = Sets.newLinkedHashSet();
                    unfiltered.add("yyy");
                    Collections.addAll(unfiltered, elements);
                    unfiltered.add("zzz");
                    return Sets.filter(unfiltered, Collections2Test.NOT_YYY_ZZZ);
                  }
                })
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 47.8K bytes
    - Viewed (0)
  5. src/encoding/csv/reader_test.go

    }, {
    	Name: "RFC4180test",
    	Input: `§#field1,§field2,§field3
    ¶§"aaa",§"bb
    b",§"ccc"
    ¶§"a,a",§"b""bb",§"ccc"
    ¶§zzz,§yyy,§xxx
    `,
    	Output: [][]string{
    		{"#field1", "field2", "field3"},
    		{"aaa", "bb\nb", "ccc"},
    		{"a,a", `b"bb`, "ccc"},
    		{"zzz", "yyy", "xxx"},
    	},
    	UseFieldsPerRecord: true,
    	FieldsPerRecord:    0,
    }, {
    	Name:   "NoEOLTest",
    	Input:  "§a,§b,§c",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 14 04:25:13 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  6. src/go/printer/testdata/declarations.input

    	// 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)
  7. guava-tests/test/com/google/common/collect/SetsTest.java

                new TestStringSetGenerator() {
                  @Override
                  public Set<String> create(String[] elements) {
                    Set<String> unfiltered = Sets.newLinkedHashSet();
                    unfiltered.add("yyy");
                    Collections.addAll(unfiltered, elements);
                    unfiltered.add("zzz");
                    return Sets.filter(unfiltered, Collections2Test.NOT_YYY_ZZZ);
                  }
                })
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  8. cni/pkg/install/cniconfig.go

    // Or until cancelled by parent context
    func getCNIConfigFilepath(ctx context.Context, cniConfName, mountedCNINetDir string, chained bool) (string, error) {
    	if !chained {
    		if len(cniConfName) == 0 {
    			cniConfName = "YYY-istio-cni.conf"
    		}
    		return filepath.Join(mountedCNINetDir, cniConfName), nil
    	}
    
    	watcher, err := util.CreateFileWatcher(mountedCNINetDir)
    	if err != nil {
    		return "", err
    	}
    	defer watcher.Close()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. src/go/printer/testdata/declarations.golden

    	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.2K bytes
    - Viewed (0)
  10. src/cmd/cover/cfg_test.go

    	if err := os.Mkdir(instdir, 0777); err != nil {
    		t.Fatal(err)
    	}
    	mdir := filepath.Join(dir, "meta2")
    	if err := os.Mkdir(mdir, 0777); err != nil {
    		t.Fatal(err)
    	}
    	mpath := filepath.Join(mdir, "covmeta.yyy")
    	incfg := writePkgConfig(t, instdir, tag, ppath, pname, gran, mpath)
    	_, _, errmsg := runPkgCover(t, instdir, tag, incfg, mode,
    		pkgfiles, false)
    	if errmsg != "" {
    		t.Fatalf("runPkgCover err: %q", errmsg)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top