Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 44 for getProp3 (0.33 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyLifecycleIntegrationTest.groovy

            given:
            settingsFile << 'rootProject.name = "broken"'
            buildFile """
                interface ProjectModel {
                    Property<String> getProp()
                }
    
                project.extensions.create('thing', ProjectModel.class)
                thing.prop.disallowUnsafeRead()
                thing.prop.set("value one")
    
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 14:00:52 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. .github/ISSUE_TEMPLATE/tflite-in-play-services.md

    about: Use this template for issues with TensorFlow Lite in Google Play Services
    labels: 'comp:lite-in-play-services'
    
    ---
    
    **System information**
    - Android Device information (use `adb shell getprop ro.build.fingerprint`
      if possible):
    - TensorFlow Lite in Play Services SDK version (found in `build.gradle`):
    - Google Play Services version
      (`Settings` > `Apps` > `Google Play Services` > `App details`):
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 15 03:35:58 UTC 2022
    - 880 bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/model/ObjectFactoryIntegrationTest.groovy

                    String getProp()
                }
    
                objects.newInstance(Thing)
    """
    
            expect:
            fails()
            failure.assertHasCause("Could not create an instance of type Thing.")
            failure.assertHasCause("Could not generate a decorated class for type Thing.")
            failure.assertHasCause("Cannot have abstract method Thing.getProp().")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 07 02:25:12 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm6.go

    				ab.asmvex(ctxt, p.GetFrom3(), &p.To, nil, o.op[z], o.op[z+1])
    				ab.asmando(ctxt, cursym, p, p.GetFrom3(), int(o.op[z+2]))
    				ab.Put1(byte(p.From.Offset))
    
    			case Zvex_i_r_v:
    				ab.asmvex(ctxt, p.GetFrom3(), &p.To, nil, o.op[z], o.op[z+1])
    				regnum := byte(0x7)
    				if p.GetFrom3().Reg >= REG_X0 && p.GetFrom3().Reg <= REG_X15 {
    					regnum &= byte(p.GetFrom3().Reg - REG_X0)
    				} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionLifecycleIntegrationTest.groovy

            given:
            settingsFile << 'rootProject.name = "broken"'
            buildFile """
                interface ProjectModel {
                    ConfigurableFileCollection getProp()
                }
    
                project.extensions.create('thing', ProjectModel.class)
                thing.prop.disallowUnsafeRead()
                thing.prop.from(layout.buildDirectory)
    
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 10:55:07 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/DefaultInstantiationSchemeTest.groovy

            Impl() {
                throw new RuntimeException("should not be called")
            }
        }
    
        static abstract class WithServices {
            @Inject
            abstract String getProp()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/initialization/MixInLegacyTypesClassLoaderTest.groovy

            def original = compileJavaToDir(className, """
                package org.gradle.api.plugins;
                class JavaPluginConvention {
                    String _prop;
                    String getProp() { return _prop; }
                    void setProp(String value) { _prop = value; }
                    String doSomething(String arg) { return arg; }
                }
            """)
            !GroovyObject.isAssignableFrom(original)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 22 23:58:47 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  8. src/time/zoneinfo_android.go

    import (
    	"errors"
    	"syscall"
    )
    
    var platformZoneSources = []string{
    	"/system/usr/share/zoneinfo/tzdata",
    	"/data/misc/zoneinfo/current/tzdata",
    }
    
    func initLocal() {
    	// TODO(elias.naur): getprop persist.sys.timezone
    	localLoc = *UTC
    }
    
    func init() {
    	loadTzinfoFromTzdata = androidLoadTzinfoFromTzdata
    }
    
    var allowGorootSource = true
    
    func gorootZoneSource(goroot string) (string, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 20:57:35 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/execution/ExceptionAttributionIntegrationTest.groovy

                    void apply(Project p) {
                        p.extensions.create("thing", ExtensionImpl)
                    }
                }
    
                class ExtensionImpl {
                    String getProp() { return "value" }
                    void setProp(String value) {
                        throw new RuntimeException("broken")
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 07 06:23:22 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/link.go

    	Destination
    )
    
    // From3Type returns p.GetFrom3().Type, or TYPE_NONE when
    // p.GetFrom3() returns nil.
    func (p *Prog) From3Type() AddrType {
    	from3 := p.GetFrom3()
    	if from3 == nil {
    		return TYPE_NONE
    	}
    	return from3.Type
    }
    
    // GetFrom3 returns second source operand (the first is Prog.From).
    // The same kinds of operands are saved in order so GetFrom3 actually
    // return the first source operand in p.RestArgs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
Back to top