Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 957 for prepending (0.13 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tpu_update_embedding_enqueue_op_inputs.cc

            return WalkResult::interrupt();
    
        return WalkResult::advance();
      });
      return failure(walk_result.wasInterrupted());
    }
    
    // Updates the operand of TPU embedding enqueue ops depending on whether
    // the graph is in training mode or in non-training mode.
    // If SendTPUEmbeddingGradients op is present, this means that graph is in
    // training mode. As so, correctly feed in `then` branch value of SelectV2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/analyze.kt

    ): R {
        val sessionProvider = KaSessionProvider.getInstance(useSiteKtModule.project)
        return sessionProvider.analyze(useSiteKtModule, action)
    }
    
    /**
     * Executes the given [action] in a [KaSession] context.
     * Depending on the passed [resolutionMode], declarations inside a file copy will be treated in a specific way.
     *
     * Note that the [useSiteKtElement] must be inside a dangling file copy.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. test/fixedbugs/issue22662b.go

    package main
    
    import (
    	"io/ioutil"
    	"log"
    	"os"
    	"os/exec"
    	"strings"
    )
    
    // Each of these tests is expected to fail (missing package clause)
    // at the position determined by the preceding line directive.
    var tests = []struct {
    	src, pos string
    }{
    	{"//line :10\n", ":10:"},                   // no filename means no filename
    	{"//line :10:4\n", "filename:10:4"},        // no filename means use existing filename
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. pkg/controller/podgc/gc_controller_test.go

    				{name: "c3", phase: v1.PodPending, nodeName: "worker-2"},
    				{name: "d3", phase: v1.PodRunning, nodeName: "worker-2"},
    				{name: "e3", phase: v1.PodUnknown, nodeName: "worker-2"},
    
    				// pods a4, b4, c4, d4 and e4 are on node worker-3
    				{name: "a4", nodeName: "worker-3"},
    				{name: "b4", deletionTimeStamp: &metav1.Time{}, nodeName: "worker-3"},
    				{name: "c4", phase: v1.PodPending, nodeName: "worker-3"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  5. src/runtime/memclr_amd64.s

    	MOVOU	X15, 240(DI)
    	SUBQ	$256, BX
    	ADDQ	$256, DI
    	CMPQ	BX, $256
    	JAE	loop
    	JMP	tail
    #endif
    
    loop_preheader_avx2:
    	VPXOR X0, X0, X0
    	// For smaller sizes MOVNTDQ may be faster or slower depending on hardware.
    	// For larger sizes it is always faster, even on dual Xeons with 30M cache.
    	// TODO take into account actual LLC size. E. g. glibc uses LLC size/2.
    	CMPQ    BX, $0x2000000
    	JAE	loop_preheader_avx2_huge
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 20:52:34 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/plugins/PluginInstantiator.java

    import org.gradle.api.reflect.ObjectInstantiationException;
    import org.gradle.internal.reflect.Instantiator;
    
    import java.lang.reflect.Modifier;
    
    /**
     * An instantiator that uses the correct instantiation scheme depending on the plugin type.  This allows
     * us to use a decorated instantiator for types that need it (such as software type plugins) and continue
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/README.md

    paths, depending on which of those hooks it passes through. Packets coming from host
    network namespace processes always take the output path, while packets coming in from
    outside the host network namespace (whether that's from an external host or from a pod
    network namespace) arrive via `ingress` and take the input or forward path, depending on
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:37:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/testing/TearDown.java

       * com.google.common.testing.junit3.TearDownTestCase} and {@code
       * com.google.common.testing.junit4.TearDownTestCase} for example.
       *
       * <p>A failing {@link TearDown} may or may not fail a tl4j test, depending on the version of
       * JUnit test case you are running under. To avoid failing in the face of an exception regardless
       * of JUnit version, implement a {@link SloppyTearDown} instead.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 19:22:18 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. futures/failureaccess/pom.xml

        classes are conceptually a part of Guava, but they're in this separate
        artifact so that Android libraries can use them without pulling in all of
        Guava (just as they can use ListenableFuture by depending on the
        listenablefuture artifact).
      </description>
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-jar-plugin</artifactId>
            <configuration>
              <archive>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 17 02:24:23 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. pkg/ledger/trie_cache.go

    	cache cache.ExpiringCache
    }
    
    // Set inserts an entry in the cache. This will replace any entry with
    // the same key that is already in the cache. The entry may be automatically
    // expunged from the cache at some point, depending on the eviction policies
    // of the cache and the options specified when the cache was created.
    func (b *byteCache) Set(key hash, value [][]byte) {
    	b.cache.Set(key, value)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top