Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 140 for defs (0.04 sec)

  1. src/cmd/compile/internal/ssagen/abi.go

    )
    
    // SymABIs records information provided by the assembler about symbol
    // definition ABIs and reference ABIs.
    type SymABIs struct {
    	defs map[string]obj.ABI
    	refs map[string]obj.ABISet
    }
    
    func NewSymABIs() *SymABIs {
    	return &SymABIs{
    		defs: make(map[string]obj.ABI),
    		refs: make(map[string]obj.ABISet),
    	}
    }
    
    // canonicalize returns the canonical name used for a linker symbol in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/sym.go

    			}
    			ctxt.nonpkgdefs = append(ctxt.nonpkgdefs, s)
    			nonpkgidx++
    		} else {
    			s.PkgIdx = goobj.PkgIdxSelf
    			s.SymIdx = idx
    			if idx != int32(len(ctxt.defs)) {
    				panic("bad index")
    			}
    			ctxt.defs = append(ctxt.defs, s)
    			idx++
    		}
    		s.Set(AttrIndexed, true)
    	})
    
    	ipkg := int32(1) // 0 is invalid index
    	nonpkgdef := nonpkgidx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/objfile.go

    				continue
    			}
    			if s.OnList() {
    				panic("a symbol is added to defs multiple times")
    			}
    			s.PkgIdx = goobj.PkgIdxSelf
    			s.SymIdx = symidx
    			s.Set(AttrIndexed, true)
    			s.Set(AttrOnList, true)
    			symidx++
    			infosyms = append(infosyms, s)
    		}
    	}
    	ctxt.defs = append(ctxt.defs, infosyms...)
    }
    
    func writeAuxSymDebug(ctxt *Link, par *LSym, aux *LSym) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/python/converter_python_api.cc

                       "defs argument",
                       i);
          return nullptr;
        }
    
        // Parse op def from character array.
        tensorflow::OpDef opdef;
        if (!tensorflow::protobuf::TextFormat::ParseFromString(tf_opdefs, &opdef)) {
          PyErr_Format(
              PyExc_ValueError,
              "Failed to parse opdefs at index %d of custom op defs argument: %s",
              i, tf_opdefs);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppIncrementalBuildIntegrationTest.groovy

        String sourceType = "cpp"
        def libObjects = new CompilationOutputsFixture(file("library/build/obj/main/debug"), [".o", ".obj"])
        def appObjects = new CompilationOutputsFixture(file("app/build/obj/main/debug"), [".o", ".obj"])
    
        def install = installation("app/build/install/main/debug")
        def libraryDebug = tasks(LIBRARY).debug
        def appDebug = tasks(APP).debug
        def installApp = appDebug.install
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  6. fastapi/openapi/models.py

        ref: Optional[str] = Field(default=None, alias="$ref")
        dynamicRef: Optional[str] = Field(default=None, alias="$dynamicRef")
        defs: Optional[Dict[str, "SchemaOrBool"]] = Field(default=None, alias="$defs")
        comment: Optional[str] = Field(default=None, alias="$comment")
        # Ref: JSON Schema 2020-12: https://json-schema.org/draft/2020-12/json-schema-core.html#name-a-vocabulary-for-applying-s
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 22:49:33 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/rangefunc/rewrite.go

    	n := syntax.NewName(pos, name)
    	tv := syntax.TypeAndValue{Type: typ}
    	tv.SetIsValue()
    	n.SetTypeInfo(tv)
    	r.info.Defs[n] = obj
    	return obj, n
    }
    
    func (r *rewriter) generateParamName(results []*syntax.Field, i int) {
    	obj, n := r.sig.RenameResult(results, i)
    	r.info.Defs[n] = obj
    }
    
    // declVar declares a variable with a given name type and initializer value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/BUILD

        tbl_outs = [
            (
                ["-gen-op-decls"],
                "ir/tfr_ops.h.inc",
            ),
            (
                ["-gen-op-defs"],
                "ir/tfr_ops.cc.inc",
            ),
        ],
        tblgen = "@llvm-project//mlir:mlir-tblgen",
        td_file = "ir/tfr_ops.td",
        deps = [
            ":tfr_ops_td_files",
        ],
    )
    
    gentbl_cc_library(
        name = "tfr_decompose_inc_gen",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/users/users_linux.go

    	klogLevel = 5
    
    	// noshell holds a path to a binary to disable shell login.
    	noshell = "/bin/false"
    
    	// These are constants for the default system paths on Linux.
    	fileEtcLoginDefs = "/etc/login.defs"
    	fileEtcPasswd    = "/etc/passwd"
    	fileEtcGroup     = "/etc/group"
    )
    
    var (
    	// these entries hold the users and groups to create as defined in:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:35:10 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loadpe/ldpe.go

    // "__imp_XXX" a references to "XXX", however this doesn't work well
    // with more modern compilers, where you can sometimes see import
    // symbols that are defs (as opposed to external refs).
    //
    // The main actions taken below are to search for references to
    // SDYNIMPORT symbols in host object text/data sections and flag the
    // symbols for later fixup. When we see a reference to an import
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
Back to top