Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 97 for setters (0.42 sec)

  1. src/strconv/itoa.go

    package strconv
    
    import "math/bits"
    
    const fastSmalls = true // enable fast path for small integers
    
    // FormatUint returns the string representation of i in the given base,
    // for 2 <= base <= 36. The result uses the lower-case letters 'a' to 'z'
    // for digit values >= 10.
    func FormatUint(i uint64, base int) string {
    	if fastSmalls && i < nSmalls && base == 10 {
    		return small(int(i))
    	}
    	_, s := formatBits(nil, i, base, false, false)
    	return s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/KnownProblemIds.groovy

            'validation:property-validation:nested-type-unsupported' : 'Nested type unsupported',
            'validation:property-validation:mutable-type-with-setter' : 'Mutable type with setter',
            'validation:property-validation:private-getter-must-not-be-annotated' : 'Private property with wrong annotation',
            'validation:property-validation:unexpected-input-file-type' : 'Unexpected input file type',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. src/regexp/syntax/prog.go

    // during the evaluation of the \b and \B zero-width assertions.
    // These assertions are ASCII-only: the word characters are [A-Za-z0-9_].
    func IsWordChar(r rune) bool {
    	// Test for lowercase letters first, as these occur more
    	// frequently than uppercase letters in common cases.
    	return 'a' <= r && r <= 'z' || 'A' <= r && r <= 'Z' || '0' <= r && r <= '9' || r == '_'
    }
    
    // An Inst is a single instruction in a regular expression program.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/TestReport.java

    import static org.gradle.internal.concurrent.CompositeStoppable.stoppable;
    import static org.gradle.internal.instrumentation.api.annotations.ReplacedAccessor.AccessorType.GETTER;
    import static org.gradle.internal.instrumentation.api.annotations.ReplacedAccessor.AccessorType.SETTER;
    import static org.gradle.internal.instrumentation.api.annotations.ReplacesEagerProperty.BinaryCompatibility.ACCESSORS_KEPT;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/results/DefaultVisitedGraphResultsTest.groovy

            visitFailures(results1) == []
            visitFailures(results2) == [throwable]
            visitFailures(results3) == [resolveEx]
            visitFailures(results4) == [throwable, resolveEx]
        }
    
        def "getters return the values passed to the constructor"() {
            given:
            def resolveEx = Mock(ResolveException)
            def unresolved = Mock(UnresolvedDependency)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. src/os/types.go

    // The values of these bits should be considered part of the public API and
    // may be used in wire protocols or disk representations: they must not be
    // changed, although new bits might be added.
    const (
    	// The single letters are the abbreviations
    	// used by the String method's formatting.
    	ModeDir        = fs.ModeDir        // d: is a directory
    	ModeAppend     = fs.ModeAppend     // a: append-only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/componentconfigs/kubelet_windows.go

    	// nodes, it would contain absolute paths that may lack drive letters, since the config
    	// could have been generated on a Linux control-plane node. On Windows the
    	// Golang filepath.IsAbs() function returns false unless the path contains a drive letter.
    	// This trips client-go and the kubelet, creating problems on Windows nodes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 10:26:46 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/annotations/ReplacesEagerProperty.java

         * ListProperty[T] -> original type becomes List[T]
         * ConfigurableFileCollection -> original type becomes FileCollection
         */
        Class<?> originalType() default DefaultValue.class;
    
        /**
         * Whether the setter accessor for property was fluent
         */
        boolean fluentSetter() default false;
    
        /**
         * Configuration for binary compatibility check, see {@link BinaryCompatibility}
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. src/strconv/atoi.go

    package strconv
    
    import (
    	"errors"
    	"internal/stringslite"
    )
    
    // lower(c) is a lower-case letter if and only if
    // c is either that lower-case letter or the equivalent upper-case letter.
    // Instead of writing c == 'x' || c == 'X' one can write lower(c) == 'x'.
    // Note that lower of non-letters can produce other non-letters.
    func lower(c byte) byte {
    	return c | ('x' - 'X')
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:26 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirPropertyGetterSymbol.kt

        override val annotations by cached {
            KaFirAnnotationListForDeclaration.create(firSymbol, builder)
        }
    
        /**
         * Returns [CallableId] of the delegated Java method if the corresponding property of this setter is a synthetic Java property.
         * Otherwise, returns `null`
         */
        override val callableId: CallableId? by cached {
            val fir = firSymbol.fir
            if (fir is FirSyntheticPropertyAccessor) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top