Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 101 for PROMOTED (0.17 sec)

  1. src/internal/abi/abi.go

    	// be in the top bits of the slot. Floats are usually just
    	// directly represented, but some architectures treat narrow
    	// width floating point values specially (e.g. they're promoted
    	// first, or they need to be NaN-boxed).
    	Ints   [IntArgRegs]uintptr  // untyped integer registers
    	Floats [FloatArgRegs]uint64 // untyped float registers
    
    	// Fields above this point are known to assembly.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 23 15:51:32 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/plugins/ExtensionAware.java

     * assert project.hasProperty("myProperty") == false
     * project.ext.myProperty = "myValue"
     *
     * // Properties added to the “ext” extension are promoted to the owning object
     * assert project.myProperty == "myValue"
     * </pre>
     *
     * Many Gradle objects are extension aware. This includes; projects, tasks, configurations, dependencies etc.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 26 07:18:37 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  3. src/reflect/visiblefields.go

    // directly with a FieldByName call. The returned fields include fields
    // inside anonymous struct members and unexported fields. They follow
    // the same order found in the struct, with anonymous fields followed
    // immediately by their promoted fields.
    //
    // For each element e of the returned slice, the corresponding field
    // can be retrieved from a value v of type t by calling v.FieldByIndex(e.Index).
    func VisibleFields(t Type) []StructField {
    	if t == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 26 14:24:17 UTC 2021
    - 3K bytes
    - Viewed (0)
  4. test/codegen/stack.go

    // (issue #21064).
    
    func check_asmout(b [2]int) int {
    	runtime.GC() // use some frame
    	// amd64:`.*b\+24\(SP\)`
    	// arm:`.*b\+4\(FP\)`
    	return b[1]
    }
    
    // Check that simple functions get promoted to nosplit, even when
    // they might panic in various ways. See issue 31219.
    // amd64:"TEXT\t.*NOSPLIT.*"
    func MightPanic(a []int, i, j, k, s int) {
    	_ = a[i]     // panicIndex
    	_ = a[i:j]   // panicSlice
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/inline/inlheur/scoring.go

    			// "Normal" not inlined case: hairy val sufficiently high
    			// and scoring didn't lower it.
    		case hairyval > bud && score <= bud:
    			// Promoted: we would not have inlined it before, but
    			// after score adjustment we decided to inline.
    			st = "PROMOTED"
    			expinl = true
    		case hairyval <= bud && score > bud:
    			// Demoted: we would have inlined it before, but after
    			// score adjustment we decided not to inline.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. src/reflect/example_test.go

    	// Output:
    	// value: &{Height:0.4 Age:2}
    	// json:  {"height":0.4,"age":2}
    	// value: &{Height:1.5 Age:10}
    }
    
    func ExampleValue_FieldByIndex() {
    	// This example shows a case in which the name of a promoted field
    	// is hidden by another field: FieldByName will not work, so
    	// FieldByIndex must be used instead.
    	type user struct {
    		firstName string
    		lastName  string
    	}
    
    	type data struct {
    		user
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 20:04:36 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_lazy_import_allmod.txt

    go mod tidy
    cmp go.mod.orig go.mod
    
    go list -m all
    stdout '^a v0.1.0 '
    stdout '^b v0.1.0 '
    ! stdout '^c '
    
    # After adding a new direct import of b/y,
    # the existing version of b should be promoted to a root,
    # bringing the version of c required by b into the build list.
    
    cp m.go.new m.go
    go mod tidy
    cmp go.mod.lazy go.mod
    
    go list -m all
    stdout '^a v0.1.0 '
    stdout '^b v0.1.0 '
    stdout '^c v0.1.0 '
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 17 13:54:10 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  8. releasenotes/README.md

    ### Upgrade Notes
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 09 20:31:49 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  9. cluster/gce/gci/README.md

    stability. The promotion between those channels are about six weeks.
    Starting milestone 69, for
    every 4 milestones, the last milestone will be promoted into LTS image after it
    becomes stable.
    For details, please see COS's [Release Channels](https://cloud.google.com/container-optimized-os/docs/concepts/release-channels) and [Support
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 14:55:40 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/tests/unfuse_mhlo_batch_norm.mlir

            tensor<?xf32>) -> tensor<?x?x?x?xf32>
      func.return %0 : tensor<?x?x?x?xf32>
    }
    
    // CHECK-LABEL: @batchNormInference_f64
    // Validate that epsilon is properly promoted to f64
    // CHECK-DAG: %[[EPS:.+]] = mhlo.constant dense<1.000000e+00> : tensor<256xf64>
    func.func @batchNormInference_f64(
        %x: tensor<4x256xf64>, %scale: tensor<256xf64>, %offset: tensor<256xf64>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top