Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 84 for regabi (0.22 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/TestContainerGenerator.java

       * its input unmodified. Provided that the test suite is built without {@link
       * com.google.common.collect.testing.features.CollectionFeature#KNOWN_ORDER}, the tests will look
       * only at the returned contents without regard for order.
       */
      Iterable<E> order(List<E> insertionOrder);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/obj6.go

    		}
    	}
    
    	var regEntryTmp0, regEntryTmp1 int16
    	if ctxt.Arch.Family == sys.AMD64 {
    		regEntryTmp0, regEntryTmp1 = REGENTRYTMP0, REGENTRYTMP1
    	} else {
    		regEntryTmp0, regEntryTmp1 = REG_BX, REG_DI
    	}
    
    	var regg int16
    	if !p.From.Sym.NoSplit() {
    		// Emit split check and load G register
    		p, regg = stacksplit(ctxt, cursym, p, newprog, autoffset, int32(textarg))
    	} else if p.From.Sym.Wrapper() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/toleration.go

    */
    
    package v1
    
    // 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: Sun Dec 18 04:27:38 UTC 2022
    - 2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionQuery.java

                queryBuilderList = new ArrayList<>();
            }
            queryBuilderList.add(builder);
        }
    
        protected void regOBA(String field) {
            registerOrderBy(field, true);
        }
    
        protected void regOBD(String field) {
            registerOrderBy(field, false);
        }
    
        protected void registerOrderBy(String field, boolean ascOrDesc) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionQuery.java

                queryBuilderList = new ArrayList<>();
            }
            queryBuilderList.add(builder);
        }
    
        protected void regOBA(String field) {
            registerOrderBy(field, true);
        }
    
        protected void regOBD(String field) {
            registerOrderBy(field, false);
        }
    
        protected void registerOrderBy(String field, boolean ascOrDesc) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm/a.out.go

    package arm
    
    import "cmd/internal/obj"
    
    //go:generate go run ../stringer.go -i $GOFILE -o anames.go -p arm
    
    const (
    	NSNAME = 8
    	NSYM   = 50
    	NREG   = 16
    )
    
    /* -1 disables use of REGARG */
    const (
    	REGARG = -1
    )
    
    const (
    	REG_R0 = obj.RBaseARM + iota // must be 16-aligned
    	REG_R1
    	REG_R2
    	REG_R3
    	REG_R4
    	REG_R5
    	REG_R6
    	REG_R7
    	REG_R8
    	REG_R9
    	REG_R10
    	REG_R11
    	REG_R12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 05 16:22:12 UTC 2021
    - 7K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/TestContainerGenerator.java

       * its input unmodified. Provided that the test suite is built without {@link
       * com.google.common.collect.testing.features.CollectionFeature#KNOWN_ORDER}, the tests will look
       * only at the returned contents without regard for order.
       */
      Iterable<E> order(List<E> insertionOrder);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/transforms/SnapshotTransformInputsBuildOperationType.java

             * <p>
             * This is using the visitor from {@link SnapshotTaskInputsBuildOperationType} since there is no difference
             * between tasks and transforms in this regard. Later we can unify the transform and the task build operation type.
             */
            void visitInputFileProperties(FilePropertyVisitor visitor);
    
            /**
             * The names of the output properties.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/mips/list0.go

    		return fmt.Sprintf("M%d", r-REG_M0)
    	}
    	if REG_FCR0 <= r && r <= REG_FCR31 {
    		return fmt.Sprintf("FCR%d", r-REG_FCR0)
    	}
    	if REG_W0 <= r && r <= REG_W31 {
    		return fmt.Sprintf("W%d", r-REG_W0)
    	}
    	if r == REG_HI {
    		return "HI"
    	}
    	if r == REG_LO {
    		return "LO"
    	}
    
    	return fmt.Sprintf("Rgok(%d)", r-obj.RBaseMIPS)
    }
    
    func DRconv(a int) string {
    	s := "C_??"
    	if a >= C_NONE && a <= C_NCLASS {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 04 19:06:44 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectStateInternal.java

    import org.gradle.api.ProjectState;
    import org.gradle.util.internal.CollectionUtils;
    
    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * Represents the lifecycle state of a project, with regard to configuration.
     *
     * There are three synonymous terms mixed in here (configure, evaluate, execute) for legacy reasons.
     * Where not bound to backwards compatibility constraints, we use the term “configure”.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:05 UTC 2021
    - 3.8K bytes
    - Viewed (0)
Back to top