Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 213 for asms (0.04 sec)

  1. platforms/ide/ide-native/src/main/resources/org/gradle/ide/visualstudio/tasks/internal/default.vcxproj.filters

    <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
        <ItemGroup Label="Filters">
          <Filter Include="Source Files">
            <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
          </Filter>
          <Filter Include="Header Files">
            <!-- if you would like to add more endings to this pattern, make sure to also edit DefaultCppLibrary.java and DefaultCppComponent.java-->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 04:34:07 UTC 2023
    - 808 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testplugin/testdata/issue18676/main.go

    //     (concrete type / interface type).  This itab goes in hash bucket 0x111.
    //  2. The plugin adds that same itab again.  That makes a cycle in the itab
    //     chain rooted at hash bucket 0x111.
    //  3. The main binary then asks for the itab for *dynamodbstreamsevt.Event /
    //     json.Unmarshaler.  This itab happens to also live in bucket 0x111.
    //     The lookup code goes into an infinite loop searching for this itab.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/ApiMemberSelector.java

    import org.objectweb.asm.AnnotationVisitor;
    import org.objectweb.asm.ClassVisitor;
    import org.objectweb.asm.FieldVisitor;
    import org.objectweb.asm.MethodVisitor;
    import org.objectweb.asm.ModuleVisitor;
    import org.objectweb.asm.Opcodes;
    
    import java.util.SortedSet;
    import java.util.TreeSet;
    
    import static org.objectweb.asm.Opcodes.ACC_FINAL;
    import static org.objectweb.asm.Opcodes.ACC_PRIVATE;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/discovery/v1/well_known_labels.go

    	// LabelServiceName is used to indicate the name of a Kubernetes service.
    	LabelServiceName = "kubernetes.io/service-name"
    	// LabelManagedBy is used to indicate the controller or entity that manages
    	// an EndpointSlice. This label aims to enable different EndpointSlice
    	// objects to be managed by different controllers or entities within the
    	// same cluster. It is highly recommended to configure this label for all
    	// EndpointSlices.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 05 20:02:41 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  5. src/runtime/cgo/gcc_aix_ppc64.c

    int _cgo_topofstack(void) {
    	return __cgo_topofstack();
    }
    
    int main(int argc, char **argv) {
    	return runtime_rt0_go(argc, argv);
    }
    
    static void libinit(void) __attribute__ ((constructor));
    
    /*
     * libinit aims to replace .init_array section which isn't available on aix.
     * Using __attribute__ ((constructor)) let gcc handles this instead of
     * adding special code in cmd/link.
     * However, it will be called for every Go programs which has cgo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classanalysis/AsmConstants.java

    package org.gradle.internal.classanalysis;
    
    import org.objectweb.asm.Opcodes;
    
    public class AsmConstants {
        public static final int ASM_LEVEL = Opcodes.ASM9;
    
        /**
         * The minimal version of Java for which ASM understands the bytecodes.
         */
        public static final int MIN_SUPPORTED_JAVA_VERSION = 1;
    
        /**
         * The latest version of Java for which ASM understands the bytecodes.
         *
         * Updated for ASM 9.7.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 17:43:28 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARMOps.go

    		{name: "ABSD", argLength: 1, reg: fp11, asm: "ABSD"},   // abs(arg0), float64
    
    		{name: "CLZ", argLength: 1, reg: gp11, asm: "CLZ"},     // count leading zero
    		{name: "REV", argLength: 1, reg: gp11, asm: "REV"},     // reverse byte order
    		{name: "REV16", argLength: 1, reg: gp11, asm: "REV16"}, // reverse byte order in 16-bit halfwords
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 41K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "FMADDD", argLength: 3, reg: fp31, asm: "FMADDD"},   // +arg0 + (arg1 * arg2)
    		{name: "FNMADDS", argLength: 3, reg: fp31, asm: "FNMADDS"}, // -arg0 - (arg1 * arg2)
    		{name: "FNMADDD", argLength: 3, reg: fp31, asm: "FNMADDD"}, // -arg0 - (arg1 * arg2)
    		{name: "FMSUBS", argLength: 3, reg: fp31, asm: "FMSUBS"},   // +arg0 - (arg1 * arg2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/UserQuestions.java

     */
    public interface UserQuestions {
        /**
         * Asks the user a yes/no question and returns the answer. Requires that the user explicitly type "yes" or "no".
         *
         * @param question The text of the question.
         * @return the answer or {@code null} if not connected to a console.
         */
        @Nullable
        Boolean askYesNoQuestion(String question);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/parallelize/parallelism.go

    func NewParallelizer(p int) Parallelizer {
    	return Parallelizer{parallelism: p}
    }
    
    // chunkSizeFor returns a chunk size for the given number of items to use for
    // parallel work. The size aims to produce good CPU utilization.
    // returns max(1, min(sqrt(n), n/Parallelism))
    func chunkSizeFor(n, parallelism int) int {
    	s := int(math.Sqrt(float64(n)))
    
    	if r := n/parallelism + 1; s > r {
    		s = r
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 17:12:30 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top