Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for qword (0.04 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinPlatformComponent.kt

     * implementation, such as [KotlinProjectMessageBusProvider] for [KotlinMessageBusProvider].
     *
     * Platform component interfaces and their default implementations are always prefixed with the word `Kotlin`, in contrast to
     * [KaEngineService]s which are prefixed with `Ka`. It is recommended to keep this naming convention in platform implementations. For
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    func decodeValue(ctxt *obj.Link, word uint64) (ID, ID) {
    	if ctxt.Arch.PtrSize == 8 {
    		b, v := ID(word>>32), ID(word)
    		//ctxt.Logf("%#x -> b %#x (%d) v %#x (%d)\n", word, b, b, v, v)
    		return b, v
    	}
    	if ctxt.Arch.PtrSize != 4 {
    		panic("unexpected pointer size")
    	}
    	return ID(word >> 16), ID(int16(word))
    }
    
    // Append a pointer-sized uint to buf.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    func getUseWaypoint(meta metav1.ObjectMeta, defaultNamespace string) (named *krt.Named, isNone bool) {
    	if labelValue, ok := meta.Labels[constants.AmbientUseWaypointLabel]; ok {
    		// NOTE: this means Istio reserves the word "none" in this field with a special meaning
    		//   a waypoint named "none" cannot be used and will be ignored
    		//   also reserve anything with suffix "/none" to prevent use of "namespace/none" as a work around
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. samples/bookinfo/src/productpage/productpage.py

            }
        ]
    
    
    def getProduct(product_id):
        products = getProducts()
        if product_id + 1 > len(products):
            return None
        else:
            return products[product_id]
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. src/sync/atomic/doc.go

    // for 64-bit alignment of 64-bit words accessed atomically via the primitive
    // atomic functions (types [Int64] and [Uint64] are automatically aligned).
    // The first word in an allocated struct, array, or slice; in a global
    // variable; or in a local variable (because the subject of all atomic operations
    // will escape to the heap) can be relied upon to be 64-bit aligned.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

            };
        assertEquals("foo", future.get(0, TimeUnit.SECONDS));
      }
    
      public void testEvilFuture_setFuture() throws Exception {
        final RuntimeException exception = new RuntimeException("you didn't say the magic word!");
        AbstractFuture<String> evilFuture =
            new AbstractFuture<String>() {
              @Override
              public void addListener(Runnable r, Executor e) {
                throw exception;
              }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

            };
        assertEquals("foo", future.get(0, TimeUnit.SECONDS));
      }
    
      public void testEvilFuture_setFuture() throws Exception {
        final RuntimeException exception = new RuntimeException("you didn't say the magic word!");
        AbstractFuture<String> evilFuture =
            new AbstractFuture<String>() {
              @Override
              public void addListener(Runnable r, Executor e) {
                throw exception;
              }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

        -Name 'KeepAliveInterval' -Type Dword -Value 1000
      Set-ItemProperty -Force -Confirm:$false `
        -Path 'HKLM:\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters' `
        -Name 'KeepAliveTime' -Type Dword -Value 60000
      Set-ItemProperty -Force -Confirm:$false `
        -Path 'HKLM:\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters' `
        -Name 'TcpMaxDataRetransmissions' -Type Dword -Value 10
    
      Log-Output 'TCP/IP Parameters'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewrite.go

    	return r
    }
    
    // uaddOvf reports whether unsigned a+b would overflow.
    func uaddOvf(a, b int64) bool {
    	return uint64(a)+uint64(b) < uint64(a)
    }
    
    // loadLSymOffset simulates reading a word at an offset into a
    // read-only symbol's runtime memory. If it would read a pointer to
    // another symbol, that symbol is returned. Otherwise, it returns nil.
    func loadLSymOffset(lsym *obj.LSym, offset int64) *obj.LSym {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (AND (MOVDconst [m]) (ROTLW x r)) && isPPC64WordRotateMask(m) => (RLWNM [encodePPC64RotateMask(0,m,32)] x r)
    
    // Note, any rotated word bitmask is still a valid word bitmask.
    (ROTLWconst [r] (AND (MOVDconst [m]) x)) && isPPC64WordRotateMask(m) => (RLWINM [encodePPC64RotateMask(r,rotateLeft32(m,r),32)] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
Back to top