Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 755 for REGISTERS (0.22 sec)

  1. src/internal/abi/abi.go

    	// 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.
    
    	// Ptrs is a space that duplicates Ints but with pointer type,
    	// used to make pointers passed or returned  in registers
    	// visible to the GC by making the type unsafe.Pointer.
    	Ptrs [IntArgRegs]unsafe.Pointer
    
    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/tasks/TaskInputs.java

        FileCollection getFiles();
    
        /**
         * Registers some input files for this task.
         *
         * @param paths The input files. The given paths are evaluated as per {@link org.gradle.api.Project#files(Object...)}.
         * @return a property builder to further configure the property.
         */
        TaskInputFilePropertyBuilder files(Object... paths);
    
        /**
         * Registers some input file for this task.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 26 16:09:35 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/BinaryCollection.java

        /**
         * Registers an action to execute when an element becomes known. The action is only executed for those elements that are required. Fails if any element has already been finalized.
         *
         * @param action The action to execute for each element becomes known.
         */
        void whenElementKnown(Action<? super T> action);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ConfigurationContainer.java

         *
         * @param dependencies The dependencies of the configuration.
         * @return The configuration.
         */
        Configuration detachedConfiguration(Dependency... dependencies);
    
        /**
         * Registers a {@link ResolvableConfiguration} with an immutable role. Resolvable configurations
         * are meant to resolve dependency graphs and their artifacts.
         *
         * @param name The name of the configuration to register.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. test/fixedbugs/bug453.go

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 4138: bug in floating-point registers numbering.
    // Makes 6g unable to use more than 11 registers.
    
    package main
    
    func formula() float32 {
    	mA := [1]float32{1.0}
    	det1 := mA[0]
    	det2 := mA[0]
    	det3 := mA[0]
    	det4 := mA[0]
    	det5 := mA[0]
    	det6 := mA[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 703 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/op.go

    	// from the register set (most constrained first).
    	// Inputs which do not need registers are not listed.
    	inputs []inputInfo
    	// clobbers encodes the set of registers that are overwritten by
    	// the instruction (other than the output registers).
    	clobbers regMask
    	// outputs is the same as inputs, but for the outputs of the instruction.
    	outputs []outputInfo
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/GroovyGradlePluginInitIntegrationTest.groovy

            then:
            assertTestPassed("org.example.SomeThingPluginTest", "plugin registers task")
            assertFunctionalTestPassed("org.example.SomeThingPluginFunctionalTest", "can run task")
    
            when:
            run('check', '--rerun-tasks')
    
            then:
            assertTestPassed("org.example.SomeThingPluginTest", "plugin registers task")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 02 19:50:23 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultConflictHandlerTest.groovy

        def details = Mock(ConflictResolverDetails)
    
        def "registers unconflicted modules"() {
            def a = candidate("org", "a")
            def b = candidate("org", "b")
    
            expect:
            !handler.registerCandidate(a).conflictExists()
            !handler.registerCandidate(b).conflictExists()
            !handler.hasConflicts()
        }
    
        def "registers module with version conflict"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/configuration/project/ProjectConfigurationActionContainer.java

        void finished();
    
        Iterable<Action<? super ProjectInternal>> getActions();
    
        /**
         * Registers an action to execute to configure the project. Actions are executed in an arbitrary order.
         */
        void add(Action<? super ProjectInternal> action);
    
        /**
         * Registers an action to execute to configure the project. Actions are executed in an arbitrary order.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. test/fixedbugs/issue7044.go

    	// Use all 16 registers to do float32 --> float64 conversion.
    	d0, d1, d2, d3, d4, d5, d6, d7, d8, d9, d10, d11, d12, d13, d14, d15 :=
    		float64(f0), float64(f1), float64(f2), float64(f3), float64(f4), float64(f5), float64(f6), float64(f7), float64(f8), float64(f9), float64(f10), float64(f11), float64(f12), float64(f13), float64(f14), float64(f15)
    	// Use all 16 registers to do float64 --> float32 conversion.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2.2K bytes
    - Viewed (0)
Back to top