Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 6,541 for RUNTIME (0.18 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/testing/zz_generated.deepcopy.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Code generated by deepcopy-gen. DO NOT EDIT.
    
    package testing
    
    import (
    	runtime "k8s.io/apimachinery/pkg/runtime"
    )
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *EmbeddedTest) DeepCopyInto(out *EmbeddedTest) {
    	*out = *in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/build_trimpath_goroot.txt

    stdout '^GOROOT '$TESTGO_GOROOT'$'
    stdout '^runtime '$TESTGO_GOROOT${/}src${/}runtime'$'
    
    ! exec ./example-trimpath.exe
    stdout '^GOROOT $'
    stderr 'cannot find package "runtime" in any of:\n\t\(\$GOROOT not set\)\n\t'$WORK${/}gopath${/}src${/}runtime' \(from \$GOPATH\)\n\z'
    
    exec ./example.test.exe -test.v
    stdout '^GOROOT '$TESTGO_GOROOT'$'
    stdout '^runtime '$TESTGO_GOROOT${/}src${/}runtime'$'
    
    ! exec ./example.test-trimpath.exe -test.v
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/util.go

    type stripVersionEncoder struct {
    	encoder    runtime.Encoder
    	serializer runtime.Serializer
    	identifier runtime.Identifier
    }
    
    func newStripVersionEncoder(e runtime.Encoder, s runtime.Serializer) runtime.Encoder {
    	return stripVersionEncoder{
    		encoder:    e,
    		serializer: s,
    		identifier: identifier(e),
    	}
    }
    
    func identifier(e runtime.Encoder) runtime.Identifier {
    	result := map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 16 11:54:27 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  4. src/runtime/netpoll_epoll.go

    	epfd, errno = syscall.EpollCreate1(syscall.EPOLL_CLOEXEC)
    	if errno != 0 {
    		println("runtime: epollcreate failed with", errno)
    		throw("runtime: netpollinit failed")
    	}
    	efd, errno := syscall.Eventfd(0, syscall.EFD_CLOEXEC|syscall.EFD_NONBLOCK)
    	if errno != 0 {
    		println("runtime: eventfd failed with", -errno)
    		throw("runtime: eventfd failed")
    	}
    	ev := syscall.EpollEvent{
    		Events: syscall.EPOLLIN,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. subprojects/core-platform/build.gradle.kts

    javaPlatform.allowDependencies()
    
    dependencies {
        runtime(project(":installation-beacon"))
        runtime(project(":api-metadata"))
        runtime(project(":daemon-server")) {
            because("This is the Gradle daemon implementation, which transitively depends on all other core projects.")
        }
        runtime(project(":gradle-cli-main")) {
            because("This is the entry point of the `gradle` command.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/storage/storage_factory_test.go

    	}
    	return out
    }
    
    func (n *fakeNegotiater) UniversalDeserializer() runtime.Decoder {
    	return n.serializer
    }
    
    func (n *fakeNegotiater) EncoderForVersion(serializer runtime.Encoder, gv runtime.GroupVersioner) runtime.Encoder {
    	return n.serializer
    }
    
    func (n *fakeNegotiater) DecoderToVersion(serializer runtime.Decoder, gv runtime.GroupVersioner) runtime.Decoder {
    	return n.serializer
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 13:35:58 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/ld_test.go

    package main
    import "runtime"
    var f = runtime.MemProfile
    func main() {
    	if f == nil {
    		panic("no f")
    	}
    	println(runtime.MemProfileRate)
    }
    `,
    			"524288",
    		},
    		{
    			"with_memprofile_runtime_pprof",
    			`
    package main
    import "runtime"
    import "runtime/pprof"
    func main() {
            _ = pprof.Profiles()
    	println(runtime.MemProfileRate)
    }
    `,
    			"524288",
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 05:45:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. src/net/fd_posix.go

    }
    
    func (fd *netFD) setAddr(laddr, raddr Addr) {
    	fd.laddr = laddr
    	fd.raddr = raddr
    	runtime.SetFinalizer(fd, (*netFD).Close)
    }
    
    func (fd *netFD) Close() error {
    	runtime.SetFinalizer(fd, nil)
    	return fd.pfd.Close()
    }
    
    func (fd *netFD) shutdown(how int) error {
    	err := fd.pfd.Shutdown(how)
    	runtime.KeepAlive(fd)
    	return wrapSyscallError("shutdown", err)
    }
    
    func (fd *netFD) closeRead() error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  9. tensorflow/cc/experimental/libtf/module.cc

    // Register all available concrete functions from a SavedModel into a runtime.
    tensorflow::Status RegisterConcreteFunctions(Runtime runtime,
                                                 TFPackage tf_package) {
      return tensorflow::errors::Unimplemented("Not implemented.");
    }
    
    // Initialize any variables found in the SavedModel and attach them to the
    // appropriate object representation in the runtime.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 02 20:02:30 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  10. src/runtime/debug/heapdump_test.go

    // license that can be found in the LICENSE file.
    
    package debug_test
    
    import (
    	"os"
    	"runtime"
    	. "runtime/debug"
    	"testing"
    )
    
    func TestWriteHeapDumpNonempty(t *testing.T) {
    	if runtime.GOOS == "js" {
    		t.Skipf("WriteHeapDump is not available on %s.", runtime.GOOS)
    	}
    	f, err := os.CreateTemp("", "heapdumptest")
    	if err != nil {
    		t.Fatalf("TempFile failed: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 12 00:32:29 UTC 2022
    - 2K bytes
    - Viewed (0)
Back to top