Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 94 for expiring (0.24 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/mlir_to_graph_passes.td

      let summary = "Verify that TF dialect to executor converter receives the correct input.";
      let description = [{
        Verifies the input before exporting to TF executor. This includes checking whether the Ops are in TF functional, have device attributes & there are no tf_device.cluster_func ops.
      }];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 08 16:32:56 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. src/runtime/cgo/gcc_libinit.c

    // pthread_g is a pthread specific key, for storing the g that binded to the C thread.
    // The registered pthread_key_destructor will dropm, when the pthread-specified value g is not NULL,
    // while a C thread is exiting.
    static pthread_key_t pthread_g;
    static void pthread_key_destructor(void* g);
    uintptr_t x_cgo_pthread_key_created;
    void (*x_crosscall2_ptr)(void (*fn)(void *), void *, int, size_t);
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 01:07:18 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_device_compiler_client.h

      absl::StatusOr<std::unique_ptr<xla::LocalExecutable>> BuildExecutable(
          const XlaCompiler::Options& options,
          const XlaCompiler::CompilationResult& result) override;
    
      // Returns a serialized AOT result obtained by exporting the available
      // `executable` using the XlaCompiler.
      absl::StatusOr<std::string> SerializeExecutable(
          const xla::LocalExecutable& executable) override;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. src/internal/trace/testdata/generators/go122-syscall-steal-proc-gen-boundary.go

    	"internal/trace/event/go122"
    	testgen "internal/trace/internal/testgen/go122"
    )
    
    func main() {
    	testgen.Main(gen)
    }
    
    func gen(t *testgen.Trace) {
    	g := t.Generation(1)
    
    	// One goroutine is exiting with a syscall. It already
    	// acquired a new P.
    	b0 := g.Batch(trace.ThreadID(0), 0)
    	b0.Event("ProcStatus", trace.ProcID(1), go122.ProcRunning)
    	b0.Event("GoStatus", trace.GoID(1), trace.ThreadID(0), go122.GoSyscall)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. cluster/gce/upgrade-aliases.sh

      echo "No k8s node routes found and IP alias should already be enabled. Exiting..."
      exit 0
    fi
    echo "Found ${k8s_node_routes_count} K8s node routes. Proceeding to upgrade them to IP aliases based connectivity..."
    
    detect-k8s-subnetwork
    if [ -z "${IP_ALIAS_SUBNETWORK}" ]; then
      echo "No k8s cluster subnetwork found. Exiting..."
      exit 1
    fi
    echo "k8s cluster sits on subnetwork \"${IP_ALIAS_SUBNETWORK}\""
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. platforms/software/version-control/src/main/java/org/gradle/vcs/git/GitVersionControlSpec.java

     */
    public interface GitVersionControlSpec extends VersionControlSpec {
        /**
         * The URL for the repository in the specification.
         *
         * <p><b>Note:</b> The return value is a {@link URI} to avoid exposing the
         * full contract of {@link java.net.URL} clients of this interface.
         * Specifically, {@link java.net.URL} extends {@link URI} to add network
         * operations which are both unsuited for simple data specification and
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/internal/plugins/software/SoftwareType.java

    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Marks a method as exposing a software type.  This should be used in plugin classes to communicate which software types they provide.
     *
     * @since 8.9
     */
    @Incubating
    @Target({ElementType.METHOD})
    @Retention(RetentionPolicy.RUNTIME)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 19:19:32 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/reflect/Instantiator.java

     *
     * <li>An implementation may provide injection of services and other dependencies into the instances it creates, for example exposing services via a getter method.
     *
     * </ul>
     *
     * <p>An implementation is not required to support any of these features. Implementations must be thread-safe.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. src/internal/trace/testdata/generators/go122-syscall-steal-proc-gen-boundary-reacquire-new-proc-bare-m.go

    	"internal/trace/event/go122"
    	testgen "internal/trace/internal/testgen/go122"
    )
    
    func main() {
    	testgen.Main(gen)
    }
    
    func gen(t *testgen.Trace) {
    	g := t.Generation(1)
    
    	// One goroutine is exiting with a syscall. It already
    	// acquired a new P.
    	b0 := g.Batch(trace.ThreadID(0), 0)
    	b0.Event("GoStatus", trace.GoID(1), trace.ThreadID(0), go122.GoSyscall)
    	b0.Event("ProcStatus", trace.ProcID(1), go122.ProcIdle)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1009 bytes
    - Viewed (0)
  10. cmd/admin-handler-utils.go

    // wraps export error for more context
    func exportError(ctx context.Context, err error, fname, entity string) APIError {
    	if entity == "" {
    		return toAPIError(ctx, fmt.Errorf("error exporting %s with: %w", fname, err))
    	}
    	return toAPIError(ctx, fmt.Errorf("error exporting %s from %s with: %w", entity, fname, err))
    }
    
    // wraps import error for more context
    func importError(ctx context.Context, err error, fname, entity string) APIError {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top