Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for formmethod (0.34 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/rule/describe/AbstractModelRuleDescriptor.java

     * limitations under the License.
     */
    
    package org.gradle.model.internal.core.rule.describe;
    
    import javax.annotation.concurrent.ThreadSafe;
    
    import com.google.errorprone.annotations.FormatMethod;
    import com.google.errorprone.annotations.FormatString;
    import org.gradle.api.internal.cache.StringInterner;
    
    @ThreadSafe
    abstract class AbstractModelRuleDescriptor implements ModelRuleDescriptor {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:38:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/rule/describe/ModelRuleDescriptor.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model.internal.core.rule.describe;
    
    import com.google.errorprone.annotations.FormatMethod;
    import com.google.errorprone.annotations.FormatString;
    
    /**
     * Describes a method rule.
     * All implementations of this class are expected to implement the equals and hashCode method
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:38:02 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DescriptiveChange.java

     * limitations under the License.
     */
    
    package org.gradle.internal.execution.history.changes;
    
    import com.google.errorprone.annotations.FormatMethod;
    
    import java.util.Objects;
    
    public class DescriptiveChange implements Change {
        private final String message;
    
        @FormatMethod
        public DescriptiveChange(String message, Object... params) {
            this.message = String.format(message, params);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/AbstractStyledTextOutput.java

            return this;
        }
    
        @FormatMethod
        @Override
        public StyledTextOutput format(String pattern, Object... args) {
            text(String.format(pattern, args));
            return this;
        }
    
        @Override
        public StyledTextOutput println(Object text) {
            text(text);
            println();
            return this;
        }
    
        @FormatMethod
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/testinggoroutine/testinggoroutine.go

    			}
    			x, sel, fn := forbiddenMethod(pass.TypesInfo, call)
    			if x == nil {
    				return true
    			}
    
    			for _, e := range asyncs[region] {
    				if !withinScope(e.scope, x) {
    					forbidden := formatMethod(sel, fn) // e.g. "(*testing.T).Forbidden
    
    					var context string
    					var where analysis.Range = e.async // Put the report at the go fun() or t.Run(name, fun).
    					if _, local := e.fun.(*ast.FuncLit); local {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top