Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 106 for s_param (0.23 sec)

  1. src/cmd/compile/internal/ssa/location.go

    // register can't contain pointers.
    func (r *Register) GCNum() int16 {
    	return r.gcNum
    }
    
    // A LocalSlot is a location in the stack frame, which identifies and stores
    // part or all of a PPARAM, PPARAMOUT, or PAUTO ONAME node.
    // It can represent a whole variable, part of a larger stack slot, or part of a
    // variable that has been decomposed into multiple stack slots.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/stylesheets/custom-highlight/kotlin-hl.xml

            <keyword>null</keyword>
            <keyword>object</keyword>
            <keyword>package</keyword>
            <keyword>param</keyword>
            <keyword>property</keyword>
            <keyword>receiver</keyword>
            <keyword>return</keyword>
            <keyword>set</keyword>
            <keyword>setparam</keyword>
            <keyword>super</keyword>
            <keyword>this</keyword>
            <keyword>throw</keyword>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/monitoring.go

    		return m.monitoringServer.Close()
    	}
    	return nil
    }
    
    // initMonitor initializes the configuration for the pilot monitoring server.
    func (s *Server) initMonitor(addr string) error { // nolint: unparam
    	s.addStartFunc("monitoring", func(stop <-chan struct{}) error {
    		monitor, err := startMonitor(addr, s.monitoringMux)
    		if err != nil {
    			return err
    		}
    		go func() {
    			<-stop
    			err := monitor.Close()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump

    // *unconditionally*.  Therefore these #includes cannot be moved
    // inside #if GTEST_HAS_PARAM_TEST.
    #include "gtest/internal/gtest-param-util.h"
    #include "gtest/internal/gtest-port.h"
    
    #if GTEST_HAS_PARAM_TEST
    
    namespace testing {
    
    // Forward declarations of ValuesIn(), which is implemented in
    // include/gtest/gtest-param-test.h.
    template <typename ForwardIterator>
    internal::ParamGenerator<
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. pkg/test/echo/server/forwarder/config.go

    			}
    			fwLog.Debugf("Using client certificate [%s] issued by %s", cert.SerialNumber, cert.Issuer)
    			for _, uri := range cert.URIs {
    				fwLog.Debugf("  URI SAN: %s", uri)
    			}
    		}
    		// nolint: unparam
    		return func(info *tls.CertificateRequestInfo) (*tls.Certificate, error) {
    			fwLog.Debugf("Peer asking for client certificate")
    			for i, ca := range info.AcceptableCAs {
    				x := &pkix.RDNSequence{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/pgen.go

    func needAlloc(n *ir.Name) bool {
    	if n.Op() != ir.ONAME {
    		base.FatalfAt(n.Pos(), "%v has unexpected Op %v", n, n.Op())
    	}
    
    	switch n.Class {
    	case ir.PAUTO:
    		return true
    	case ir.PPARAM:
    		return false
    	case ir.PPARAMOUT:
    		return n.IsOutputParamInRegisters()
    
    	default:
    		base.FatalfAt(n.Pos(), "%v has unexpected Class %v", n, n.Class)
    		return false
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. src/go/printer/testdata/parser.go

    	}
    
    	star := p.expect(token.MUL)
    	base := p.parseType()
    
    	return &ast.StarExpr{star, base}
    }
    
    func (p *parser) tryVarType(isParam bool) ast.Expr {
    	if isParam && p.tok == token.ELLIPSIS {
    		pos := p.pos
    		p.next()
    		typ := p.tryIdentOrType(isParam) // don't use parseType so we can provide better error message
    		if typ == nil {
    			p.error(pos, "'...' parameter is missing type")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  8. src/runtime/syscall_windows_test.go

    	}
    }
    
    func TestEnumWindows(t *testing.T) {
    	d := GetDLL(t, "user32.dll")
    	isWindows := d.Proc("IsWindow")
    	counter := 0
    	cb := syscall.NewCallback(func(hwnd syscall.Handle, lparam uintptr) uintptr {
    		if lparam != 888 {
    			t.Error("lparam was not passed to callback")
    		}
    		b, _, _ := isWindows.Call(uintptr(hwnd))
    		if b == 0 {
    			t.Error("USER32.IsWindow returns FALSE")
    		}
    		counter++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 16:31:35 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/liveness/plive.go

    		for i, n := range lv.vars {
    			if n.Class == ir.PPARAMOUT {
    				if n.IsOutputParamHeapAddr() {
    					// Just to be paranoid.  Heap addresses are PAUTOs.
    					base.Fatalf("variable %v both output param and heap output param", n)
    				}
    				if n.Heapaddr != nil {
    					// If this variable moved to the heap, then
    					// its stack copy is not live.
    					continue
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_launch_util.cc

        VLOG(3) << "Found alias: " << alias->ToString();
        int tf_param =
            input_mapping[alias->parameter_number] - missing_ctx_input_prefix;
        const Tensor input_tensor =
            ctx->input(tf_param).dtype() != DT_RESOURCE
                ? ctx->input(tf_param)
                : *resource_vars_snapshots.at(missing_ctx_input_prefix + tf_param);
        se::DeviceMemoryBase input_buffer =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
Back to top