Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 141 for onStop (0.24 sec)

  1. tensorflow/compiler/jit/xla_compile_util_test.cc

      TF_EXPECT_OK(NodeDefBuilder("identity_op", "Identity")
                       .Input(FakeInput(DT_FLOAT))
                       .Attr("T", DT_FLOAT)
                       .Finalize(node_def()));
      TF_EXPECT_OK(InitOp());
      AddInputFromArray<float>(TensorShape({1, 2}), {6.9, 4.2});
      TF_EXPECT_OK(RunOpKernel());
    
      XlaCompiler::SingleOpCompileArgument single_op_arg(*context_);
    
      std::vector<XlaArgument> args(1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 16 21:48:05 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/ztunnel/configdump/configdump_test.go

    		wantErr            bool
    	}{
    		{
    			name:             "returns expected secret summary onto Stdout",
    			callPrime:        true,
    			wantOutputSecret: "testdata/secretsummary.txt",
    		},
    		{
    			name:    "errors if config dump is not primed",
    			wantErr: true,
    		},
    		{
    			name:               "returns expected workload summary onto Stdout",
    			callPrime:          true,
    			wantOutputWorkload: "testdata/workloadsummary.txt",
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. src/runtime/lfstack_test.go

    	// Push K elements randomly onto the stacks.
    	sum := 0
    	for i := 0; i < K; i++ {
    		sum += i
    		node := allocMyNode(i)
    		LFStackPush(stacks[i%2], fromMyNode(node))
    	}
    	c := make(chan bool, P)
    	for p := 0; p < P; p++ {
    		go func() {
    			r := rand.New(rand.NewSource(rand.Int63()))
    			// Pop a node from a random stack, then push it onto a random stack.
    			for i := 0; i < N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 17 23:12:04 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/ProviderStartParameterConverter.java

            // Important that the launchables are unpacked on the client side, to avoid sending back any additional internal state that
            // the launchable may hold onto. For example, GradleTask implementations hold onto every task for every project in the build
            List<TaskExecutionRequest> requests = new ArrayList<TaskExecutionRequest>(launchables.size());
            for (InternalLaunchable launchable : launchables) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. pkg/channels/unbounded.go

    		select {
    		case b.c <- t:
    			b.mu.Unlock()
    			return
    		default:
    		}
    	}
    	b.backlog = append(b.backlog, t)
    	b.mu.Unlock()
    }
    
    // Load sends the earliest buffered data, if any, onto the read channel
    // returned by Get(). Users are expected to call this every time they read a
    // value from the read channel.
    func (b *Unbounded[T]) Load() {
    	b.mu.Lock()
    	if len(b.backlog) > 0 {
    		n := new(T)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 31 19:53:39 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/main/java/org/gradle/platform/base/DependencySpec.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.platform.base;
    
    import org.gradle.api.Incubating;
    
    /**
     * A dependency onto a Gradle component.
     */
    @Incubating
    public interface DependencySpec {
    
        /**
         * The human friendly name of this dependency.
         *
         * @return human friendly name
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 923 bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/cache/GeneralCompileCaches.java

    import org.gradle.cache.Cache;
    import org.gradle.internal.hash.HashCode;
    
    /**
     * The build scoped compile caches.
     *
     * NOTE: This class cannot be renamed because it used to leak onto the public API
     * and some community plugins still depend on it in their byte code.
     */
    public interface GeneralCompileCaches {
        Cache<HashCode, ClassSetAnalysisData> getClassSetAnalysisCache();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/main/java/org/gradle/platform/base/LibraryBinaryDependencySpec.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.platform.base;
    
    import org.gradle.api.Incubating;
    
    /**
     * A dependency onto a specific binary of a library published by a project.
     */
    @Incubating
    public interface LibraryBinaryDependencySpec extends DependencySpec {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/main/java/org/gradle/platform/base/ModuleDependencySpec.java

     * limitations under the License.
     */
    
    package org.gradle.platform.base;
    
    import org.gradle.api.Incubating;
    
    import javax.annotation.Nullable;
    
    /**
     * A dependency onto a module.
     */
    @Incubating
    public interface ModuleDependencySpec extends DependencySpec {
    
        /**
         * The group of the module this dependency specification refers to.
         *
         * @return the module group name
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. proguard/base.pro

    -keep class sun.misc.JavaLangAccess {
      *** getStackTraceElement(...);
      *** getStackTraceDepth(...);
    }
    
    # FinalizableReferenceQueue calls this reflectively
    # Proguard is intelligent enough to spot the use of reflection onto this, so we
    # only need to keep the names, and allow it to be stripped out if
    # FinalizableReferenceQueue is unused.
    -keepnames class com.google.common.base.internal.Finalizer {
      *** startFinalizer(...);
    }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 09 00:29:01 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top