Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,583 for constructors (0.18 sec)

  1. test/chan/powser1.go

    func eval(c rat, U PS, n int) rat {
    	if n == 0 {
    		return zero
    	}
    	y := get(U)
    	if end(y) != 0 {
    		return zero
    	}
    	return add(y, mul(c, eval(c, U, n-1)))
    }
    
    // Power-series constructors return channels on which power
    // series flow.  They start an encapsulated generator that
    // puts the terms of the series on the channel.
    
    // Make a pair of power series identical to a given power series
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 12.7K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

            // If we are at a super-type constructor call, adjust the resolution expression so that we
            // get the constructor instead of the class.
            //
            // For the example:
            //
            // class A {
            //   constructor()
            // }
            // class B: <caret>A()
            //
            // We want to resolve to the secondary constructor in A. Therefore, we check that the caret is at a supertype
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  3. test/chan/powser2.go

    func eval(c *rat, U PS, n int) *rat {
    	if n == 0 {
    		return zero
    	}
    	y := get(U)
    	if end(y) != 0 {
    		return zero
    	}
    	return add(y, mul(c, eval(c, U, n-1)))
    }
    
    // Power-series constructors return channels on which power
    // series flow.  They start an encapsulated generator that
    // puts the terms of the series on the channel.
    
    // Make a pair of power series identical to a given power series
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 13.3K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResultTest.groovy

            def output = """
    * What went wrong:
    A problem occurred evaluating root project '4j0h2'.
    > Could not create an instance of type Thing.
       > Multiple constructors for parameters ['a', 'b']:
           1. candidate: Thing(String, String, ProjectLayout)
           2. best match: Thing(String, String, ObjectFactory)
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    It is replaced by `ComponentSelectionReason.getDescriptions` which returns a list of `ComponentSelectionDescriptor`, each having a `getDescription`.
    
    ==== Removal of domain object collection constructors
    
    The following deprecated constructors were removed:
    
    - DefaultNamedDomainObjectList(Class, Instantiator, Namer)
    - DefaultNamedDomainObjectSet(Class, Instantiator)
    - DefaultPolymorphicDomainObjectContainer(Class, Instantiator)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  6. src/database/sql/driver/driver.go

    // and can create any number of equivalent Conns for use
    // by multiple goroutines.
    //
    // A Connector can be passed to [database/sql.OpenDB], to allow drivers
    // to implement their own [database/sql.DB] constructors, or returned by
    // [DriverContext]'s OpenConnector method, to allow drivers
    // access to context and to avoid repeated parsing of driver
    // configuration.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 09:04:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper_test.go

    				}
    			} else if proxyCalledWithAuth {
    				t.Fatalf("proxy authorization unexpected, got %q", proxyCalledWithAuthHeader)
    			}
    		})
    	}
    }
    
    // Tests SpdyRoundTripper constructors
    func TestRoundTripConstuctor(t *testing.T) {
    	testCases := map[string]struct {
    		tlsConfig         *tls.Config
    		proxier           func(req *http.Request) (*url.URL, error)
    		upgradeTransport  http.RoundTripper
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 32.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    === Example: Making the difference between API and implementation
    
    [source.multi-language-sample,java]
    .src/main/java/org/gradle/HttpClientWrapper.java
    ----
    include::{snippetsPath}/java-library/quickstart/groovy/src/main/java/org/gradle/HttpClientWrapper.java[tag=sample]
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Lists.java

       * advantage of <a href="http://goo.gl/iz2Wi">"diamond" syntax</a>. (Unlike here, there is no risk
       * of overload ambiguity, since the {@code ArrayList} constructors very wisely did not accept
       * varargs.)
       *
       * @param initialArraySize the exact size of the initial backing array for the returned array list
       *     ({@code ArrayList} documentation calls this value the "capacity")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Lists.java

       * advantage of <a href="http://goo.gl/iz2Wi">"diamond" syntax</a>. (Unlike here, there is no risk
       * of overload ambiguity, since the {@code ArrayList} constructors very wisely did not accept
       * varargs.)
       *
       * @param initialArraySize the exact size of the initial backing array for the returned array list
       *     ({@code ArrayList} documentation calls this value the "capacity")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.9K bytes
    - Viewed (0)
Back to top