Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 422 for strref (0.17 sec)

  1. test/fixedbugs/issue4964.dir/a.go

    // license that can be found in the LICENSE file.
    
    package a
    
    var global, global2 *int
    
    type T struct {
    	Pointer *int
    }
    
    //go:noinline
    func Store(t *T) {
    	global = t.Pointer
    }
    
    //go:noinline
    func Store2(t *T) {
    	global2 = t.Pointer
    }
    
    func Get() *int {
    	return global
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 03 02:01:34 UTC 2015
    - 379 bytes
    - Viewed (0)
  2. platforms/software/resources/src/main/java/org/gradle/internal/resource/Resource.java

    import org.gradle.api.Describable;
    
    /**
     * Represents some resource that may have content.
     *
     * <p>This type is currently pretty much empty. It's here as a place to extract and reuse stuff from the various subtypes, which all stared off as separate hierarchies.
     */
    public interface Resource extends Describable {
        /**
         * Returns a display name for this resource. This can be used in log and error messages.
         *
         * @return the display name
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/sys/cpu/cpu_zos_s390x.go

    package cpu
    
    func initS390Xbase() {
    	// get the facilities list
    	facilities := stfle()
    
    	// mandatory
    	S390X.HasZARCH = facilities.Has(zarch)
    	S390X.HasSTFLE = facilities.Has(stflef)
    	S390X.HasLDISP = facilities.Has(ldisp)
    	S390X.HasEIMM = facilities.Has(eimm)
    
    	// optional
    	S390X.HasETF3EH = facilities.Has(etf3eh)
    	S390X.HasDFP = facilities.Has(dfp)
    	S390X.HasMSA = facilities.Has(msa)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 02 15:41:00 UTC 2020
    - 643 bytes
    - Viewed (0)
  4. test/fixedbugs/issue4964.dir/b.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import "./a"
    
    func F() {
    	// store 1 in a.global
    	x, y := 1, 2
    	t := a.T{Pointer: &x}
    	a.Store(&t)
    	_ = y
    }
    
    func G() {
    	// store 4 in a.global2
    	x, y := 3, 4
    	t := a.T{Pointer: &y}
    	a.Store2(&t)
    	_ = x
    }
    
    func main() {
    	F()
    	G()
    	p := a.Get()
    	n := *p
    	if n != 1 {
    		println(n, "!= 1")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 08:03:45 UTC 2013
    - 484 bytes
    - Viewed (0)
  5. tensorflow/c/experimental/saved_model/public/concrete_function_list.h

    #ifndef TENSORFLOW_C_EXPERIMENTAL_SAVED_MODEL_PUBLIC_CONCRETE_FUNCTION_LIST_H_
    #define TENSORFLOW_C_EXPERIMENTAL_SAVED_MODEL_PUBLIC_CONCRETE_FUNCTION_LIST_H_
    
    #include <stddef.h>
    
    #include "tensorflow/c/c_api_macros.h"
    #include "tensorflow/c/experimental/saved_model/public/concrete_function.h"
    
    #ifdef __cplusplus
    extern "C" {
    #endif  // __cplusplus
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 13 17:52:37 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/saved_model/public/signature_def_param_list.h

    #ifndef TENSORFLOW_C_EXPERIMENTAL_SAVED_MODEL_PUBLIC_SIGNATURE_DEF_PARAM_LIST_H_
    #define TENSORFLOW_C_EXPERIMENTAL_SAVED_MODEL_PUBLIC_SIGNATURE_DEF_PARAM_LIST_H_
    
    #include <stddef.h>
    
    #include "tensorflow/c/c_api_macros.h"
    #include "tensorflow/c/experimental/saved_model/public/signature_def_param.h"
    
    #ifdef __cplusplus
    extern "C" {
    #endif  // __cplusplus
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 30 17:58:21 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  7. src/runtime/mcheckmark.go

    package runtime
    
    import (
    	"internal/goarch"
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // A checkmarksMap stores the GC marks in "checkmarks" mode. It is a
    // per-arena bitmap with a bit for every word in the arena. The mark
    // is stored on the bit corresponding to the first word of the marked
    // allocation.
    type checkmarksMap struct {
    	_ sys.NotInHeap
    	b [heapArenaBytes / goarch.PtrSize / 8]uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testcarchive/testdata/main6.c

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that using the Go profiler in a C program does not crash.
    
    #include <stddef.h>
    #include <sys/time.h>
    
    #include "libgo6.h"
    
    int main(int argc, char **argv) {
    	struct timeval tvstart, tvnow;
    	int diff;
    
    	gettimeofday(&tvstart, NULL);
    
    	go_start_profile();
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 830 bytes
    - Viewed (0)
  9. docs/kms/IAM.md

    - Run MinIO without a KMS. In this case all IAM data will be stored in plain-text.
    - Run MinIO with a single secret key. MinIO supports a static cryptographic key
      that can act as minimal KMS. With this method all IAM data will be stored
      encrypted. The encryption key has to be passed as environment variable.
    - Run MinIO with KES (minio/kes) in combination with any supported KMS as
      secure key store. For example, you can run MinIO + KES + Hashicorp Vault.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. src/runtime/cgo/gcc_sigaction.c

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build linux && (amd64 || arm64 || ppc64le)
    
    #include <errno.h>
    #include <stddef.h>
    #include <stdint.h>
    #include <string.h>
    #include <signal.h>
    
    #include "libcgo.h"
    
    // go_sigaction_t is a C version of the sigactiont struct from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top