Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 371 for loadOps (0.77 sec)

  1. src/runtime/tls_ppc64x.s

    #ifndef GOOS_aix
    #ifndef GOOS_openbsd
    	MOVBZ	runtime·iscgo(SB), R31
    	CMP	R31, $0
    	BEQ	nocgo
    #endif
    #endif
    	MOVD	runtime·tls_g(SB), R31
    	MOVD	g, 0(R31)
    
    nocgo:
    	RET
    
    // load_g loads the g register from pthread-provided
    // thread-local memory, for use after calling externally compiled
    // ppc64 code that overwrote those registers.
    //
    // This is never called directly from C code (it doesn't have to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:48:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/doc/c4/C4_2_Container.puml

    Rel(dev, gradle, "Uses", "Command Line")
    Rel(dev, editor, "Uses", "GUI")
    
    Rel(provider, kotlinc, "Uses", "Embedded")
    Rel(plugin, kgp, "Applies")
    
    Rel(ideKotlin, kotlinc, "Uses")
    Rel(ideKotlin, resolver, "Loads", "Embedded")
    
    Rel(provider, buildCache, "Uses")
    Rel(kgp, buildCache, "Uses")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. test/inline_endian.go

    // Copyright 2021 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.
    
    // Similar to inline.go, but only for architectures that can merge loads.
    
    package foo
    
    import (
    	"encoding/binary"
    )
    
    // Ensure that simple encoding/binary functions are cheap enough
    // that functions using them can also be inlined (issue 42958).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 15 21:05:02 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  4. src/runtime/stubs_loong64.go

    //go:build loong64
    
    package runtime
    
    // Called from assembly only; declared for go vet.
    func load_g()
    func save_g()
    
    // Used by reflectcall and the reflect package.
    //
    // Spills/loads arguments in registers to/from an internal/abi.RegArgs
    // respectively. Does not follow the Go ABI.
    func spillArgs()
    func unspillArgs()
    
    // getfp returns the frame pointer register of its caller or 0 if not implemented.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:04:23 UTC 2023
    - 638 bytes
    - Viewed (0)
  5. src/runtime/stubs_ppc64x.go

    package runtime
    
    import "unsafe"
    
    // Called from assembly only; declared for go vet.
    func load_g()
    func save_g()
    func reginit()
    
    //go:noescape
    func asmcgocall_no_g(fn, arg unsafe.Pointer)
    
    // Spills/loads arguments in registers to/from an internal/abi.RegArgs
    // respectively. Does not follow the Go ABI.
    func spillArgs()
    func unspillArgs()
    
    // getfp returns the frame pointer register of its caller or 0 if not implemented.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:48:11 UTC 2023
    - 688 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/config.go

    )
    
    var (
    	scheme = runtime.NewScheme()
    	codecs = serializer.NewCodecFactory(scheme)
    )
    
    func init() {
    	install.Install(scheme)
    }
    
    // LoadConfiguration loads the provided configuration.
    func LoadConfiguration(config io.Reader) (*resourcequotaapi.Configuration, error) {
    	// if no config is provided, return a default configuration
    	if config == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. src/runtime/stubs_amd64.go

    func retpolineR15()
    
    //go:noescape
    func asmcgocall_no_g(fn, arg unsafe.Pointer)
    
    //go:systemstack
    func asmcgocall_landingpad()
    
    // Used by reflectcall and the reflect package.
    //
    // Spills/loads arguments in registers to/from an internal/abi.RegArgs
    // respectively. Does not follow the Go ABI.
    func spillArgs()
    func unspillArgs()
    
    // getfp returns the frame pointer register of its caller or 0 if not implemented.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_ops.td

      }];
    }
    
    def TFIfrtLoadVariableOp: TensorflowMlrt_Op<"tf_ifrt_load_variable", [Pure]> {
      let summary = "Loads a variable tensor as an IFRT array for mlrt";
    
      let description = [{
        This is the MLRT version of tf.IfrtLoadVariableOp.
    
        This op loads a variable tensor as an IFRT array and binds it with the specified name.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:35:32 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/initialization/GradlePropertiesController.java

    public interface GradlePropertiesController {
    
        /**
         * The {@link GradleProperties} instance attached to this service.
         */
        GradleProperties getGradleProperties();
    
        /**
         * Loads the set of {@link GradleProperties} from the given directory and
         * makes it available to the build.
         *
         * Optionally sets a system properties after load.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:22:05 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/local/internal/LocalBuildCacheService.java

     * interface.
     */
    public interface LocalBuildCacheService extends BuildCacheTempFileStore, Closeable {
    
        /**
         * Loads a cache artifact from a local file store. If a result is found the {@code reader} is executed.
         */
        void loadLocally(BuildCacheKey key, Consumer<? super File> reader);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top