Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 6,769 for aS (0.06 sec)

  1. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/AbstractCodecTest.groovy

                encoder.writeByte(-1 as byte)
                encoder.writeBytes([1, 2, 3, 4] as byte[])
                encoder.writeBytes([0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7] as byte[], 2, 1)
            }
            decode(bytes) { Decoder decoder ->
                def buffer = new byte[2]
                decoder.readBytes(buffer)
                assert buffer == [Byte.MIN_VALUE, Byte.MAX_VALUE] as byte[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/manager_test.go

    	as.Equal(1, initCont1Devices.Len())
    	as.Equal(2, initCont2Devices.Len())
    	as.Equal(1, normalCont1Devices.Len())
    	as.Equal(1, normalCont2Devices.Len())
    	as.True(initCont2Devices.IsSuperset(initCont1Devices))
    	as.True(initCont2Devices.IsSuperset(normalCont1Devices))
    	as.True(initCont2Devices.IsSuperset(normalCont2Devices))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/obj9.go

    // This code is for AIX only.
    func (c *ctxt9) rewriteToUseTOC(p *obj.Prog) {
    	if p.As == obj.ATEXT || p.As == obj.AFUNCDATA || p.As == obj.ACALL || p.As == obj.ARET || p.As == obj.AJMP {
    		return
    	}
    
    	if p.As == obj.ADUFFCOPY || p.As == obj.ADUFFZERO {
    		// ADUFFZERO/ADUFFCOPY is considered as an ABL except in dynamic
    		// link where it should be an indirect call.
    		if !c.ctxt.Flag_dynlink {
    			return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/api/internal/tasks/userinput/DefaultUserInputHandlerTest.groovy

            then:
            1 * outputEventBroadcaster.onOutput(_ as UserInputRequestEvent)
            1 * outputEventBroadcaster.onOutput(_ as BooleanQuestionPromptEvent)
            1 * userInputReader.readInput() >> new UserInputReader.TextResponse("")
            1 * outputEventBroadcaster.onOutput(_ as UserInputResumeEvent)
            0 * outputEventBroadcaster._
            0 * userInputHandler._
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirAnnotationValueConverter.kt

                type.isChar -> KaConstantValue.KaCharConstantValue((value as? Char) ?: (value as Number).toInt().toChar(), expression)
                type.isByte -> KaConstantValue.KaByteConstantValue((value as Number).toByte(), expression)
                type.isUByte -> KaConstantValue.KaUnsignedByteConstantValue((value as Number).toByte().toUByte(), expression)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessInstrumentationInStaticGroovyIntegrationTest.groovy

                e.exec("some string")
                e.exec("some string", ["array"] as String[])
                e.exec("some string", ["array"] as String[], file("test"))
                e.exec(["some", "string"] as String[])
                e.exec(["some", "string"] as String[], ["array"] as String[])
                e.exec(["some", "string"] as String[], ["array"] as String[], file("test"))
    
    
                def s = new ProcessBuilderStart()
                s.start()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *Binding) APILifecycleIntroduced() (major, minor int) {
    	return 1, 0
    }
    
    // APILifecycleDeprecated is an autogenerated function, returning the release in which the API struct was or will be deprecated 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
    - 15K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtDiagnosticConverter.kt

                        create(diagnostic as KtSimpleDiagnostic)
                    }
                    is KaFirDiagnostic1Creator<*> -> with(creator as KaFirDiagnostic1Creator<Any?>) {
                        create(diagnostic as KtDiagnosticWithParameters1<Any?>)
                    }
                    is KaFirDiagnostic2Creator<*, *> -> with(creator as KaFirDiagnostic2Creator<Any?, Any?>) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiStreamingBuildActionIntegrationTest.groovy

                projectConfigured(":")
                modelsCreated(":", 3)
            }
    
            and:
            (model.left as GradleProject).name == "hello-world"
            (model.right as EclipseProject).gradleProject.name == "hello-world"
    
            and:
            def streamedModels = listener1.models as List<CustomModel>
            streamedModels.size() == 2
            streamedModels[0].value == 1
            streamedModels[1].value == 2
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/SetSerializerTest.groovy

            then:
            serialize(["one", "two", "three"] as Set, serializer) as List == ["one", "two", "three"]
        }
    
        def "serialize set of longs"() {
            when:
            def serializer = new SetSerializer(BaseSerializerFactory.LONG_SERIALIZER)
    
            then:
            serialize([1L, 5L, 99L] as Set, serializer) as List == [1L, 5L, 99L]
        }
    
        def "serialize null entry"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top