Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 222 for outLines (0.12 sec)

  1. src/cmd/compile/internal/test/abiutilsaux_test.go

    // Copyright 2020 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.
    
    package test
    
    // This file contains utility routines and harness infrastructure used
    // by the ABI tests in "abiutils_test.go".
    
    import (
    	"cmd/compile/internal/abi"
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/typecheck"
    	"cmd/compile/internal/types"
    	"cmd/internal/src"
    	"fmt"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 18:34:00 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/runtime/runtime.go

    // called in case of panic.  HandleCrash actually crashes, after calling the
    // handlers and logging the panic message.
    //
    // E.g., you can provide one or more additional handlers for something like shutting down go routines gracefully.
    //
    // TODO(pohly): logcheck:context // HandleCrashWithContext should be used instead of HandleCrash in code which supports contextual logging.
    func HandleCrash(additionalHandlers ...func(interface{})) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/MyMem.h

     *  License along with this library; if not, write to the Free Software
     *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    /*
     *  Contains Memory Related Defines to use internal routines to detect Memory Leak
     *  in Debug Versions
     *
     *  18/Jun/2002   Memory Debug Functions. (AK)
     *
     *  17-Jul-2004   New interface for global function names. (JDS)
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/fiat/p256.go

    func (e *P256Element) Set(t *P256Element) *P256Element {
    	e.x = t.x
    	return e
    }
    
    // Bytes returns the 32-byte big-endian encoding of e.
    func (e *P256Element) Bytes() []byte {
    	// This function is outlined to make the allocations inline in the caller
    	// rather than happen on the heap.
    	var out [p256ElementLen]byte
    	return e.bytes(&out)
    }
    
    func (e *P256Element) bytes(out *[p256ElementLen]byte) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/convert_custom_aggregation_op_to_quant_stats.cc

    };
    
    class ConvertCustomAggregationOpToQuantStats
        : public OpRewritePattern<TF::CustomAggregatorOp> {
     public:
      // Does not take ownership of context, which must refer to a valid value that
      // outlives this object.
      explicit ConvertCustomAggregationOpToQuantStats(MLIRContext *context)
          : OpRewritePattern<TF::CustomAggregatorOp>(context) {}
    
      LogicalResult matchAndRewrite(TF::CustomAggregatorOp op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/fiat/p384.go

    func (e *P384Element) Set(t *P384Element) *P384Element {
    	e.x = t.x
    	return e
    }
    
    // Bytes returns the 48-byte big-endian encoding of e.
    func (e *P384Element) Bytes() []byte {
    	// This function is outlined to make the allocations inline in the caller
    	// rather than happen on the heap.
    	var out [p384ElementLen]byte
    	return e.bytes(&out)
    }
    
    func (e *P384Element) bytes(out *[p384ElementLen]byte) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/fiat/p521.go

    func (e *P521Element) Set(t *P521Element) *P521Element {
    	e.x = t.x
    	return e
    }
    
    // Bytes returns the 66-byte big-endian encoding of e.
    func (e *P521Element) Bytes() []byte {
    	// This function is outlined to make the allocations inline in the caller
    	// rather than happen on the heap.
    	var out [p521ElementLen]byte
    	return e.bytes(&out)
    }
    
    func (e *P521Element) bytes(out *[p521ElementLen]byte) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  8. README.md

    make quick-release
    ```
    
    For the full story, head over to the [developer's documentation].
    
    ## Support
    
    If you need support, start with the [troubleshooting guide],
    and work your way through the process that we've outlined.
    
    That said, if you have questions, reach out to us
    [one way or another][communication].
    
    [announcement]: https://cncf.io/news/announcement/2015/07/new-cloud-native-computing-foundation-drive-alignment-among-container
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/syms.go

    func LookupRuntimeABI(name string, abi obj.ABI) *obj.LSym {
    	return base.PkgLinksym("runtime", name, abi)
    }
    
    // InitCoverage loads the definitions for routines called
    // by code coverage instrumentation (similar to InitRuntime above).
    func InitCoverage() {
    	typs := coverageTypes()
    	for _, d := range &coverageDecls {
    		sym := ir.Pkgs.Coverage.Lookup(d.name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:13 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/fiat/p224.go

    func (e *P224Element) Set(t *P224Element) *P224Element {
    	e.x = t.x
    	return e
    }
    
    // Bytes returns the 28-byte big-endian encoding of e.
    func (e *P224Element) Bytes() []byte {
    	// This function is outlined to make the allocations inline in the caller
    	// rather than happen on the heap.
    	var out [p224ElementLen]byte
    	return e.bytes(&out)
    }
    
    func (e *P224Element) bytes(out *[p224ElementLen]byte) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
Back to top