Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 203 for method1 (0.15 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    ====
    
    One other thing to note is that properties like `source` have corresponding methods in core Gradle tasks.
    Those methods follow the convention of _appending_ to collections of values rather than replacing them.
    Again, this method accepts any of the types supported by the <<#sec:file_collections,files()>> method, as shown here:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  2. src/go/types/api_test.go

    	}
    
    	// V0 has method m with correct signature. Should not report wrongType.
    	method, wrongType := lookup("V0")
    	if method != nil || wrongType {
    		t.Fatalf("V0: got method = %v, wrongType = %v", method, wrongType)
    	}
    
    	checkMissingMethod := func(tname string, reportWrongType bool) {
    		method, wrongType := lookup(tname)
    		if method == nil || method.Name() != "m" || wrongType != reportWrongType {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    The following methods on `BuildIdentifier` are deprecated:
    
    - `getName()`
    - `isCurrentBuild()`
    
    You could use these methods to distinguish between different project components with the same name but from different builds.
    However, for certain composite build setups, these methods do not provide enough information to guarantee uniqueness.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  4. src/net/http/request.go

    // ContentLength is 0.
    func NewRequestWithContext(ctx context.Context, method, url string, body io.Reader) (*Request, error) {
    	if method == "" {
    		// We document that "" means "GET" for Request.Method, and people have
    		// relied on that from NewRequest, so keep that working.
    		// We still enforce validMethod for non-empty methods.
    		method = "GET"
    	}
    	if !validMethod(method) {
    		return nil, fmt.Errorf("net/http: invalid method %q", method)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

          }
        }
        return rValue;
      }
    
      /**
       * Subclasses can override this method to implement interruption of the future's computation. The
       * method is invoked automatically by a successful call to {@link #cancel(boolean) cancel(true)}.
       *
       * <p>The default implementation does nothing.
       *
       * <p>This method is likely to be deprecated. Prefer to override {@link #afterDone}, consulting
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  6. guava/src/com/google/common/util/concurrent/AbstractFuture.java

          }
        }
        return rValue;
      }
    
      /**
       * Subclasses can override this method to implement interruption of the future's computation. The
       * method is invoked automatically by a successful call to {@link #cancel(boolean) cancel(true)}.
       *
       * <p>The default implementation does nothing.
       *
       * <p>This method is likely to be deprecated. Prefer to override {@link #afterDone}, checking
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  7. android/guava/src/com/google/common/collect/Iterators.java

       * consistent. For example, this method <i>might</i> choose to pass through recognized
       * implementations of {@code PeekingIterator} when the behavior of the implementation is known to
       * meet the contract guaranteed by this method.
       *
       * <p>There is no {@link Iterable} equivalent to this method, so use this method to wrap each
       * individual iterator as it is generated.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Iterators.java

       * consistent. For example, this method <i>might</i> choose to pass through recognized
       * implementations of {@code PeekingIterator} when the behavior of the implementation is known to
       * meet the contract guaranteed by this method.
       *
       * <p>There is no {@link Iterable} equivalent to this method, so use this method to wrap each
       * individual iterator as it is generated.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    <2> The `GroovyObject` API is available
    <3> Invoke the `methodName` method, passing some parameters
    <4> Configure the `blockName` property, maps to a `Closure` taking method invocation
    <5> Invoke `another` method taking named arguments, maps to a Groovy named arguments `Map<String, ?>` taking method invocation
    
    [[using_a_groovy_script]]
    === Using a Groovy script
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    [[testNgParameterizedReporting]]
    === TestNG parameterized methods and reporting
    
    TestNG supports http://testng.org/doc/documentation-main.html#parameters[parameterizing test methods], allowing a particular test method to be executed multiple times with different inputs. Gradle includes the parameter values in its reporting of the test method execution.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
Back to top