Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,170 for Registers (0.28 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ConfigurationContainer.java

         */
        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.
         *
         * @return A provider which creates a new resolvable configuration.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/register.go

    	scheme.AddKnownTypes(groupVersion, optionsTypes...)
    	// Register Unversioned types under their own special group
    	scheme.AddUnversionedTypes(Unversioned,
    		&Status{},
    		&APIVersions{},
    		&APIGroupList{},
    		&APIGroup{},
    		&APIResourceList{},
    	)
    
    	// register manually. This usually goes through the SchemeBuilder, which we cannot use here.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 22 18:47:31 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  3. 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
    }
    
    func (r *regInfo) String() string {
    	s := ""
    	s += "INS:\n"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/build_cache_gomips.txt

    env GOCACHE=$WORK/gocache
    mkdir $GOCACHE
    
    # Building for mipsle without setting GOMIPS will use floating point registers.
    env GOARCH=mipsle
    env GOOS=linux
    go build -gcflags=-S f.go
    stderr ADDD.F[0-9]+,.F[0-9]+,.F[0-9]+
    
    # Clean cache
    go clean -cache
    
    # Building with GOMIPS=softfloat will not use floating point registers
    env GOMIPS=softfloat
    go build -gcflags=-S f.go
    ! stderr ADDD.F[0-9]+,.F[0-9]+,.F[0-9]+
    
    # Clean cache
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 03:25:01 UTC 2019
    - 859 bytes
    - Viewed (0)
  5. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/KotlinGradlePluginInitIntegrationTest.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: Wed May 29 03:26:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zptrace_linux_arm64.go

    package unix
    
    import "unsafe"
    
    // PtraceGetRegSetArm64 fetches the registers used by arm64 binaries.
    func PtraceGetRegSetArm64(pid, addr int, regsout *PtraceRegsArm64) error {
    	iovec := Iovec{(*byte)(unsafe.Pointer(regsout)), uint64(unsafe.Sizeof(*regsout))}
    	return ptracePtr(PTRACE_GETREGSET, pid, uintptr(addr), unsafe.Pointer(&iovec))
    }
    
    // PtraceSetRegSetArm64 sets the registers used by arm64 binaries.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 22:42:18 UTC 2023
    - 721 bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/AbstractComponentModelIntegrationTest.groovy

     */
    
    package org.gradle.language.base
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    abstract class AbstractComponentModelIntegrationTest extends AbstractIntegrationSpec {
        /**
         * Registers CustomComponent type
         */
        void withCustomComponentType() {
            buildFile << """
                @Managed interface CustomComponent extends GeneralComponentSpec {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/main.go

    }
    
    type regInfo struct {
    	// inputs[i] encodes the set of registers allowed for the i'th input.
    	// Inputs that don't use registers (flags, memory, etc.) should be 0.
    	inputs []regMask
    	// clobbers encodes the set of registers that are overwritten by
    	// the instruction (other than the output registers).
    	clobbers regMask
    	// outputs[i] encodes the set of registers allowed for the i'th output.
    	outputs []regMask
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testsanitizers/testdata/msan8.go

    	struct cgoTracebackArg* arg = (struct cgoTracebackArg*)(parg);
            arg->buf[0] = 0;
    }
    
    // msanGoWait will be called with all registers undefined as far as
    // msan is concerned. It just waits for a signal.
    // Because the registers are msan-undefined, the signal handler will
    // be invoked with all registers msan-undefined.
    __attribute__((noinline))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:30:58 UTC 2023
    - 2.7K 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