Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 57 for setchr (0.13 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFileHelper.groovy

            if (readOnly) {
                ArchiveFileSet archiveFileSet = archiveTask instanceof Zip ? new ZipFileSet() : archiveTask.createTarFileSet()
                archiveFileSet.setDir(file)
                archiveFileSet.setFileMode("0444")
                archiveFileSet.setDirMode("0555")
                archiveTask.add(archiveFileSet)
            } else {
                archiveTask.setBasedir(file)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. test/escape_reflect.go

    	return v.Cap()
    }
    
    func setlen(x *[]int, n int) { // ERROR "x does not escape"
    	v := reflect.ValueOf(x).Elem()
    	v.SetLen(n)
    }
    
    func setcap(x *[]int, n int) { // ERROR "x does not escape"
    	v := reflect.ValueOf(x).Elem()
    	v.SetCap(n)
    }
    
    // Unfortunate: x doesn't need to escape to heap, just to result.
    func slice1(x []byte) []byte { // ERROR "leaking param: x$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/BeanDynamicObject.java

                                }
                            } else {
                                // Coerce the value to the type accepted by the property setter and invoke the setter directly
                                Class setterType = metaBeanProperty.getSetter().getParameterTypes()[0].getTheClass();
                                value = propertySetTransformer.transformValue(setterType, value);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GeneratePrecompiledScriptPluginAccessors.kt

            val previousErr = System.err
            try {
                System.setOut(outCapture)
                System.setErr(errCapture)
                block()
            } finally {
                System.out.flush()
                System.setOut(previousOut)
                outCapture.stop()
                System.err.flush()
                System.setErr(previousErr)
                errCapture.stop()
            }
        } catch (error: Throwable) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/beans/impl/PropertyDescImplTest.java

            /**
             * @return Timestamp
             */
            public Timestamp getHhh() {
                return hhh_;
            }
    
            /**
             * @param hhh
             */
            public void setHhh(final Timestamp hhh) {
                hhh_ = hhh;
            }
    
            /**
             * @param iii
             */
            public void setIii(final String iii) {
            }
    
            /**
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/core/beans/util/BeanUtilTest.java

        /**
         * @throws Exception
         */
        @Test
        public void testCopy_BeanToBean() throws Exception {
            final MyClass src = new MyClass();
            src.setAaa("111");
            src.setCcc("333");
    
            final MyClass2 dest = new MyClass2();
            dest.setAaa("aaa");
            dest.setBbb("bbb");
            dest.setDdd("ddd");
    
            BeanUtil.copyBeanToBean(src, dest);
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/ppc64_p10.s

    	PSTXVP VS2, $1, 12345678(R2)            // 041000bcf842614e
    	PSTXVP VS62, $0, 5555555(R3)            // 04000054fbe3c563
    	SETBC CR2EQ, R2                         // 7c4a0300
    	SETBCR CR2LT, R2                        // 7c480340
    	SETNBC CR2GT, R2                        // 7c490380
    	SETNBCR CR6SO, R2                       // 7c5b03c0
    	STXVP VS6, 12352(R5)                    // 18c53041
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 23 20:52:57 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    To fix this problem, you must remove the annotation, create a getter for the property you want to use and annotate the getter instead.
    
    [[mutable_type_with_setter]]
    == Mutable type with setter
    
    This error indicates that a property of "mutable" type is also providing a setter.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  9. build/dependencies.yaml

          match: registry.k8s.io\/pause:\d+\.\d+
        - path: test/utils/image/manifest.go
          match: configs\[Pause\] = Config{list\.GcRegistry, "pause", "\d+\.\d+(.\d+)?"}
    
      - name: "registry.k8s.io/build-image/setcap: dependents"
        version: bookworm-v1.0.3
        refPaths:
        - path: build/common.sh
          match: __default_setcap_version=
    
      # cadvisor
      - name: "gcr.io/cadvisor/cadvisor: dependents"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalInputsIntegrationTest.groovy

                    }
                }
    
                task copy(type: MyCopy) {
                    inputDirectory = file("input")
                    nonIncrementalInput = file("nonIncremental.txt")
                    outputDirectory.${setter}(file("build/output"))
                }
            """
            def inputFilePath = "in/some/input.txt"
            def nonIncrementalInput = file("nonIncremental.txt")
            nonIncrementalInput.text = "original"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 23 12:52:29 UTC 2022
    - 27.8K bytes
    - Viewed (0)
Back to top