Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 79 of 79 for dependency_c (0.26 sec)

  1. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.plugins.ide.idea.model.Dependency.addToNode(groovy.util.Node)> has arguments/return type groovy.util.Node that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (Dependency.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ppc64/asm.go

    	r := relocs.At(ri)
    	var t int64
    	// ldr.SymValue(rs) == 0 indicates a cross-package jump to a function that is not yet
    	// laid out. Conservatively use a trampoline. This should be rare, as we lay out packages
    	// in dependency order.
    	if ldr.SymValue(rs) != 0 {
    		t = ldr.SymValue(rs) + r.Add() - (ldr.SymValue(s) + int64(r.Off()))
    	}
    	switch r.Type() {
    	case objabi.R_CALLPOWER:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  3. src/runtime/mgc.go

    // Every time a new Go release happened, the package stopped building,
    // and the authors had to add a new file with a new //go:build line, and
    // then the entire ecosystem of packages with that as a dependency had to
    // explicitly update to the new version. Many packages depend on
    // assume-no-moving-gc transitively, through paths like
    // inet.af/netaddr -> go4.org/intern -> assume-no-moving-gc.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/init.go

    		roots = append(roots, module.Version{Path: "toolchain", Version: toolchain})
    		// Leave the toolchain as indirect: nothing in the user's module directly
    		// imports a package from the toolchain, and (like an indirect dependency in
    		// a module without graph pruning) we may remove the toolchain line
    		// automatically if the 'go' version is changed so that it implies the exact
    		// same toolchain.
    	}
    	return roots
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_test.cc

      TF_DeleteBuffer(graph_def);
      graph_def = TF_NewBuffer();
      TF_GraphToGraphDef(graph, graph_def, s);
      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
    
      // Import again, with remapped control dependency, into the same graph
      TF_DeleteImportGraphDefOptions(opts);
      opts = TF_NewImportGraphDefOptions();
      TF_ImportGraphDefOptionsSetPrefix(opts, "imported4");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  6. tensorflow/c/c_api.h

    TF_CAPI_EXPORT extern void TF_ImportGraphDefOptionsRemapControlDependency(
        TF_ImportGraphDefOptions* opts, const char* src_name, TF_Operation* dst);
    
    // Cause the imported graph to have a control dependency on `oper`. `oper`
    // should exist in the graph being imported into.
    TF_CAPI_EXPORT extern void TF_ImportGraphDefOptionsAddControlDependency(
        TF_ImportGraphDefOptions* opts, TF_Operation* oper);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/api_test.go

    			"c = 0", "d = 0", "b = d + c", "e = 0", "a = e + c",
    		}},
    		// emit an initializer for n:1 initializations only once (not for each node
    		// on the lhs which may appear in different order in the dependency graph)
    		{`package p12; var (a = x; b = 0; x, y = m[0]; m map[int]int)`, []string{
    			"b = 0", "x, y = m[0]", "a = x",
    		}},
    		// test case from spec section on package initialization
    		{`package p12
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  8. src/go/types/api_test.go

    			"c = 0", "d = 0", "b = d + c", "e = 0", "a = e + c",
    		}},
    		// emit an initializer for n:1 initializations only once (not for each node
    		// on the lhs which may appear in different order in the dependency graph)
    		{`package p12; var (a = x; b = 0; x, y = m[0]; m map[int]int)`, []string{
    			"b = 0", "x, y = m[0]", "a = x",
    		}},
    		// test case from spec section on package initialization
    		{`package p12
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    func (c *typeConv) Type(dtype dwarf.Type, pos token.Pos) *Type {
    	return c.loadType(dtype, pos, "")
    }
    
    // loadType recursively loads the requested dtype and its dependency graph.
    func (c *typeConv) loadType(dtype dwarf.Type, pos token.Pos, parent string) *Type {
    	// Always recompute bad pointer typedefs, as the set of such
    	// typedefs changes as we see more types.
    	checkCache := true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top