Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 6,769 for aS (0.03 sec)

  1. src/cmd/internal/obj/s390x/asmz.go

    	{i: 0, as: obj.AFUNCDATA, a1: C_SCON, a6: C_ADDR},
    	{i: 0, as: obj.ANOP},
    	{i: 0, as: obj.ANOP, a1: C_SAUTO},
    
    	// move register
    	{i: 1, as: AMOVD, a1: C_REG, a6: C_REG},
    	{i: 1, as: AMOVB, a1: C_REG, a6: C_REG},
    	{i: 1, as: AMOVBZ, a1: C_REG, a6: C_REG},
    	{i: 1, as: AMOVW, a1: C_REG, a6: C_REG},
    	{i: 1, as: AMOVWZ, a1: C_REG, a6: C_REG},
    	{i: 1, as: AFMOVD, a1: C_FREG, a6: C_FREG},
    	{i: 1, as: AMOVDBR, a1: C_REG, a6: C_REG},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  2. src/errors/wrap.go

    // pointed to by target, or if the error has a method As(any) bool such that
    // As(target) returns true. In the latter case, the As method is responsible for
    // setting target.
    //
    // An error type might provide an As method so it can be treated as if it were a
    // different error type.
    //
    // As panics if target is not a non-nil pointer to either a type that implements
    // error, or to any interface type.
    func As(err error, target any) bool {
    	if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:04 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r52/CppModelCrossVersionSpec.groovy

            debugX86Binary.baseName == 'app'
            debugX86Binary.compilationDetails.sources.sourceFile as Set == [src1, src2] as Set
            debugX86Binary.compilationDetails.sources.objectFile.each { assert it != null }
            debugX86Binary.compilationDetails.headerDirs == [headerDir] as Set
            debugX86Binary.compilationDetails.frameworkSearchPaths.empty
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskContainerTest.groovy

            noExceptionThrown()
            0 * taskFactory.create(_ as TaskIdentity)
        }
    
        void "overwriting eagerly created task throws exception"() {
            given:
            def customTask = task("task", CustomTask)
            1 * taskFactory.create(_ as TaskIdentity, _ as Object[]) >> customTask
            1 * taskFactory.create(_ as TaskIdentity, _ as Object[]) >> task("task", DefaultTask)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 14:36:44 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *CSIDriver) APILifecycleIntroduced() (major, minor int) {
    	return 1, 18
    }
    
    // APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *ControllerRevision) APILifecycleIntroduced() (major, minor int) {
    	return 1, 9
    }
    
    // APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/DefaultDaemonConnectorTest.groovy

            ConnectCompletion connect(Address address) throws ConnectException {
                def connection = [:] as RemoteConnection
                // unsure why I can't add this as property in the map-mock above
                connection.metaClass.num = address.num
                return { connection } as ConnectCompletion
            }
        }
    
        def createAddress(int i) {
            new Address() {
                int getNum() { i }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/LocalComponentDependencyMetadataTest.groovy

            attributesSchema.attribute(Attribute.of('extra', String))
    
            expect:
            dep.selectVariants(variantSelector, attributes(queryAttributes), toComponent, attributesSchema, [] as Set).variants.name as Set == [expected] as Set
    
            where:
            scenario                                         | queryAttributes                 | expected
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10SymbolContainingDeclarationProvider.kt

                is KaPropertyAccessorSymbol -> {
                    (symbol.getDescriptor() as? PropertyAccessorDescriptor)?.correspondingProperty
                        ?.toKtSymbol(analysisContext) as? KaDeclarationSymbol
                }
                else -> {
                    symbol.getDescriptor()?.containingDeclaration
                        ?.toKtSymbol(analysisContext) as? KaDeclarationSymbol
                }
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. src/math/rand/v2/rand.go

    	return &Rand{src: src}
    }
    
    // Int64 returns a non-negative pseudo-random 63-bit integer as an int64.
    func (r *Rand) Int64() int64 { return int64(r.src.Uint64() &^ (1 << 63)) }
    
    // Uint32 returns a pseudo-random 32-bit value as a uint32.
    func (r *Rand) Uint32() uint32 { return uint32(r.src.Uint64() >> 32) }
    
    // Uint64 returns a pseudo-random 64-bit value as a uint64.
    func (r *Rand) Uint64() uint64 { return r.src.Uint64() }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:25:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top