Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 118 for toName (0.43 sec)

  1. pkg/volume/emptydir/empty_dir_test.go

    		medium v1.StorageMedium
    	}{
    		"medium without size": {
    			medium: "HugePages",
    		},
    		"medium with size": {
    			medium: "HugePages-2Mi",
    		},
    	}
    	for tcName, tc := range testCases {
    		t.Run(tcName, func(t *testing.T) {
    			doTestPlugin(t, pluginTestConfig{
    				medium:                        tc.medium,
    				expectedSetupMounts:           1,
    				expectedTeardownMounts:        0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  2. src/internal/coverage/cfile/emit.go

    	s.mfname = filepath.Join(s.outdir, fn)
    	fi, err := os.Stat(s.mfname)
    	if err != nil || fi.Size() != int64(metaLen) {
    		// We need a new meta-file.
    		tname := "tmp." + fn + strconv.FormatInt(time.Now().UnixNano(), 10)
    		s.mftmp = filepath.Join(s.outdir, tname)
    		s.mf, err = os.Create(s.mftmp)
    		if err != nil {
    			return fmt.Errorf("creating meta-data file %s: %v", s.mftmp, err)
    		}
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    	// This is a call to C.xxx; set goname to "xxx".
    	// It may have already been mangled by rewriteName.
    	var goname string
    	switch fun := call.Call.Fun.(type) {
    	case *ast.SelectorExpr:
    		goname = fun.Sel.Name
    	case *ast.Ident:
    		goname = strings.TrimPrefix(fun.Name, "_C2func_")
    		goname = strings.TrimPrefix(goname, "_Cfunc_")
    	}
    	if goname == "" || goname == "malloc" {
    		return "", false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/expr.go

    	default:
    		ir.Dump("walk", n)
    		base.Fatalf("walkExpr: switch 1 unknown op %+v", n.Op())
    		panic("unreachable")
    
    	case ir.OGETG, ir.OGETCALLERPC, ir.OGETCALLERSP:
    		return n
    
    	case ir.OTYPE, ir.ONAME, ir.OLITERAL, ir.ONIL, ir.OLINKSYMOFFSET:
    		// TODO(mdempsky): Just return n; see discussion on CL 38655.
    		// Perhaps refactor to use Node.mayBeShared for these instead.
    		// If these return early, make sure to still call
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    }
    
    int
    main(void)
    {
    	int i, e;
    	char buf[1024], *p;
    
    	printf("\n\n// Error table\n");
    	printf("var errorList = [...]struct {\n");
    	printf("\tnum  syscall.Errno\n");
    	printf("\tname string\n");
    	printf("\tdesc string\n");
    	printf("} {\n");
    	qsort(errors, nelem(errors), sizeof errors[0], tuplecmp);
    	for(i=0; i<nelem(errors); i++) {
    		e = errors[i].num;
    		if(i > 0 && errors[i-1].num == e)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

      auto print_buffer = [&](const tflite::SubGraph &subgraph, int id, int buffer,
                              std::function<mlir::Location(int)> loc) {
        const auto &output_tensor = (*subgraph.tensors())[buffer];
        std::cout << "\tname: '"
                  << (output_tensor->name() ? output_tensor->name()->str()
                                            : "<<unnamed>>")
                  << "' buffer: " << buffer;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionResultsStore.java

                    executionsForName.setString(++idx, experiment.getTestProject());
                    Timestamp minDate = new Timestamp(LocalDate.now().minusDays(maxDaysOld).toDate().getTime());
                    executionsForName.setTimestamp(++idx, minDate);
                    for (String channelPattern : channelPatterns) {
                        executionsForName.setString(++idx, channelPattern);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/dwarf.go

    		if die.Abbrev != dwarf.DW_ABRV_CHANTYPE {
    			continue
    		}
    		elemgotype := loader.Sym(getattr(die, dwarf.DW_AT_type).Data.(dwSym))
    		tname := d.ldr.SymName(elemgotype)
    		elemname := tname[5:]
    		elemtype := d.walksymtypedef(d.defgotype(d.lookupOrDiag(tname)))
    
    		// sudog<T>
    		dwss := d.mkinternaltype(ctxt, dwarf.DW_ABRV_STRUCTTYPE, "sudog", elemname, "", func(dws *dwarf.DWDie) {
    			d.copychildren(ctxt, dws, sudog)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/model/ModelReportIntegrationTest.groovy

              | Value:  \thunter2
              | Creator: \tprimaryCredentials(PasswordCredentials) { ... } @ build.gradle line 22, column 5
        + username
              | Type:   \tjava.lang.String
              | Value:  \tuname
              | Creator: \tprimaryCredentials(PasswordCredentials) { ... } @ build.gradle line 22, column 5
    + tasks
          | Type:   \torg.gradle.model.ModelMap<org.gradle.api.Task>
          | Creator: \tProject.<init>.tasks()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 22K bytes
    - Viewed (0)
  10. istioctl/pkg/validate/validate.go

    			// usual conversion not available.  Convert unstructured to string
    			// and ask operator code to check.
    			un.SetCreationTimestamp(metav1.Time{}) // UnmarshalIstioOperator chokes on these
    			by := util.ToYAML(un)
    			iop, err := operatoristio.UnmarshalIstioOperator(by, false)
    			if err != nil {
    				return nil, err
    			}
    			return nil, operatorvalidate.CheckIstioOperator(iop, true)
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 17:58:52 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top