Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 140 for Implementation (0.28 sec)

  1. src/crypto/tls/handshake_client_test.go

    	}
    
    	return len(data), nil
    }
    
    func (o *opensslOutputSink) String() string {
    	return string(o.all)
    }
    
    // clientTest represents a test of the TLS client handshake against a reference
    // implementation.
    type clientTest struct {
    	// name is a freeform string identifying the test and the file in which
    	// the expected results will be stored.
    	name string
    	// args, if not empty, contains a series of arguments for the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  2. src/runtime/asm_amd64.s

    //
    // This function communicates back to the debugger by setting R12 and
    // invoking INT3 to raise a breakpoint signal. See the comments in the
    // implementation for the protocol the debugger is expected to
    // follow. InjectDebugCall in the runtime tests demonstrates this protocol.
    //
    // The debugger must ensure that any pointers passed to the function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys TimeBeginPeriod (period uint32) (err error) [failretval != 0] = winmm.timeBeginPeriod
    //sys TimeEndPeriod (period uint32) (err error) [failretval != 0] = winmm.timeEndPeriod
    
    // syscall interface implementation for other packages
    
    // GetCurrentProcess returns the handle for the current process.
    // It is a pseudo handle that does not need to be closed.
    // The returned error is always nil.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    For example, if you create a task that packages the compiled classes of a Java application,  you should use an implementation similar to this:
    
    ====
    include::sample[dir="snippets/files/sampleJavaProject/kotlin",files="build.gradle.kts[tags=link-task-properties]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	}
    
    	d.Type = uint8(st.Mode >> 24)
    	return d, err
    }
    
    func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) {
    	// Simulation of Getdirentries port from the Darwin implementation.
    	// COMMENTS FROM DARWIN:
    	// It's not the full required semantics, but should handle the case
    	// of calling Getdirentries or ReadDirent repeatedly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // 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 unix
    
    import (
    	"encoding/binary"
    	"strconv"
    	"syscall"
    	"time"
    	"unsafe"
    )
    
    /*
     * Wrapped
     */
    
    func Access(path string, mode uint32) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  7. src/reflect/type.go

    // to describe a non-defined type with no methods.
    type uncommonType = abi.UncommonType
    
    // Embed this type to get common/uncommon
    type common struct {
    	abi.Type
    }
    
    // rtype is the common implementation of most values.
    // It is embedded in other struct types.
    type rtype struct {
    	t abi.Type
    }
    
    func (t *rtype) common() *abi.Type {
    	return &t.t
    }
    
    func (t *rtype) uncommon() *abi.UncommonType {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    with a new first dimension for the list index. List update operations are
    converted to operations that create a new tensor representing the list.
    
    In the current implementation, the resulting operations are statically shaped,
    which means it must be possible to infer a bound on the full shape of the
    TensorList. That is, the `element_shape` and `num_elements` arguments to a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    		// promoting the fields of the inner struct.
    
    		t := c.Type(ft, pos)
    		tgo := t.Go
    		size := t.Size
    		talign := t.Align
    		if f.BitOffset > 0 || f.BitSize > 0 {
    			// The layout of bitfields is implementation defined,
    			// so we don't know how they correspond to Go fields
    			// even if they are aligned at byte boundaries.
    			continue
    		}
    
    		if talign > 0 && f.ByteOffset%talign != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		ignoreNotFound:    true,
    		expectNotFoundErr: false,
    		expectedOut:       &example.Pod{},
    	}}
    
    	for _, tt := range tests {
    		tt := tt
    		t.Run(tt.name, func(t *testing.T) {
    			// For some asynchronous implementations of storage interface (in particular watchcache),
    			// certain requests may impact result of further requests. As an example, if we first
    			// ensure that watchcache is synchronized up to ResourceVersion X (using Get/List requests
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
Back to top