Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 470 for setters (0.46 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/signatures/KtFunctionLikeSignature.kt

    import org.jetbrains.kotlin.analysis.api.symbols.KaValueParameterSymbol
    import org.jetbrains.kotlin.analysis.api.types.KaSubstitutor
    
    /**
     * A signature of a function-like symbol. This includes functions, getters, setters, lambdas, etc.
     */
    public abstract class KaFunctionLikeSignature<out S : KaFunctionLikeSymbol> : KaCallableSignature<S>() {
        /**
         * The use-site-substituted value parameters.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1010 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/files/archives/kotlin/build.gradle.kts

    // tag::tar[]
    tasks.register<Tar>("tar") {
        from("src/dist")
        into("libs") {
            from(configurations.runtimeClasspath)
        }
    }
    // end::tar[]
    
    // TODO why can't we use properties instead of setters here?
    // when using them, we get "Cannot access 'preserveFileTimestamps': it is private in 'AbstractArchiveTask'"
    // tag::reproducible[]
    tasks.withType<AbstractArchiveTask>().configureEach {
        isPreserveFileTimestamps = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/cc_op_gen_util.cc

        strings::StrAppend(&setters, attr_comment);
        strings::StrAppend(&setters, "    TF_MUST_USE_RESULT Attrs ", attr_func_def,
                           " x) {\n");
        strings::StrAppend(&setters, "      Attrs ret = *this;\n");
        strings::StrAppend(&setters, "      ret.", api_def_attr.rename_to(),
                           "_ = x;\n");
        strings::StrAppend(&setters, "      return ret;\n    }\n\n");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 25K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/UnmanagedPropertyMissingSetterException.java

        }
    
        private static String getMessage(String propertyName) {
            return String.format(
                "unmanaged property '%s' cannot be read only, unmanaged properties must have setters",
                propertyName);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/tasks/InputFile.java

    import java.lang.annotation.Target;
    
    /**
     * <p>Marks a property as specifying an input file for a task.</p>
     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
     * Annotations on setters or just the field in Java are ignored.</p>
     *
     * <p>This will cause the task to be considered out-of-date when the file path or contents
     * have changed.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 08 06:53:54 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/tasks/Optional.java

     * value specified must meet the validation constraints for the property.</p>
     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
     * Annotations on setters or just the field in Java are ignored.</p>
     *
     * <ul> <li>{@link org.gradle.api.tasks.Input}</li>
     *
     * <li>{@link org.gradle.api.tasks.InputFile}</li>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 05 11:58:37 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/tasks/InputFiles.java

    package org.gradle.api.tasks;
    
    import java.lang.annotation.*;
    
    /**
     * <p>Marks a property as specifying the input files for a task.</p>
     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
     * Annotations on setters or just the field in Java are ignored.</p>
     *
     * <p>This will cause the task to be considered out-of-date when the file paths or contents
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  8. src/math/big/doc.go

    to the float64 argument f. More flexibility is provided with explicit
    setters, for instance:
    
    	var z1 Int
    	z1.SetUint64(123)                 // z1 := 123
    	z2 := new(Rat).SetFloat64(1.25)   // z2 := 5/4
    	z3 := new(Float).SetInt(z1)       // z3 := 123.0
    
    Setters, numeric operations and predicates are represented as methods of
    the form:
    
    	func (z *T) SetV(v V) *T          // z = v
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/tasks/LocalState.java

    import java.lang.annotation.Target;
    
    /**
     * <p>Marks a property as specifying local state for a task.</p>
     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
     * Annotations on setters or just the field in Java are ignored.</p>
     *
     * <p>Local state is removed when the task is loaded from cache.</p>
     *
     * @since 4.3
     */
    @Documented
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 05 07:18:07 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/tasks/OutputDirectories.java

    import java.lang.annotation.Target;
    
    /**
     * <p>Marks a property as specifying one or more output directories for a task.</p>
     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
     * Annotations on setters or just the field in Java are ignored.</p>
     *
     * <p>This will cause the task to be considered out-of-date when the directory paths or task
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 29 11:24:35 UTC 2018
    - 1.8K bytes
    - Viewed (0)
Back to top