Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 339 for Words (0.15 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

                    if (receiverExpression !is KtDotQualifiedExpression) {
                        // If the receiver is not a KtDotQualifiedExpression, it means we are hitting the end of nested receivers. In other
                        // words, this receiver expression should be pointing at an unqualified name of a class, whose class ID is
                        // `outerClassId`.
                        if (receiverExpression == expression) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  2. src/runtime/metrics/doc.go

    		Sum of all metrics in /cpu/classes/gc.
    
    	/cpu/classes/idle:cpu-seconds
    		Estimated total available CPU time not spent executing
    		any Go or Go runtime code. In other words, the part of
    		/cpu/classes/total:cpu-seconds that was unused. This metric is
    		an overestimate, and not directly comparable to system CPU time
    		measurements. Compare only with other /cpu/classes metrics.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_launch_util.h

      // missing and adjusts input indices accordingly.  All elements in kernel's
      // input_mapping must be greater than or equal to `missing_ctx_input_prefix`
      // (in other words, no inputs actually required by the kernel can be missing).
      absl::StatusOr<std::vector<xla::ExecutionInput>> PopulateInputs(
          OpKernelContext* ctx,
          const XlaCompiler::CompilationResult* compilation_result,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. src/syscall/syscall_dragonfly.go

    	// as the size. I don't know why the +2 is here, but the
    	// kernel uses +2 for its own implementation of this function.
    	// I am scared that if we don't include the +2 here, the kernel
    	// will silently write 2 words farther than we specify
    	// and we'll get memory corruption.
    	var buf [CTL_MAXNAME + 2]_C_int
    	n := uintptr(CTL_MAXNAME) * siz
    
    	p := (*byte)(unsafe.Pointer(&buf[0]))
    	bytes, err := ByteSliceFromString(name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:12:35 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  5. src/cmd/internal/objfile/disasm.go

    			}
    
    			if size%4 != 0 || d.goarch == "386" || d.goarch == "amd64" {
    				// Print instruction as bytes.
    				fmt.Fprintf(tw, "%x", code[i:i+size])
    			} else {
    				// Print instruction as 32-bit words.
    				for j := uint64(0); j < size; j += 4 {
    					if j > 0 {
    						fmt.Fprintf(tw, " ")
    					}
    					fmt.Fprintf(tw, "%08x", d.byteOrder.Uint32(code[i+j:]))
    				}
    			}
    			fmt.Fprintf(tw, "\t%s\t\n", text)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  6. cluster/images/etcd/Makefile

    		--build-arg BASEIMAGE=$(BASEIMAGE) \
    		--build-arg RUNNERIMAGE=$(RUNNERIMAGE) \
    		-f $(TEMP_DIR)/$(DOCKERFILE) \
    		$(TEMP_DIR)
    	docker buildx rm $$BUILDER
    
    push: build
    
    # split words on hyphen, access by 1-index
    word-hyphen = $(word $2,$(subst -, ,$1))
    
    sub-build-%:
    	$(MAKE) OUTPUT_TYPE=docker OS=$(call word-hyphen,$*,1) ARCH=$(call word-hyphen,$*,2) build
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/crypto/internal/poly1305/sum_generic.go

    		// We split the final result at the 2¹³⁰ mark into h and cc, the carry.
    		// Note that the carry bits are effectively shifted left by 2, in other
    		// words, cc = c * 4 for the c in the reduction identity.
    		h0, h1, h2 = t0, t1, t2&maskLow2Bits
    		cc := uint128{t2 & maskNotLow2Bits, t3}
    
    		// To add c * 5 to h, we first add cc = c * 4, and then add (cc >> 2) = c.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. src/internal/abi/type.go

    // which can express repetition compactly. In either form, the
    // information is used by the runtime to initialize the heap bitmap,
    // and for large types (like 128 or more words), they are roughly the
    // same speed. GC programs are never much larger and often more
    // compact. (If large arrays are involved, they can be arbitrarily
    // more compact.)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  9. src/runtime/traceback_test.go

    		},
    		// no ... for aggregates with 10 words
    		{
    			func() int { return testTracebackArgs7a([10]int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}) },
    			"testTracebackArgs7a({0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8, 0x9, 0xa})",
    		},
    		// has ... for aggregates with 11 words
    		{
    			func() int { return testTracebackArgs7b([11]int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11}) },
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  10. cluster/gce/windows/testonly/install-ssh.psm1

        # has been created first by Windows, then Windows will create a different
        # user profile directory that looks like "<user>.KUBERNETES-MINI" and sshd
        # will look for the authorized_keys file in THAT directory. In other words,
        # we need to create the user first before we can put the authorized_keys
        # file in that user profile directory. The user-profile.psm1 module (NOT
        # FOR PRODUCTION USE!) has Create-NewProfile which achieves this.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 05:09:18 UTC 2021
    - 11.6K bytes
    - Viewed (0)
Back to top