Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 129 for stops (0.05 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // scalar resource variable.
      bool IsScalarIntegerResourceOperation(const Cluster& cluster);
    
      // ---------------------------------------------------------------------------
      // The pass proceeds in five steps, out of which `RunEdgeContractionLoop` and
      // `CreateClusters` do most of the heavy lifting.
    
      // Initializes some internal data structures.
      //
    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. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    The simplest way to add integration tests to your build is by leveraging the incubating <<jvm_test_suite_plugin.adoc#jvm_test_suite_plugin,JVM Test Suite>> plugin.
    If an incubating solution is not something for you, here are the steps you need to take in your build:
    
     1. Create a new <<building_java_projects.adoc#sec:java_source_sets,source set>> for them
     2. Add the dependencies you need to the appropriate configurations for that source set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    The goal is to instruct your build on how to map the `com.android.application` plugin identifier to a resolvable artifact.
    This is done in two steps:
    
    * Add a plugin repository to the build's settings script
    * Map the plugin ID to the corresponding artifact coordinates
    
    You accomplish both steps by configuring a `pluginManagement {}` block in the build's settings script.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/time/time.go

    // readings. If either t or u contains no monotonic clock reading, these
    // operations fall back to using the wall clock readings.
    //
    // On some systems the monotonic clock will stop if the computer goes to sleep.
    // On such a system, t.Sub(u) may not accurately reflect the actual
    // time that passed between t and u. The same applies to other functions and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  5. tensorflow/c/kernels_test.cc

        TF_InputRange_Args args;
        args.status = s;
        TF_InputRange(ctx, "input3", &args);
        EXPECT_EQ(TF_OK, TF_GetCode(s));
        EXPECT_EQ(args.start, 2);
        EXPECT_EQ(args.stop, 5);
    
        TF_Tensor* output = TF_AllocateTemp(
            /*context=*/ctx, /*dtype=*/TF_FLOAT, /*dims=*/dim,
            /*num_dims=*/1, /*allocator_attributes*/ &alloc_attrs, s);
        TF_SetOutput(ctx, 0, output, s);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.31.md

      package for one more release, but in you must adapt your scripts to install `crictl` manually from
      https://github.com/kubernetes-sigs/cri-tools/releases or a different location.
      
      The `kubeadm` package will stop depending on the `cri-tools` package in Kubernetes 1.32, which means that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    // exprList parses a sequence of expressions up to a terminating character.
    func (st *state) exprList(stop byte) AST {
    	if len(st.str) > 0 && st.str[0] == stop {
    		st.advance(1)
    		return &ExprList{Exprs: nil}
    	}
    
    	var exprs []AST
    	for {
    		e := st.expression()
    		exprs = append(exprs, e)
    		if len(st.str) > 0 && st.str[0] == stop {
    			st.advance(1)
    			break
    		}
    	}
    	return &ExprList{Exprs: exprs}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    			// be notified about this change.
    			clearAllocation := state.informationsForClaim[index].structuredParameters
    
    			// Before we tell a driver to deallocate a claim, we
    			// have to stop telling it to allocate. Otherwise,
    			// depending on timing, it will deallocate the claim,
    			// see a PodSchedulingContext with selected node, and
    			// allocate again for that same node.
    			if !clearAllocation &&
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller.go

    				}
    			}
    		}
    		if len(newSucceededIndexes)+len(uncountedStatus.Succeeded)+len(uncountedStatus.Failed) >= MaxUncountedPods {
    			// The controller added enough Pods already to .status.uncountedTerminatedPods
    			// We stop counting pods and removing finalizers here to:
    			// 1. Ensure that the UIDs representation are under 20 KB.
    			// 2. Cap the number of finalizer removals so that syncing of big Jobs
    			//    doesn't starve smaller ones.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

         * @param calledSymbol The symbol referenced by the qualified access expression
         * @param expressionInScope An expression under the same scope as the shortening target expression
         *
         * The decision has two steps:
         *  1. Collect all candidates matching [firQualifiedAccess]
         *  - We use `AllCandidatesResolver(shorteningContext.analysisSession.useSiteSession).getAllCandidates( .. fake FIR .. )`. See
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
Back to top