Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for yyy (0.02 sec)

  1. cni/test/testdata/expected/YYY-istio-cni.conf

    Ben Leggett <******@****.***> 1716316321 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 367 bytes
    - Viewed (0)
  2. src/runtime/testdata/testprog/crash.go

    }
    
    type P string
    
    func (p P) String() string {
    	// Try to free the "YYY" string header when the "XXX"
    	// panic is stringified.
    	runtime.GC()
    	runtime.GC()
    	runtime.GC()
    	return string(p)
    }
    
    // Test that panic message is not clobbered.
    // See issue 30150.
    func DoublePanic() {
    	defer func() {
    		panic(P("YYY"))
    	}()
    	panic(P("XXX"))
    }
    
    // Test that panic while panicking discards error message
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. src/cmd/cgo/godefs.go

    			if n != nil && n.Mangle != "" {
    				override[n.Mangle] = s.Name.Name
    			}
    		}
    	}
    
    	// Extend overrides using typedefs:
    	// If we know that C.xxx should format as T
    	// and xxx is a typedef for yyy, make C.yyy format as T.
    	for typ, def := range typedef {
    		if new := override[typ]; new != "" {
    			if id, ok := def.Go.(*ast.Ident); ok {
    				override[id.Name] = new
    			}
    		}
    	}
    
    	// Apply overrides.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  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