Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for regabi (0.45 sec)

  1. src/cmd/compile/internal/x86/ggen.go

    		p = pp.Append(p, obj.ADUFFZERO, obj.TYPE_NONE, 0, 0, obj.TYPE_ADDR, 0, 1*(128-cnt/int64(types.RegSize)))
    		p.To.Sym = ir.Syms.Duffzero
    	} else {
    		p = pp.Append(p, x86.AMOVL, obj.TYPE_CONST, 0, cnt/int64(types.RegSize), obj.TYPE_REG, x86.REG_CX, 0)
    		p = pp.Append(p, x86.ALEAL, obj.TYPE_MEM, x86.REG_SP, off, obj.TYPE_REG, x86.REG_DI, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:38:47 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/MappingProvider.java

            super(type, provider, transformer);
        }
    
        @Override
        public boolean calculatePresence(ValueConsumer consumer) {
            // Rely on MappingProvider contract with regard to the transform always returning value
            try (EvaluationContext.ScopeContext ignored = openScope()) {
                return provider.calculatePresence(consumer);
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. licenses/github.com/davecgh/go-spew/LICENSE

    purpose with or without fee is hereby granted, provided that the above
    copyright notice and this permission notice appear in all copies.
    
    THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
    WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
    MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
    ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 26 02:47:39 UTC 2019
    - 766 bytes
    - Viewed (0)
  4. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/notify/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * This package forms the basic contract between the build scan plugin
     * and Gradle with regard to observing build operations.
     *
     * It has no dependencies to types outside of this package other than JDK types.
     *
     * Only binary compatible changes, from the caller's perspective,
     * can be made to these types.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. LICENSES/vendor/github.com/davecgh/go-spew/LICENSE

    purpose with or without fee is hereby granted, provided that the above
    copyright notice and this permission notice appear in all copies.
    
    THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
    WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
    MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
    ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 08 04:49:00 UTC 2020
    - 899 bytes
    - Viewed (0)
  6. src/runtime/defs1_netbsd_arm.go

    }
    
    type mcontextt struct {
    	__gregs     [17]uint32
    	_           [4]byte   // EABI
    	__fpu       [272]byte // EABI
    	_mc_tlsbase uint32
    	_           [4]byte // EABI
    }
    
    type ucontextt struct {
    	uc_flags    uint32
    	uc_link     *ucontextt
    	uc_sigmask  sigset
    	uc_stack    stackt
    	_           [4]byte // EABI
    	uc_mcontext mcontextt
    	__uc_pad    [2]int32
    }
    
    type keventt struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. pkg/apis/core/taint.go

    //functions in the k8s.io/api repo.
    
    package core
    
    import "fmt"
    
    // MatchTaint checks if the taint matches taintToMatch. Taints are unique by key:effect,
    // if the two taints have same key:effect, regard as they match.
    func (t *Taint) MatchTaint(taintToMatch Taint) bool {
    	return t.Key == taintToMatch.Key && t.Effect == taintToMatch.Effect
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 25 18:06:51 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  8. pkg/apis/core/toleration.go

    package core
    
    // MatchToleration checks if the toleration matches tolerationToMatch. Tolerations are unique by <key,effect,operator,value>,
    // if the two tolerations have same <key,effect,operator,value> combination, regard as they match.
    // TODO: uniqueness check for tolerations in api validations.
    func (t *Toleration) MatchToleration(tolerationToMatch *Toleration) bool {
    	return t.Key == tolerationToMatch.Key &&
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 09 11:14:07 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/taint.go

    limitations under the License.
    */
    
    package v1
    
    import "fmt"
    
    // MatchTaint checks if the taint matches taintToMatch. Taints are unique by key:effect,
    // if the two taints have same key:effect, regard as they match.
    func (t *Taint) MatchTaint(taintToMatch *Taint) bool {
    	return t.Key == taintToMatch.Key && t.Effect == taintToMatch.Effect
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 16 13:06:01 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/x86/seh.go

    	// accordingly.
    
    	// Search for the PUSHQ BP instruction inside the prologue.
    	var pushbp *obj.Prog
    	for p := s.Func().Text; p != nil; p = p.Link {
    		if p.As == APUSHQ && p.From.Type == obj.TYPE_REG && p.From.Reg == REG_BP {
    			pushbp = p
    			break
    		}
    		if p.Pos.Xlogue() == src.PosPrologueEnd {
    			break
    		}
    	}
    	if pushbp == nil {
    		ctxt.Diag("missing frame pointer instruction: PUSHQ BP")
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top