Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 44 for getProp3 (0.37 sec)

  1. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionPropertyIntegrationTest.groovy

                    "@OutputFiles"
                ],
                [
                    'final SetProperty<RegularFile> prop = project.objects.setProperty(RegularFile)',
                    'abstract SetProperty<RegularFile> getProp()'
                ]
            ].combinations()
        }
    
        def "task @OutputDirectories directory property is implicitly finalized when task starts execution"() {
            buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/DefaultIsolatableFactoryTest.groovy

            isolated.coerce(String) == null
    
            def v = isolated.coerce(cl)
            cl.isInstance(v)
            v.name == "value1"
        }
    
        interface BeanInterface {
            String getProp1()
    
            void setProp1(String value)
        }
    
        def "creates isolated managed interface"() {
            def instantiator = instantiatorFactory().inject()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 17K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm/obj5.go

    		if p.From.Offset != 0 {
    			q := obj.Appendp(p, c.newprog)
    			q.As = AADD
    			q.From.Type = obj.TYPE_CONST
    			q.From.Offset = p.From.Offset
    			q.To = p.To
    			p.From.Offset = 0
    		}
    	}
    	if p.GetFrom3() != nil && p.GetFrom3().Name == obj.NAME_EXTERN {
    		c.ctxt.Diag("don't know how to handle %v with -dynlink", p)
    	}
    	var source *obj.Addr
    	// MOVx sym, Ry becomes MOVW sym@GOT, R9; MOVx (R9), Ry
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/s390x/objz.go

    			q.As = AMOVD
    			q.From.Type = obj.TYPE_ADDR
    			q.From.Offset = p.From.Offset
    			q.From.Reg = p.To.Reg
    			q.To.Type = obj.TYPE_REG
    			q.To.Reg = target
    			p.From.Offset = 0
    		}
    	}
    	if p.GetFrom3() != nil && p.GetFrom3().Name == obj.NAME_EXTERN {
    		c.ctxt.Diag("don't know how to handle %v with -dynlink", p)
    	}
    	var source *obj.Addr
    	// MOVD sym, Ry becomes MOVD sym@GOT, REGTMP2; MOVD (REGTMP2), Ry
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 21K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/dilated_conv.h

      // check values of `paddings` and `crops` to make sure it really stands for
      // a dilated conv.
      auto stb_paddings = stb_op.getPaddings();
      auto bts_crops = bts_op.getCrops();
      ElementsAttr stb_paddings_attr, bts_crops_attr;
      if (!matchPattern(stb_paddings, m_Constant(&stb_paddings_attr)) ||
          !matchPattern(bts_crops, m_Constant(&bts_crops_attr))) {
        return rewriter.notifyMatchFailure(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorDecoratedTest.groovy

            upperCaser(gString)
        }
    
        private upperCaser(String str) {
            str.toUpperCase()
        }
    }
    
    interface WithProperties {
        String getProp()
    }
    
    class ImplementsInterface implements WithProperties {
        String prop
    }
    
    class HasReadOnlyFinalProperty {
        final Property<String> someValue
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 22K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm/asm5.go

    		} else if p.As == ABFC { // only "BFC $width, $lsb, Reg" is accepted, p.Reg must be 0
    			c.ctxt.Diag("illegal combination: %v", p)
    		}
    		if p.GetFrom3() == nil || p.GetFrom3().Type != obj.TYPE_CONST {
    			c.ctxt.Diag("%v: missing or wrong LSB", p)
    			break
    		}
    		lsb := p.GetFrom3().Offset
    		width := p.From.Offset
    		if lsb < 0 || lsb > 31 || width <= 0 || (lsb+width) > 32 {
    			c.ctxt.Diag("%v: wrong width or LSB", p)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  8. misc/go_android_exec/main.go

    	// it to be ready. adb wait-for-device is not enough, we have to
    	// wait for sys.boot_completed.
    	if err := adb("wait-for-device", "exec-out", "while [[ -z $(getprop sys.boot_completed) ]]; do sleep 1; done;"); err != nil {
    		return 0, err
    	}
    
    	// Done once per make.bash.
    	if err := adbCopyGoroot(); err != nil {
    		return 0, err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 17:46:57 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/DefaultValueSnapshotterTest.groovy

            snapshotter.snapshot(value) == snapshotter.snapshot(isolated)
            snapshotter.snapshot(other) != snapshotter.snapshot(isolated)
        }
    
        interface BeanInterface {
            String getProp1()
    
            void setProp1(String value)
        }
    
        def "creates snapshot for managed interface"() {
            def instantiator = TestUtil.instantiatorFactory().inject()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.5K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/obj9.go

    		if p.From.Offset != 0 {
    			q := obj.Appendp(p, c.newprog)
    			q.As = AADD
    			q.From.Type = obj.TYPE_CONST
    			q.From.Offset = p.From.Offset
    			q.To = p.To
    			p.From.Offset = 0
    		}
    	}
    	if p.GetFrom3() != nil && p.GetFrom3().Name == obj.NAME_EXTERN {
    		c.ctxt.Diag("don't know how to handle %v with -dynlink", p)
    	}
    	var source *obj.Addr
    	// MOVx sym, Ry becomes MOVD sym@GOT, REGTMP; MOVx (REGTMP), Ry
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
Back to top