Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for yyy (0.02 sec)

  1. cni/pkg/install/cniconfig_test.go

    			specifiedConfName: "never-created.conf",
    			existingConfFiles: []string{"bridge.conf", "list.conflist"},
    		},
    		{
    			name:             "standalone CNI plugin unspecified CNI config file",
    			expectedConfName: "YYY-istio-cni.conf",
    		},
    		{
    			name:              "standalone CNI plugin specified CNI config file",
    			specifiedConfName: "specific-name.conf",
    			expectedConfName:  "specific-name.conf",
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/cc_op_gen_util.h

    namespace cc_op {
    
    absl::StatusOr<ApiDefMap> LoadOpsAndApiDefs(
        OpList& ops, bool include_internal,
        const std::vector<string>& api_def_dirs);
    
    // Converts:
    //   bazel-out/.../(bin|genfiles)/(external/YYY/)?XX
    // to: XX.
    string GetPath(StringPiece dot_h_fname);
    
    // Converts: some/path/to/file.xx
    // to: file
    // (note that suffix is removed)
    string GetFilename(StringPiece path);
    
    // Converts:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  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/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)
  10. src/runtime/crash_test.go

    // Test that panic message is not clobbered.
    // See issue 30150.
    func TestDoublePanic(t *testing.T) {
    	output := runTestProg(t, "testprog", "DoublePanic", "GODEBUG=clobberfree=1")
    	wants := []string{"panic: XXX", "panic: YYY"}
    	for _, want := range wants {
    		if !strings.Contains(output, want) {
    			t.Errorf("output:\n%s\n\nwant output containing: %s", output, want)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
Back to top