Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 420 for pinned (0.1 sec)

  1. docs/sts/client-grants.md

    | Params        | Value                                          |
    | :--           | :--                                            |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/Linkage.java

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform;
    
    import org.gradle.api.Named;
    
    /**
     * Specify how a native library should be linked into another binary.
     *
     * @since 4.5
     */
    public enum Linkage implements Named {
        /**
         * Statically link binaries together.
         */
        STATIC,
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. tensorflow/c/BUILD

            "//conditions:default": [],
        }),
        tags = [
            "no_cuda_asan",  # TODO(b/181771536)
            "no_windows",  # TODO(b/155444728)
        ],
        # We must ensure that the dependencies can be dynamically linked since
        # the shared library must be able to use core:framework.
        deps = [
            ":c_api",
            ":c_api_internal",
            ":c_test_util",
            ":test_op_kernel",
            ":tf_buffer",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/service/BuildCacheServiceRole.java

     */
    
    package org.gradle.caching.internal.controller.service;
    
    import org.gradle.internal.scan.UsedByScanPlugin;
    
    import java.util.Locale;
    
    @UsedByScanPlugin("values are expected (type is not linked), see BuildCacheStoreBuildOperationType and friends")
    public enum BuildCacheServiceRole {
        LOCAL,
        REMOTE;
    
        private final String displayName;
    
        BuildCacheServiceRole() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 15:35:05 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.23.md

    - Allow to build kubernetes with a custom `kube-cross` image. ([#104185](https://github.com/kubernetes/kubernetes/pull/104185), [@dims](https://github.com/dims))
    - Allows users to prevent garbage collection on pinned images ([#103299](https://github.com/kubernetes/kubernetes/pull/103299), [@wgahnagl](https://github.com/wgahnagl)) [SIG Node]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  6. src/runtime/testdata/testprogcgo/bigstack_windows.c

    // Copyright 2018 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.
    
    // This test source is used by both TestBigStackCallbackCgo (linked
    // directly into the Go binary) and TestBigStackCallbackSyscall
    // (compiled into a DLL).
    
    #include <windows.h>
    #include <stdio.h>
    
    #ifndef STACK_SIZE_PARAM_IS_A_RESERVATION
    #define STACK_SIZE_PARAM_IS_A_RESERVATION 0x00010000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 02 15:18:26 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/LinkerSpec.java

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.internal;
    
    import java.io.File;
    import java.util.List;
    
    /**
     * A high level interface to the linker, specifying what is to be linked and how.
     */
    public interface LinkerSpec extends BinaryToolSpec {
    
        List<File> getObjectFiles();
    
        void objectFiles(Iterable<File> objectFiles);
    
        List<File> getLibraries();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. src/runtime/rt0_linux_mips64x.s

    #include "textflag.h"
    
    TEXT _rt0_mips64_linux(SB),NOSPLIT,$0
    	JMP	_main<>(SB)
    
    TEXT _rt0_mips64le_linux(SB),NOSPLIT,$0
    	JMP	_main<>(SB)
    
    TEXT _main<>(SB),NOSPLIT|NOFRAME,$0
    	// In a statically linked binary, the stack contains argc,
    	// argv as argc string pointers followed by a NULL, envv as a
    	// sequence of string pointers followed by a NULL, and auxv.
    	// There is no TLS base pointer.
    #ifdef GOARCH_mips64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 1014 bytes
    - Viewed (0)
  9. src/runtime/mklockrank.go

    < MALLOC
    # Below MALLOC is the malloc implementation.
    < fin,
      spanSetSpine,
      mspanSpecial,
      traceTypeTab,
      MPROF;
    
    # We can acquire gcBitsArenas for pinner bits, and
    # it's guarded by mspanSpecial.
    MALLOC, mspanSpecial < gcBitsArenas;
    
    # Memory profiling
    MPROF < profInsert, profBlock, profMemActive;
    profMemActive < profMemFuture;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testplugin/testdata/issue18676/main.go

    //
    // The code is carefully crafted so that the two itabs are both from the
    // same bucket, and so that the second itab doesn't exist in
    // the itab hashmap yet (so the entire linked list must be searched).
    package main
    
    import (
    	"encoding/json"
    	"plugin"
    	"testplugin/issue18676/dynamodbstreamsevt"
    )
    
    func main() {
    	plugin.Open("plugin.so")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top