Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 89 for isGetter (0.24 sec)

  1. src/cmd/vendor/rsc.io/markdown/link.go

    	//	characters, space, <, and >. If the URI includes these characters,
    	//	they must be percent-encoded (e.g. %20 for a space).
    
    	j := i
    	if j+1 >= len(s) || s[j] != '<' || !isLetter(s[j+1]) {
    		return nil, 0, false
    	}
    	j++
    	for j < len(s) && isScheme(s[j]) && j-(i+1) <= 32 {
    		j++
    	}
    	if j-(i+1) < 2 || j-(i+1) > 32 || j >= len(s) || s[j] != ':' {
    		return nil, 0, false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/DeclarativeReflectionToObjectConverter.kt

            when (val property = propertyResolver.resolvePropertyWrite(receiverKClass, dataProperty.name)) {
                is RuntimePropertyResolver.WriteResolution.ResolvedWrite -> property.setter.setValue(receiverInstance, value)
                RuntimePropertyResolver.WriteResolution.UnresolvedWrite -> error("cannot set property ${dataProperty.name} in the receiver class $receiverKClass")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/options/OptionReaderTest.groovy

        }
    
        def "throws decent error when private field is annotated as option and no setter declared"() {
            when:
            TaskOptionsGenerator.generate(new TestClass10(), reader).getAll()
            then:
            def e = thrown(OptionValidationException)
            e.message == "No setter for Option annotated field 'field' in class 'class org.gradle.api.internal.tasks.options.OptionReaderTest\$TestClass10'."
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 12:45:01 UTC 2023
    - 33.4K bytes
    - Viewed (0)
  4. internal/event/target/postgresql.go

    		return err
    	} else if match {
    		return nil
    	}
    
    	// normalize the name to letters, digits, _ or $
    	valid := true
    	cleaned := strings.Map(func(r rune) rune {
    		switch {
    		case unicode.IsLetter(r):
    			return 'a'
    		case unicode.IsDigit(r):
    			return '0'
    		case r == '_', r == '$':
    			return r
    		default:
    			valid = false
    			return -1
    		}
    	}, name)
    
    	if valid {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

        if (isWindows()) {
          return; // TODO: b/136041958 - Running very slowly on Windows CI.
        }
        final CyclicBarrier barrier =
            new CyclicBarrier(
                6 // for the setter threads
                    + 50 // for the listeners
                    + 50 // for the blocking get threads,
                    + 1); // for the main thread
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

                invalidPropertyNames.add(propertyName);
            } else {
                propDesc.setReadMethod(readMethod);
            }
        }
    
        /**
         * setterメソッドを準備します。
         *
         * @param writeMethod
         *            setterメソッド
         * @param propertyName
         *            プロパティ名
         */
        protected void setupWriteMethod(final Method writeMethod, final String propertyName) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessor.java

            }
            testNg.addListener((Object) adaptListener(new TestNGTestResultProcessorAdapter(resultProcessor, idGenerator, clock)));
            testNg.run();
        }
    
        /**
         * The setter for {@code configFailurePolicy} has a different signature depending on TestNG version.
         * This method uses reflection to detect the API and calls the version with the correct signature.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 21:25:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/initialization/MixInLegacyTypesClassLoader.java

                    if (accessorType != null) {
                        String propertyName = accessorType.propertyNameFor(name);
                        if (accessorType == PropertyAccessorType.IS_GETTER) {
                            booleanIsGetters.add(propertyName);
                        } else if (accessorType == PropertyAccessorType.GET_GETTER) {
                            booleanGetGetters.add(propertyName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top