Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 939 for oldR (1.41 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

    def : Pat<(TF_RandomUniformOp:$old $shape, $seed, $seed2),
              (MHLO_RngOp
                (MHLO_ConstantOp
                  (NativeCodeCall<"$_builder.getFloatAttr(old.getDtype(), 0.0)">)),
                (MHLO_ConstantOp
                  (NativeCodeCall<"$_builder.getFloatAttr(old.getDtype(), 1.0)">)),
                (CastValueToI64 $old, $shape),
                MHLO_RngDistributionValue<"UNIFORM">),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  2. src/internal/runtime/atomic/atomic_riscv64.s

    // with ARM, which uses dmb ishst.)
    
    #include "textflag.h"
    
    // func Cas(ptr *uint64, old, new uint64) bool
    // Atomically:
    //      if(*val == old){
    //              *val = new;
    //              return 1;
    //      } else {
    //              return 0;
    //      }
    TEXT ·Cas(SB), NOSPLIT, $0-17
    	MOV	ptr+0(FP), A0
    	MOVW	old+8(FP), A1
    	MOVW	new+12(FP), A2
    cas_again:
    	LRW	(A0), A3
    	BNE	A3, A1, cas_fail
    	SCW	A2, (A0), A4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. src/internal/runtime/atomic/atomic_mips64x.go

    //go:noescape
    func Anduintptr(ptr *uintptr, val uintptr) uintptr
    
    //go:noescape
    func Oruintptr(ptr *uintptr, val uintptr) uintptr
    
    //go:noescape
    func Cas64(ptr *uint64, old, new uint64) bool
    
    //go:noescape
    func CasRel(ptr *uint32, old, new uint32) bool
    
    //go:noescape
    func Store(ptr *uint32, val uint32)
    
    //go:noescape
    func Store8(ptr *uint8, val uint8)
    
    //go:noescape
    func Store64(ptr *uint64, val uint64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 21:29:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. src/internal/runtime/atomic/atomic_amd64.go

    //go:noescape
    func Oruintptr(ptr *uintptr, val uintptr) uintptr
    
    // NOTE: Do not add atomicxor8 (XOR is not idempotent).
    
    //go:noescape
    func Cas64(ptr *uint64, old, new uint64) bool
    
    //go:noescape
    func CasRel(ptr *uint32, old, new uint32) bool
    
    //go:noescape
    func Store(ptr *uint32, val uint32)
    
    //go:noescape
    func Store8(ptr *uint8, val uint8)
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. src/internal/runtime/atomic/atomic_386.go

    //go:noescape
    func Oruintptr(ptr *uintptr, val uintptr) uintptr
    
    // NOTE: Do not add atomicxor8 (XOR is not idempotent).
    
    //go:noescape
    func Cas64(ptr *uint64, old, new uint64) bool
    
    //go:noescape
    func CasRel(ptr *uint32, old, new uint32) bool
    
    //go:noescape
    func Store(ptr *uint32, val uint32)
    
    //go:noescape
    func Store8(ptr *uint8, val uint8)
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. testing/soak/src/integTest/groovy/org/gradle/launcher/daemon/ClassLoaderLeakAvoidanceSoakTest.groovy

    class ClassLoaderLeakAvoidanceSoakTest extends AbstractIntegrationSpec {
    
        def setup() {
            executer.requireDaemon().requireIsolatedDaemons()
        }
    
        def "convention mapping does not leak old classloaders"() {
            given:
            def myTask = file("buildSrc/src/main/groovy/MyTask.groovy") << """
                import org.gradle.api.*
                import org.gradle.api.tasks.*
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. src/internal/trace/oldtrace.go

    // (i.e. starting at the original GoSyscall).
    //
    // The resulting trace treats the old trace as a single, large generation,
    // sharing a single evTable for all events.
    //
    // We use a new (compared to what was used for 'go tool trace' in earlier
    // versions of Go) parser for old traces that is optimized for speed, low memory
    // usage, and minimal GC pressure. It allocates events in batches so that even
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/upgrade/staticpods.go

    			component, backupManifestPath)
    	} else {
    		fmt.Printf("[upgrade/staticpods] Moving new manifest to %q and backing up old manifest to %q\n",
    			currentManifestPath, backupManifestPath)
    	}
    
    	// Move the old manifest into the old-manifests directory
    	if err := pathMgr.MoveFile(currentManifestPath, backupManifestPath); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/AtomicLongMap.java

      }
    
      /**
       * Increments by one the value currently associated with {@code key}, and returns the old value.
       */
      @CanIgnoreReturnValue
      public long getAndIncrement(K key) {
        return getAndAdd(key, 1);
      }
    
      /**
       * Decrements by one the value currently associated with {@code key}, and returns the old value.
       */
      @CanIgnoreReturnValue
      public long getAndDecrement(K key) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. pkg/apis/storage/validation/validation_test.go

    		volumeAttachment.Spec.Source = storage.VolumeAttachmentSource{}
    		old.Spec.Source = storage.VolumeAttachmentSource{}
    		// test scenarios with PersistentVolumeName set
    		volumeAttachment.Spec.Source.PersistentVolumeName = &volumeName
    		old.Spec.Source.PersistentVolumeName = &volumeName
    		if errs := ValidateVolumeAttachmentUpdate(&volumeAttachment, &old); len(errs) != 0 {
    			t.Errorf("expected success: %+v", errs)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
Back to top