Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 408 for setters (0.17 sec)

  1. src/cmd/vendor/golang.org/x/mod/module/module.go

    // are three distinct runes that case-fold to each other.
    // When we do add Unicode letters, we must not assume that upper/lower
    // are the only case-equivalent pairs.
    // Perhaps the Kelvin symbol would be disallowed entirely, for example.
    // Or perhaps it would escape as "!!k", or perhaps as "(212A)".
    //
    // Second, it would be nice to allow Unicode marks as well as letters,
    // but marks include combining marks, and then we must deal not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/cases/info.go

    //    Other.
    //    These categories should always result in a break between two cased letters.
    //    Rule: Always break.
    //
    // Note 1: the Katakana and MidNum categories can, in esoteric cases, result in
    // preventing a break between two cased letters. For now we will ignore this
    // (e.g. [ALetter] [ExtendNumLet] [Katakana] [ExtendNumLet] [ALetter] and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/symbols/pointers/KtValueParameterFromDefaultSetterSymbolPointer.kt

        override fun restoreSymbol(analysisSession: KaSession): KaValueParameterSymbol? {
            val ownerSymbol = with(analysisSession) {
                ownerPointer.restoreSymbol()
            }
    
            return ownerSymbol?.setter?.parameter
        }
    
        override fun pointsToTheSameSymbolAs(other: KaSymbolPointer<KaSymbol>): Boolean = this === other ||
                other is KaValueParameterFromDefaultSetterSymbolPointer &&
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CredentialsProviderFactoryTest.groovy

        def factory = new CredentialsProviderFactory(providerFactory)
    
        def "does not allow non-letters and non-digits for identity"() {
            when:
            factory.provide(PasswordCredentials, (String) identity)
    
            then:
            def e = thrown(IllegalArgumentException)
            e.message == "Identity may contain only letters and digits, received: $identity"
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  5. doc/next/6-stdlib/99-minor/path/filepath/63703.md

    This behavior is controlled by the `winsymlink` setting.
    For Go 1.23, it defaults to `winsymlink=1`.
    Previous versions default to `winsymlink=0`.
    
    On Windows, [EvalSymlinks] no longer tries to normalize
    volumes to drive letters, which was not always even possible.
    This behavior is controlled by the `winreadlinkvolume` setting.
    For Go 1.23, it defaults to `winreadlinkvolume=1`.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 545 bytes
    - Viewed (0)
  6. src/unicode/graphic.go

    	pZ                 // a spacing character.
    	pLu                // an upper-case letter.
    	pLl                // a lower-case letter.
    	pp                 // a printable character according to Go's definition.
    	pg     = pp | pZ   // a graphical character according to the Unicode definition.
    	pLo    = pLl | pLu // a letter that is neither upper nor lower case.
    	pLmask = pLo
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/query/WildcardQueryCommand.java

            if (isSearchField(field)) {
                final String text = wildcardQuery.getTerm().text();
                context.addFieldLog(field, text);
                context.addHighlightedQuery(StringUtils.strip(text, "*"));
                return QueryBuilders.wildcardQuery(field, toLowercaseWildcard(text)).boost(boost);
            }
    
            final String query = wildcardQuery.getTerm().toString();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/InvalidManagedModelRuleIntegrationTest.groovy

                    @Model
                    void createPerson(Person person) throws NoSuchMethodException, IllegalAccessException, InvocationTargetException {
                        Method setter = person.getClass().getMethod("setName", String.class);
                        setter.invoke(person, 123);
                    }
    
                    @Mutate
                    void addDependencyOnPerson(ModelMap<Task> tasks, Person person) {
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/tutorial/groovy/groovy/build.gradle

    // tag::groovyJdk[]
    // Iterable gets an each() method
    configurations.runtimeClasspath.each { File f -> println f }
    // end::groovyJdk[]
    
    // tag::propertyAccessors[]
    // Using a getter method
    println project.buildDir
    println getProject().getBuildDir()
    
    // Using a setter method
    project.buildDir = 'target'
    getProject().setBuildDir('target')
    // end::propertyAccessors[]
    
    // tag::methodCallWithoutParentheses[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java

            return readMethod != null;
        }
    
        @Override
        public final Method getWriteMethod() {
            return writeMethod;
        }
    
        /**
         * setterメソッドを設定します。
         *
         * @param writeMethod
         *            setterメソッド
         */
        protected final void setWriteMethod(final Method writeMethod) {
            this.writeMethod = writeMethod;
            if (writeMethod != null) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top