Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 62 for Ordinary (0.18 sec)

  1. src/go/types/call.go

    		}
    		x.expr = call
    		// a non-constant result implies a function call
    		if x.mode != invalid && x.mode != constant_ {
    			check.hasCallOrRecv = true
    		}
    		return predeclaredFuncs[id].kind
    	}
    
    	// ordinary function/method call
    	// signature may be generic
    	cgocall := x.mode == cgofunc
    
    	// a type parameter may be "called" if all types have the same signature
    	sig, _ := coreType(x.typ).(*Signature)
    	if sig == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_messages.go

    package tls
    
    import (
    	"errors"
    	"fmt"
    	"slices"
    	"strings"
    
    	"golang.org/x/crypto/cryptobyte"
    )
    
    // The marshalingFunction type is an adapter to allow the use of ordinary
    // functions as cryptobyte.MarshalingValue.
    type marshalingFunction func(b *cryptobyte.Builder) error
    
    func (f marshalingFunction) Marshal(b *cryptobyte.Builder) error {
    	return f(b)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. src/syscall/syscall_linux.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Linux system calls.
    // This file is compiled as ordinary Go code,
    // but it is also input to mksyscall,
    // which parses the //sys lines and generates system call stubs.
    // Note that sometimes we use a lowercase //sys name and
    // wrap it in our own nicer implementation.
    
    package syscall
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    	}
    	return p.ImportPath
    }
    
    // IsTestOnly reports whether p is a test-only package.
    //
    // A “test-only” package is one that:
    //   - is a test-only variant of an ordinary package, or
    //   - is a synthesized "main" package for a test binary, or
    //   - contains only _test.go files.
    func (p *Package) IsTestOnly() bool {
    	return p.ForTest != "" ||
    		p.Internal.TestmainGo != nil ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. src/runtime/arena.go

    // arena chunks. That is, they can never be used for the general heap. Each chunk
    // is also represented by a single mspan, and is modeled as a single large heap
    // allocation. It must be, because each chunk contains ordinary Go values that may
    // point into the heap, so it must be scanned just like any other object. Any
    // pointer into a chunk will therefore always cause the whole chunk to be scanned
    // while its corresponding arena is still live.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier.go

    			Name:     bc.name,
    			Type:     ptr.To(bc.chainType),
    			Hook:     ptr.To(bc.hook),
    			Priority: ptr.To(bc.priority),
    		}
    		tx.Add(chain)
    		tx.Flush(chain)
    	}
    
    	// Create and flush ordinary chains and add rules jumping to them
    	createdChains := sets.New[string]()
    	for _, c := range nftablesJumpChains {
    		ensureChain(c.dstChain, tx, createdChains)
    		tx.Add(&knftables.Rule{
    			Chain: c.srcChain,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/rangefunc/rewrite.go

    #defers and then attach the #defers variable to the CallStmt
    representing the defer. That variable will be propagated to the
    backend and will cause the backend to compile the defer using
    deferprocat instead of an ordinary deferproc.
    
    TODO: Could call runtime.deferrangefuncend after f.
    */
    package rangefunc
    
    import (
    	"cmd/compile/internal/base"
    	"cmd/compile/internal/syntax"
    	"cmd/compile/internal/types2"
    	"fmt"
    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. doc/go_spec.html

    embedded field in a struct <code>x</code> is called <i>promoted</i> if
    <code>x.f</code> is a legal <a href="#Selectors">selector</a> that denotes
    that field or method <code>f</code>.
    </p>
    
    <p>
    Promoted fields act like ordinary fields
    of a struct except that they cannot be used as field names in
    <a href="#Composite_literals">composite literals</a> of the struct.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  9. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

        under the terms of this License.
    
        c) If the modified program normally reads commands interactively
        when run, you must cause it, when started running for such
        interactive use in the most ordinary way, to print or display an
        announcement including an appropriate copyright notice and a notice
        that there is no warranty (or else, saying that you provide a
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  10. src/os/exec/exec_test.go

    			return
    		}
    	}
    }
    
    // TestMain allows the test binary to impersonate many other binaries,
    // some of which may manipulate os.Stdin, os.Stdout, and/or os.Stderr
    // (and thus cannot run as an ordinary Test function, since the testing
    // package monkey-patches those variables before running tests).
    func TestMain(m *testing.M) {
    	flag.Parse()
    
    	pid := os.Getpid()
    	if os.Getenv("GO_EXEC_TEST_PID") == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
Back to top