Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 76 for callsite (0.14 sec)

  1. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

        }
      }
      function_body.graph->RemoveNode(lifted_arg_node);
    }
    
    // Adds function def to function definition library and update the function
    // callsite operation `callsite_node` to invoke new function instead.
    Status AddFunctionWithNewName(const std::string& new_name,
                                  const std::string& func_attr_name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/link.go

    	p  *Prog
    	id int32
    }
    
    // Mark p as the instruction to set as the pc when
    // "unwinding" the inlining global frame id. Usually it should be
    // instruction with a file:line at the callsite, and occur
    // just before the body of the inlined function.
    func (fi *FuncInfo) AddInlMark(p *Prog, id int32) {
    	fi.InlMarks = append(fi.InlMarks, InlMark{p: p, id: id})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  3. pilot/pkg/model/service.go

    	sep := "|"
    	// This could be the DNS srv form of the cluster that uses outbound_.port_.subset_.hostname
    	// Since we do not want every callsite to implement the logic to differentiate between the two forms
    	// we add an alternate parser here.
    	if strings.HasPrefix(s, trafficDirectionOutboundSrvPrefix) ||
    		strings.HasPrefix(s, trafficDirectionInboundSrvPrefix) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  4. src/crypto/tls/common.go

    	VersionTLS13,
    	VersionTLS12,
    	VersionTLS11,
    	VersionTLS10,
    }
    
    // roleClient and roleServer are meant to call supportedVersions and parents
    // with more readability at the callsite.
    const roleClient = true
    const roleServer = false
    
    var tls10server = godebug.New("tls10server")
    
    func (c *Config) supportedVersions(isClient bool) []uint16 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  5. src/go/parser/parser.go

    		// embedded, possibly instantiated type
    		typ = x
    		if p.tok == token.LBRACK {
    			// embedded instantiated interface
    			typ = p.parseTypeInstance(typ)
    		}
    	}
    
    	// Comment is added at the callsite: the field below may joined with
    	// additional type specs using '|'.
    	// TODO(rfindley) this should be refactored.
    	// TODO(rfindley) add more tests for comment handling.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/providers/propertyConventionCallsites/groovy/build.gradle

    // tag::convention-callsites-from-plugin[]
    // setting convention when registering a task from plugin
    class GreetingPlugin implements Plugin<Project> {
        void apply(Project project) {
            project.getTasks().register("hello", GreetingTask) {
                greeter.convention("Greeter")
            }
        }
    }
    // end::convention-callsites-from-plugin[]
    
    apply plugin: GreetingPlugin
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 16:56:11 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/providers/propertyConventionCallsites/kotlin/build.gradle.kts

    // tag::convention-callsites[]
    
    // tag::convention-callsites-from-plugin[]
    // setting convention when registering a task from plugin
    class GreetingPlugin : Plugin<Project> {
        override fun apply(project: Project) {
            project.getTasks().register<GreetingTask>("hello") {
                greeter.convention("Greeter")
            }
        }
    }
    // end::convention-callsites-from-plugin[]
    
    // tag::convention-callsites-from-buildscript[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 16:56:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/providers/propertyConventionCallsites/kotlin/settings.gradle.kts

    rootProject.name = "property-convention-callsites"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 16:56:09 UTC 2024
    - 51 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/providers/propertyConventionCallsites/groovy/settings.gradle

    rootProject.name = 'property-convention-callsites'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 16:56:09 UTC 2024
    - 51 bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types/size.go

    }
    
    // CalcSize calculates and stores the size, alignment, eq/hash algorithm,
    // and ptrBytes for t.
    // If CalcSizeDisabled is set, and the size/alignment
    // have not already been calculated, it calls Fatal.
    // This is used to prevent data races in the back end.
    func CalcSize(t *Type) {
    	// Calling CalcSize when typecheck tracing enabled is not safe.
    	// See issue #33658.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top