Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 957 for methods_ (0.29 sec)

  1. guava/src/com/google/common/collect/ForwardingMap.java

     * provided {@code standardPutAll} method.
     *
     * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code
     * default} methods. Instead, it inherits their default implementations. When those implementations
     * invoke methods, they invoke methods on the {@code ForwardingMap}.
     *
     * <p>Each of the {@code standard} methods, where appropriate, use {@link Objects#equal} to test
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/api/groovy_build_script_primer.adoc

    println 'Hello, World!'
    ----
    
    A method represents some behavior of an object, although Gradle often uses methods to configure the state of objects as well. Methods are identifiable by their arguments or empty parentheses. Note that parentheses are sometimes required, such as when a method has zero arguments, so you may find it simplest to always use parentheses.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. src/cmd/doc/pkg.go

    		if found {
    			pkg.Printf("type %s ", spec.Name)
    			inter.Methods.List, methods = methods, inter.Methods.List
    			err := format.Node(&pkg.buf, pkg.fs, inter)
    			if err != nil {
    				log.Fatal(err)
    			}
    			pkg.newlines(1)
    			// Restore the original methods.
    			inter.Methods.List = methods
    		}
    	}
    	return found
    }
    
    // printFieldDoc prints the docs for matches of symbol.fieldName.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 20:15:52 UTC 2024
    - 32K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types/size.go

    		}
    		methods = append(methods, m)
    	}
    
    	{
    		methods := t.Methods()
    		sort.SliceStable(methods, func(i, j int) bool {
    			mi, mj := methods[i], methods[j]
    
    			// Sort embedded types by type name (if any).
    			if mi.Sym == nil && mj.Sym == nil {
    				return mi.Type.Sym().Less(mj.Type.Sym())
    			}
    
    			// Sort methods before embedded types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/InterfaceBackedManagedTypeIntegrationTest.groovy

            and:
            failure.assertHasCause """Type Person is not a valid managed type:
    - Property 'name' is not valid: it must have either only abstract accessor methods or only implemented accessor methods"""
        }
    
        def "non-mutative non-abstract methods implemented as default interface methods are not allowed"() {
            when:
            file('buildSrc/src/main/java/Rules.java') << '''
                import org.gradle.api.*;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/codegen.cc

    // XlaCompiledCpuFunction class with statically type-safe arg and result
    // methods. Usage example:
    //
    //   {{CLASS}} computation;
    //   // ...set args using computation.argN methods
    //   CHECK(computation.Run());
    //   // ...inspect results using computation.resultN methods
    //
    // The Run method invokes the actual computation, with inputs read from arg
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/aot/codegen_test_h.golden

    // XlaCompiledCpuFunction class with statically type-safe arg and result
    // methods. Usage example:
    //
    //   MyClass computation;
    //   // ...set args using computation.argN methods
    //   CHECK(computation.Run());
    //   // ...inspect results using computation.resultN methods
    //
    // The Run method invokes the actual computation, with inputs read from arg
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/testing/ClassSanityTester.java

       *       {@code cls}, no test is performed.
       *   <li>Equality test is not performed on method return values unless the method is a non-private
       *       static factory method whose return type is {@code cls} or {@code cls}'s subtype.
       *   <li>Inequality check is not performed against state mutation methods such as {@link
       *       List#add}, or functional update methods such as {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

       *       {@code cls}, no test is performed.
       *   <li>Equality test is not performed on method return values unless the method is a non-private
       *       static factory method whose return type is {@code cls} or {@code cls}'s subtype.
       *   <li>Inequality check is not performed against state mutation methods such as {@link
       *       List#add}, or functional update methods such as {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/binding/DefaultStructBindingsStore.java

                }
            }
        }
    
        // Groovy3 introduced default methods on GroovyObject that the model objects inhert, skip these
        private static boolean isAcceptable(Method method) {
            return method.getDeclaringClass() == GroovyObject.class;
        }
    
        // Copied from Method.isDefault()
        private static boolean isDefaultInterfaceMethod(Method method) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 29.7K bytes
    - Viewed (0)
Back to top