Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 232 for addOption (0.16 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtScopeProvider.kt

         * (classes and objects) of the given [KaSymbolWithMembers]. The scope includes members inherited from the symbol's supertypes, in
         * addition to members which are declared explicitly inside the symbol's body.
         *
         * The member scope doesn't include synthetic Java properties. To get such properties, use [getSyntheticJavaPropertiesScope].
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. src/internal/abi/type.go

    }
    
    // addChecked returns p+x.
    //
    // The whySafe string is ignored, so that the function still inlines
    // as efficiently as p+x, but all call sites should use the string to
    // record why the addition is safe, which is to say why the addition
    // does not cause x to advance to the very end of p's allocation
    // and therefore point incorrectly at the next block in memory.
    func addChecked(p unsafe.Pointer, x uintptr, whySafe string) unsafe.Pointer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildLifecycleController.java

                // adds listeners and expects to see a build finished event. Infrastructure should not be using the public listener types
                // In addition, they almost all should be using a build tree scoped event instead of a build scoped event
    
                Throwable reportableFailure = failure;
                if (reportableFailure == null && !stageFailures.getFailures().isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  4. src/crypto/elliptic/params.go

    // (x2, y2, z2) and returns their sum, also in Jacobian form.
    func (curve *CurveParams) addJacobian(x1, y1, z1, x2, y2, z2 *big.Int) (*big.Int, *big.Int, *big.Int) {
    	// See https://hyperelliptic.org/EFD/g1p/auto-shortw-jacobian-3.html#addition-add-2007-bl
    	x3, y3, z3 := new(big.Int), new(big.Int), new(big.Int)
    	if z1.Sign() == 0 {
    		x3.Set(x2)
    		y3.Set(y2)
    		z3.Set(z2)
    		return x3, y3, z3
    	}
    	if z2.Sign() == 0 {
    		x3.Set(x1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.td

      let summary = "The sequenced version of Fallback ExecuteOp";
      let description = [{
        The ExecuteOpSeq executes an operation on the specified device, similar to
        ExecuteOp. In addition, it takes an in_op_chain and produces an out_op_chain
        that can be used to sequence op executions. ExecuteOpSeq is nonstrict on
        in_op_chain.
    
        Example:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. src/internal/bisect/bisect.go

    //
    // The pattern syntax selecting a change is a sequence of bit strings
    // separated by + and - operators. Each bit string denotes the set of
    // changes with IDs ending in those bits, + is set addition, - is set subtraction,
    // and the expression is evaluated in the usual left-to-right order.
    // The special binary number “y” denotes the set of all changes,
    // standing in for the empty bit string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/macho_combine_dwarf.go

    			segSize += newSect.Size
    		}
    		seg.Filesz = segSize
    	} else {
    		seg.Filesz = dwarfsize
    	}
    
    	// We want the DWARF segment to be considered non-loadable, so
    	// force vmaddr and vmsize to zero. In addition, set the initial
    	// protection to zero so as to make the dynamic loader happy,
    	// since otherwise it may complain that the vm size and file
    	// size don't match for the segment. See issues 21647 and 32673
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. samples/bookinfo/src/productpage/productpage.py

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

    		capmem, overflow = math.MulUintptr(et.Size_, uintptr(newcap))
    		capmem = roundupsize(capmem, noscan)
    		newcap = int(capmem / et.Size_)
    		capmem = uintptr(newcap) * et.Size_
    	}
    
    	// The check of overflow in addition to capmem > maxAlloc is needed
    	// to prevent an overflow which can be used to trigger a segfault
    	// on 32bit architectures with this example program:
    	//
    	// type T [1<<27 + 1]int64
    	//
    	// var d T
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_sandbox.go

    				Level: sc.SELinuxOptions.Level,
    			}
    		}
    	}
    
    	return lc, nil
    }
    
    // generatePodSandboxWindowsConfig generates WindowsPodSandboxConfig from v1.Pod.
    // On Windows this will get called in addition to LinuxPodSandboxConfig because not all relevant fields have been added to
    // WindowsPodSandboxConfig at this time.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top