Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 107 for STARTING (0.16 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        // The assumption is that if fuel started out as INT64_MAX, it will forever
        // stay greater than INT64_MAX / 2.
        VLOG(2) << "Starting fuel: infinity";
      } else {
        VLOG(2) << "Starting fuel: " << *debug_options_.fuel;
      }
    
      VLOG(2) << "sorted_nodes.size() = " << sorted_nodes.size();
    
      auto allowlist = GetOrCreateAllowlist();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  2. src/runtime/mheap.go

    	// any given time, the system is at (gcController.heapLive,
    	// pagesSwept) in this space.
    	//
    	// It is important that the line pass through a point we
    	// control rather than simply starting at a 0,0 origin
    	// because that lets us adjust sweep pacing at any time while
    	// accounting for current progress. If we could only adjust
    	// the slope, it would create a discontinuity in debt if any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/load.go

    					if opts.MainModule != (module.Version{}) {
    						matchModules = []module.Version{opts.MainModule}
    					}
    					matchPackages(ctx, m, opts.Tags, omitStd, matchModules)
    				} else {
    					// Starting with the packages in the main module,
    					// enumerate the full list of "all".
    					m.Pkgs = ld.computePatternAll()
    				}
    
    			case m.Pattern() == "std" || m.Pattern() == "cmd":
    				if m.Pkgs == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * starting the build.</p>
         *
         * @return The default task names. Returns an empty list if this project has no default tasks.
         */
        List<String> getDefaultTasks();
    
        /**
         * <p>Sets the names of the default tasks of this project. These are used when no tasks names are provided when
         * starting the build.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. istioctl/pkg/describe/describe.go

    	path, err := getIstioVirtualServicePathForSvcFromRoute(cd, svc, port)
    	if err != nil {
    		return "", "", err
    	}
    
    	// Starting with recent 1.5.0 builds, the path will include .istio.io.  Handle both.
    	// nolint: gosimple
    	re := regexp.MustCompile("/apis/networking(\\.istio\\.io)?/v1alpha3/namespaces/(?P<namespace>[^/]+)/virtual-service/(?P<name>[^/]+)")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/deadness_analysis.cc

          // as frame names.
          ++num_enters_for_frame[cf.frame_name];
        } else if (IsRootExit(node)) {
          ++num_exits_for_frame[cf.frame_name];
        }
        // Edge NextIteration->Merge is counted before starting the traversal to
        // break the backedges.
        if (IsMerge(node)) {
          for (const Edge* e : node->in_edges()) {
            if (IsNextIteration(e->src())) {
              ++num_ready_inputs[node->id()];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    			},
    			newReqWaitCtxExpected: true,
    			reqWaitLimitExpected:  15 * time.Second,
    		},
    		{
    			name: "context has a deadline, 'received at' is set, wait limit should be one fourth of the deadline starting from the 'received at' time",
    			parent: func(now time.Time) (context.Context, context.CancelFunc) {
    				ctx := apirequest.WithReceivedTimestamp(context.Background(), now.Add(-10*time.Second))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  8. src/go/build/build.go

    			// If the path is the GOROOT, ignore it.
    			// People sometimes set GOPATH=$GOROOT.
    			// Do not get confused by this common mistake.
    			continue
    		}
    		if strings.HasPrefix(p, "~") {
    			// Path segments starting with ~ on Unix are almost always
    			// users who have incorrectly quoted ~ while setting GOPATH,
    			// preventing it from expanding to $HOME.
    			// The situation is made more confusing by the fact that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/regalloc.go

    // value whose next use is farthest in the future.
    //
    // The register allocator requires that a block is not scheduled until
    // at least one of its predecessors have been scheduled. The most recent
    // such predecessor provides the starting register state for a block.
    //
    // It also requires that there are no critical edges (critical =
    // comes from a block with >1 successor and goes to a block with >1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    To ignore multiple paths, use `*` to match arbitrary strings within one segment, or `pass:[**]` across segments.
    Paths starting with `~/` are based on the user home directory.
    For example:
    +
    [source,properties]
    .gradle.properties
    ----
    org.gradle.configuration-cache.inputs.unsafe.ignore.file-system-checks=\
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
Back to top