Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 49 for OpName (0.13 sec)

  1. src/cmd/compile/internal/test/inl_test.go

    		"compress/flate.byLiteral.Swap": true,
    	}
    
    	notInlinedReason := make(map[string]string)
    	pkgs := make([]string, 0, len(want))
    	for pname, fnames := range want {
    		pkgs = append(pkgs, pname)
    		for _, fname := range fnames {
    			fullName := pname + "." + fname
    			if _, ok := notInlinedReason[fullName]; ok {
    				t.Errorf("duplicate func: %s", fullName)
    			}
    			notInlinedReason[fullName] = "unknown reason"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. pkg/proxy/winkernel/testing/hcnutils_mock.go

    }
    
    func (hcnObj HcnMock) generateEndpointGuid() (endpointId string, endpointName string) {
    	epIdCounter++
    	endpointId = fmt.Sprintf("EPID-%d", epIdCounter)
    	endpointName = fmt.Sprintf("EPName-%d", epIdCounter)
    	return
    }
    
    func (hcnObj HcnMock) generateLoadbalancerGuid() (loadbalancerId string) {
    	lbIdCounter++
    	loadbalancerId = fmt.Sprintf("LBID-%d", lbIdCounter)
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 18 06:29:01 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            String pname;
            int index = name.length();
            /*
             * we have a name foo.bar and an import foo.foo. This means foo.bar is possibly
             * foo.foo.bar rather than foo.bar. This means to cut at the dot in foo.bar and
             * foo for import
             */
            while (true) {
                pname = name.substring(0, index);
                ClassNode aliasedNode = null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/call.go

    	// selector expressions.
    	if ident, ok := e.X.(*syntax.Name); ok {
    		obj := check.lookup(ident.Value)
    		if pname, _ := obj.(*PkgName); pname != nil {
    			assert(pname.pkg == check.pkg)
    			check.recordUse(ident, pname)
    			pname.used = true
    			pkg := pname.imported
    
    			var exp Object
    			funcMode := value
    			if pkg.cgo {
    				// cgo special cases C.malloc: it's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  5. src/go/types/call.go

    	// selector expressions.
    	if ident, ok := e.X.(*ast.Ident); ok {
    		obj := check.lookup(ident.Name)
    		if pname, _ := obj.(*PkgName); pname != nil {
    			assert(pname.pkg == check.pkg)
    			check.recordUse(ident, pname)
    			pname.used = true
    			pkg := pname.imported
    
    			var exp Object
    			funcMode := value
    			if pkg.cgo {
    				// cgo special cases C.malloc: it's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

     *  function could, in principle, be called more than once from 
     *  different tests.
     *
     *  @see CU_Suite
     *  @see CU_TestRegistry
     */
    typedef struct CU_Test
    {
      char*           pName;      /**< Test name. */
      CU_BOOL         fActive;    /**< Flag for whether test is executed during a run. */
      CU_TestFunc     pTestFunc;  /**< Pointer to the test function. */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/ar.go

    				Exitf("%s missing archive entry at offset %d", name, off)
    			}
    			pname := fmt.Sprintf("%s(%s)", name, arhdr.name)
    			l = atolwhex(arhdr.size)
    
    			pkname := filepath.Base(name)
    			if i := strings.LastIndex(pkname, ".a"); i >= 0 {
    				pkname = pkname[:i]
    			}
    			libar := sym.Library{Pkg: pkname}
    			h := ldobj(ctxt, f, &libar, l, pname, name)
    			if h.ld == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 19 23:11:11 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/parser.go

    			// the decision towards a type parameter list.
    			if pname, ptype := extractName(x, p.tok == _Comma); pname != nil && (ptype != nil || p.tok != _Rbrack) {
    				// d.Name "[" pname ...
    				// d.Name "[" pname ptype ...
    				// d.Name "[" pname ptype "," ...
    				d.TParamList = p.paramList(pname, ptype, _Rbrack, true) // ptype may be nil
    				d.Alias = p.gotAssign()
    				d.Type = p.typeOrNil()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/lib.go

    				return addlibpath(ctxt, "internal", "internal", "", name, shlibname, zerofp)
    			}
    		}
    		pname := filepath.Join(libdir, name+".a")
    		if ctxt.Debugvlog != 0 {
    			ctxt.Logf("searching for %s.a in %s\n", name, pname)
    		}
    		if _, err := os.Stat(pname); err == nil {
    			return addlibpath(ctxt, "internal", "internal", pname, name, "", zerofp)
    		}
    	}
    
    	if name == "runtime" {
    		Exitf("error: unable to find runtime.a")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/resolver.go

    						obj = scope.Lookup(ident.Value)
    					}
    				}
    				// If Config.go115UsesCgo is set, the typechecker will resolve Cgo
    				// selectors to their cgo name. We must do the same here.
    				if pname, _ := obj.(*PkgName); pname != nil {
    					if pname.imported.cgo { // only set if Config.go115UsesCgo is set
    						name = "_Ctype_" + typ.Sel.Value
    					}
    				}
    			}
    			if name == "" {
    				return false, nil
    			}
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top