Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 277 for main_main (0.25 sec)

  1. tensorflow/compiler/jit/variable_info_util.cc

      std::iota(lock_order.begin(), lock_order.end(), 0);
    
      // VariableInfoComparator orders all empty VariableInfo instances as
      // equivalent so it looks like we may want to stable sort these to maintain a
      // deterministic order between the empty VariableInfo instances.  However
      // since we're sorting by pointer value the sort is pretty non-deterministic
      // anyway so we don't bother using std::stable_sort for now.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. src/runtime/print.go

    // from the runtime data structures in the core file.
    func recordForPanic(b []byte) {
    	printlock()
    
    	if panicking.Load() == 0 {
    		// Not actively crashing: maintain circular buffer of print output.
    		for i := 0; i < len(b); {
    			n := copy(printBacklog[printBacklogIndex:], b[i:])
    			i += n
    			printBacklogIndex += n
    			printBacklogIndex %= len(printBacklog)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 03:27:26 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/util/TextUtil.java

    import javax.annotation.Nullable;
    import java.io.File;
    import java.util.Arrays;
    import java.util.Locale;
    import java.util.regex.Pattern;
    
    /**
     * This class is only here to maintain binary compatibility with existing plugins.
     * <p>
     * Plugins should prefer external frameworks over this class.
     *
     * @deprecated Will be removed in Gradle 9.0.
     */
    @Deprecated
    public class TextUtil {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/block.go

    	// Subsequent blocks, if any. The number and order depend on the block kind.
    	Succs []Edge
    
    	// Inverse of successors.
    	// The order is significant to Phi nodes in the block.
    	// TODO: predecessors is a pain to maintain. Can we somehow order phi
    	// arguments by block id and have this field computed explicitly when needed?
    	Preds []Edge
    
    	// A list of values that determine how the block is exited. The number
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. maven-core/src/site/apt/configuration-management.apt

     maven.multiproject.includes property.
     2. it works without problems only for projects with relative paths, e.g., from
     one CVS repository.. for projects from multiple SCM repositories it's harder
     to maintain the same relative links on all developer computers.
     not sure the unified source directory structure addresses this issue.
    
     Properties
    
     maven.user.config.dir (system,default=${user.home}/.m2)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/util/VersionNumber.java

    import com.google.common.base.Objects;
    import com.google.common.collect.Ordering;
    import org.gradle.internal.deprecation.DeprecationLogger;
    
    import javax.annotation.Nullable;
    
    /**
     * This class is only here to maintain binary compatibility with existing plugins.
     *
     * @deprecated Will be removed in Gradle 9.0.
     */
    @Deprecated
    public class VersionNumber implements Comparable<VersionNumber> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. tensorflow/c/eager/gradients.h

    };
    
    // TODO(srbs): Figure out if we can avoid declaring this in the public header.
    // Wrapper for a tensor output of an operation executing under a tape.
    //
    // `GetID` returns a unique id for the wrapped tensor which is used to maintain
    // a map (`tensorflow::eager::TensorTape`) from the wrapped tensor to the id of
    // the op that produced it (or -1 if this tensor was watched using
    // `GradientTape::Watch`.) The op_id is simply a unique index assigned to each
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 26 10:27:05 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  8. src/runtime/cgo/abi_ppc64x.h

    // Stack a frame and save all callee-save registers following the
    // host OS's ABI. Fortunately, this is identical for AIX, ELFv1, and
    // ELFv2. All host ABIs require the stack pointer to maintain 16 byte
    // alignment, and save the callee-save registers in the same places.
    //
    // To restate, R1 is assumed to be aligned when this macro is used.
    // This assumes the caller's frame is compliant with the host ABI.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 03 20:17:02 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/clone_constants_for_better_clustering_test.cc

      options.graph = &graph;
      options.session_options = &session_options;
    
      // Scope::ToGraph seems to drop assigned devices, probably because it goes
      // through a GraphDef.  So explicitly maintain the device assignment.
      // std::unordered_map<string, string> assigned_device_names;
      // for (Node* n : s.graph()->nodes()) {
      //   assigned_device_names[n->name()] = n->assigned_device_name();
      // }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/ExecutionList.java

        checkNotNull(runnable, "Runnable was null.");
        checkNotNull(executor, "Executor was null.");
    
        // Lock while we check state. We must maintain the lock while adding the new pair so that
        // another thread can't run the list out from under us. We only add to the list if we have not
        // yet started execution.
        synchronized (this) {
          if (!executed) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 21:17:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top