Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 43 for pinned (0.2 sec)

  1. tensorflow/c/c_api_function_test.cc

      // Verify input, output, and subset of edges in fdef.
      // The subset of edges we verify is a chain between feed1 and output to
      // make sure that the correct output is picked.
      tensorflow::FunctionDef fdef;
      ASSERT_TRUE(GetFunctionDef(func_, &fdef));
      VerifyFDefInputs(fdef, M({{"feed1"}, {"feed2"}}));
      VerifyFDefOutputs(fdef, M({{"test_loop_exit"}}));
      VerifyFDefEdges(fdef,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  2. src/runtime/mprof.go

    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // NOTE(rsc): Everything here could use cas if contention became an issue.
    var (
    	// profInsertLock protects changes to the start of all *bucket linked lists
    	profInsertLock mutex
    	// profBlockLock protects the contents of every blockRecord struct
    	profBlockLock mutex
    	// profMemActiveLock protects the active field of every memRecord struct
    	profMemActiveLock mutex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    When `libUtil` is changed, Gradle will need to recompile or relink `LinuxApp` and `WindowsApp`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  4. src/runtime/mgcmark.go

    	for gp := list.head.ptr(); gp != nil; gp = gp.schedlink.ptr() {
    		stackfree(gp.stack)
    		gp.stack.lo = 0
    		gp.stack.hi = 0
    		// Manipulate the queue directly since the Gs are
    		// already all linked the right way.
    		q.tail.set(gp)
    	}
    
    	// Put Gs back on the free list.
    	lock(&sched.gFree.lock)
    	sched.gFree.noStack.pushAll(q)
    	unlock(&sched.gFree.lock)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. tensorflow/BUILD

                    "//tensorflow/core:lib_internal_impl",
                    "//tensorflow/core/profiler:profiler_impl",
                    "//tensorflow/core/util:determinism",  # Must be linked and exported to libtensorflow_framework.so.
                    "//tensorflow/lite/kernels/shim:tf_kernel_shim",
                    "@local_xla//xla/stream_executor:stream_executor_impl",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

            if (hostnameVerifier != this.hostnameVerifier) {
              this.routeDatabase = null
            }
    
            this.hostnameVerifier = hostnameVerifier
          }
    
        /**
         * Sets the certificate pinner that constrains which certificates are trusted. By default HTTPS
         * connections rely on only the [SSL socket factory][sslSocketFactory] to establish trust.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/proxier.go

    	alreadyBoundAddrs, err := proxier.netlinkHandle.GetLocalAddresses(defaultDummyDevice)
    	if err != nil {
    		proxier.logger.Error(err, "Error listing addresses binded to dummy interface")
    	}
    	// nodeAddressSet All addresses *except* those on the dummy interface
    	nodeAddressSet, err := proxier.netlinkHandle.GetAllLocalAddressesExcept(defaultDummyDevice)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                    if (!newConstraints && !edgesToRecompute) {
                        // Was previously traversed, and no change to the set of modules that are linked by outgoing edges.
                        // Don't need to traverse again, but hang on to the new filter since it may change the set of excluded artifacts.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    * <<config_cache:requirements:task_extensions, Using task extensions and conventions at execution time>>
    
    It is recommended to enable it as soon as possible in order to be ready for when we remove the flag and make the linked features the default.
    
    [[config_cache:ide]]
    == IDE support
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // command limits the set of keys that can be linked to the keyring, regardless
    // of keyring permissions. The command requires the "setattr" permission.
    //
    // When called with an empty keyType the command locks the keyring, preventing
    // any further keys from being linked to the keyring.
    //
    // The "asymmetric" keyType defines restrictions requiring key payloads to be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
Back to top