Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 6,673 for Runtimes (0.19 sec)

  1. test/fixedbugs/issue46725.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import "runtime"
    
    type T [4]int // N.B., [4]int avoids runtime's tiny object allocator
    
    //go:noinline
    func g(x []*T) ([]*T, []*T) { return x, x }
    
    func main() {
    	const Jenny = 8675309
    	s := [10]*T{{Jenny}}
    
    	done := make(chan struct{})
    	runtime.SetFinalizer(s[0], func(p *T) { close(done) })
    
    	var h, _ interface{} = g(s[:])
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 11 20:13:07 UTC 2022
    - 818 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.td

    include "mlir/IR/OpBase.td"
    
    def TF__TfrtSetResourceOp : TF_Op<"_TfrtSetResource", []> {
      let summary = "Set values as TFRT runtime's static resource.";
    
      let description = [{
        Setting a tensor value in TFRT runtime's static resource manager, using
        index as its identifier. It can be retrieved by _TfrtGetResource using the
        same index.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.25.md

    - Kubeadm: perform additional dockershim cleanup. Treat all container runtimes as remote by using the flag "--container-runtime=remote", given dockershim was removed in 1.24 and given kubeadm 1.25 supports a kubelet version of 1.24 and 1.25. The flag "--network-plugin" will no longer be used for new clusters. Stop cleaning up the following dockershim...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.26.md

    - Dropped support for the Container Runtime Interface (CRI) version `v1alpha2`, which means that container runtimes just have to implement `v1`. ([#110618](https://github.com/kubernetes/kubernetes/pull/110618), [@saschagrunert](https://github.com/saschagrunert))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/base/limit.go

    		netLimitSem <- struct{}{}
    		hasToken = true
    	}
    
    	checker := new(netTokenChecker)
    	runtime.SetFinalizer(checker, (*netTokenChecker).panicUnreleased)
    
    	return func() {
    		if checker.released {
    			panic("internal error: net token released twice")
    		}
    		checker.released = true
    		if hasToken {
    			<-netLimitSem
    		}
    		runtime.SetFinalizer(checker, nil)
    	}, nil
    }
    
    var (
    	netLimitOnce sync.Once
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 02:47:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. src/os/file_posix.go

    			utimes[i] = syscall.Timespec{Sec: _UTIME_OMIT, Nsec: _UTIME_OMIT}
    		} else {
    			utimes[i] = syscall.NsecToTimespec(t.UnixNano())
    		}
    	}
    	set(0, atime)
    	set(1, mtime)
    	if e := syscall.UtimesNano(fixLongPath(name), utimes[0:]); e != nil {
    		return &PathError{Op: "chtimes", Path: name, Err: e}
    	}
    	return nil
    }
    
    // Chdir changes the current working directory to the file,
    // which must be a directory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. src/internal/unsafeheader/unsafeheader.go

    // Package unsafeheader contains header declarations for the Go runtime's slice
    // and string implementations.
    //
    // This package allows packages that cannot import "reflect" to use types that
    // are tested to be equivalent to reflect.SliceHeader and reflect.StringHeader.
    package unsafeheader
    
    import (
    	"unsafe"
    )
    
    // Slice is the runtime representation of a slice.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 16:14:17 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  8. src/net/rawconn.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package net
    
    import (
    	"internal/poll"
    	"runtime"
    	"syscall"
    )
    
    // BUG(tmm1): On Windows, the Write method of syscall.RawConn
    // does not integrate with the runtime's network poller. It cannot
    // wait for the connection to become writeable, and does not respect
    // deadlines. If the user-provided callback returns false, the Write
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types.go

    const (
    	// DefaultProcMount uses the container runtime defaults for readonly and masked
    	// paths for /proc.  Most container runtimes mask certain paths in /proc to avoid
    	// accidental security exposure of special devices or information.
    	DefaultProcMount ProcMountType = "Default"
    
    	// UnmaskedProcMount bypasses the default masking behavior of the container
    	// runtime and ensures the newly created /proc the container stays in tact with
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  10. src/syscall/time_fake.go

    //go:build faketime
    
    package syscall
    
    import "unsafe"
    
    const faketime = true
    
    // When faketime is enabled, we redirect writes to FDs 1 and 2 through
    // the runtime's write function, since that adds the framing that
    // reports the emulated time.
    
    //go:linkname runtimeWrite runtime.write
    func runtimeWrite(fd uintptr, p unsafe.Pointer, n int32) int32
    
    func faketimeWrite(fd int, p []byte) int {
    	var pp *byte
    	if len(p) > 0 {
    		pp = &p[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 677 bytes
    - Viewed (0)
Back to top