Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 499 for BECOME (0.17 sec)

  1. src/net/rawconn.go

    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
    // method will fail immediately.
    
    // BUG(mikio): On JS and Plan 9, the Control, Read and 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)
  2. tensorflow/cc/experimental/libtf/mlir/mlir_transform.cc

    #include "tensorflow/cc/saved_model/bundle_v2.h"
    #include "tensorflow/compiler/mlir/tensorflow/translate/import_model.h"
    
    namespace tf {
    namespace libtf {
    
    // TODO(b/190837282): All return None's become errors.
    Handle LoadModule(Object self, String saved_model) {
      // Parse arguments.
      // Load SavedModel into memory.
      tensorflow::SavedModelV2Bundle bundle;
      tensorflow::Status status =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 12 16:28:19 UTC 2022
    - 3K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/logging/DaemonMessages.java

        public static final String UNABLE_TO_STOP_DAEMON = "Unable to stop one of the daemons. The daemon may have crashed.";
        public static final String WAITING_ON_CANCELED = "Waiting for daemons with canceled builds to become available";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/caching/internal/packaging/impl/DefaultTarPackerFileSystemSupportTest.groovy

        }
    
        def "creates directories even if there is a pre-existing file in its place"() {
            def targetOutputDir = temporaryFolder.file("build/output")
            targetOutputDir << "This should become a directory"
    
            when:
            fileSystemSupport.ensureDirectoryForTree(DIRECTORY, targetOutputDir)
    
            then:
            targetOutputDir.assertIsEmptyDir()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 06 01:29:26 UTC 2020
    - 3K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/flow/FlowAction.java

     * A dataflow action.
     *
     * <p>
     * A parameterized and isolated piece of work that becomes eligible for execution within a
     * {@link FlowScope dataflow scope} as soon as all of its input {@link FlowParameters parameters}
     * become available.
     * </p>
     * <p>
     * Implementations can benefit from constructor injection of services
     * using the {@link javax.inject.Inject @Inject} annotation.
     * Currently, only a small subset of services is supported:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 20:51:35 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm/a.out.go

    	C_LOREG
    
    	C_PC
    	C_SP
    	C_HREG
    
    	C_ADDR /* reference to relocatable address */
    
    	// TLS "var" in local exec mode: will become a constant offset from
    	// thread local base that is ultimately chosen by the program linker.
    	C_TLS_LE
    
    	// TLS "var" in initial exec mode: will become a memory address (chosen
    	// by the program linker) that the dynamic linker will fill with the
    	// offset from the thread local base.
    	C_TLS_IE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 05 16:22:12 UTC 2021
    - 7K bytes
    - Viewed (0)
  7. pilot/cmd/pilot-agent/options/options.go

    			"when number of active connections become zero").Get()
    
    	exitOnZeroActiveConnectionsEnv = env.Register("EXIT_ON_ZERO_ACTIVE_CONNECTIONS",
    		false,
    		"When set to true, terminates proxy when number of active connections become zero during draining").Get()
    
    	useExternalWorkloadSDSEnv = env.Register("USE_EXTERNAL_WORKLOAD_SDS", false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 19:21:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/Dispatcher.kt

       * was run [asynchronously][Call.enqueue] or [synchronously][Call.execute]. Asynchronous calls
       * become idle after the [onResponse][Callback.onResponse] or [onFailure][Callback.onFailure]
       * callback has returned. Synchronous calls become idle once [execute()][Call.execute] returns.
       * This means that if you are doing synchronous calls the network layer will not truly be idle
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionInternal.java

         *
         * This is used to deal with the case where a mutable collection may be added to itself. This is intended to become an error at some point.
         */
        FileCollectionInternal replace(FileCollectionInternal original, Supplier<FileCollectionInternal> supplier);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 14:55:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tpu-multiple-while-body-func.mlir

    // This test verifies there is no warning about shape inference failure in TPU
    // bridge in handling multiple usage of the same function.
    
    // Since it is possible that this warning may become an error in the future,
    // only check the message content here.
    
    // CHECK-NOT: expected control flow function {{.*}} to have exactly 1 use, found 2
    
    "builtin.module"() ({
      "func.func"() ({
      ^bb0(%arg0: tensor<i32>):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 21:23:47 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top