Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 487 for Implicits (0.18 sec)

  1. src/hash/crc32/example_test.go

    	// LSB-first representation is a hexadecimal number with n bits, in which the
    	// most significant bit represents the coefficient of x⁰ and the least significant
    	// bit represents the coefficient of xⁿ⁻¹ (the coefficient for xⁿ is implicit).
    	//
    	// For example, CRC32-Q, as defined by the following polynomial,
    	//	x³²+ x³¹+ x²⁴+ x²²+ x¹⁶+ x¹⁴+ x⁸+ x⁷+ x⁵+ x³+ x¹+ x⁰
    	// has the reversed notation 0b11010101100000101000001010000001, so the value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 04 00:19:22 UTC 2015
    - 1K bytes
    - Viewed (0)
  2. test/const8.go

    // run
    
    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that identifiers in implicit (omitted) RHS
    // expressions of constant declarations are resolved
    // in the correct context; see issues #49157, #53585.
    
    package main
    
    const X = 2
    
    func main() {
    	const (
    		A    = iota // 0
    		iota = iota // 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 28 18:11:31 UTC 2022
    - 727 bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/ImplicitInputsCapturingInstantiator.java

    /**
     * An instantiator which is responsible for allowing the capture of implicit
     * inputs provided by injected services. For this to be possible, a capturing
     * instantiator "session" must be created before the instance is created. This
     * must be done by calling the {@link #capturing(ImplicitInputRecorder)} method
     * which provides a registrar which will record implicit inputs.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 17 11:08:22 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                    // For implicit invoke, we resolve the calleeExpression of the CallExpression to the call that creates the receiver of this
                    // implicit invoke call. For example,
                    // ```
                    // fun test(f: () -> Unit) {
                    //   f() // calleeExpression `f` resolves to the local variable access, while `f()` resolves to the implicit `invoke` call.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  5. platforms/jvm/java-platform/src/test/java/org/gradle/internal/component/model/JavaEcosystemAttributeMatcherTest.groovy

         * First, attribute matching is performed against the implicit variants of each consumable configuration.
         * Then, assuming attribute matching returns a single matched configuration, Gradle will then perform
         * attribute matching against each sub-variant (including the implicit) of the matched configuration.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/ImplicitReceiver.kt

     * limitations under the License.
     */
    
    package org.gradle.kotlin.dsl.support
    
    import kotlin.reflect.KClass
    
    
    /**
     * Associates a script template with the type of its implicit receiver
     * which must match the type of the given [KotlinScriptHost.target].
     */
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 899 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/godebug_default.txt

    env GO111MODULE=on
    env GOTRACEBACK=single
    
    # Go 1.21 work module should leave panicnil with an implicit default.
    cp go.mod.21 go.mod
    go list -f '{{.Module.GoVersion}} {{.DefaultGODEBUG}}'
    ! stdout panicnil
    stdout randautoseed=0
    
    # Go 1.21 work module should NOT set panicnil=1 in Go 1.20 dependency.
    cp go.mod.21 go.mod
    go list -f '{{.Module.GoVersion}} {{.DefaultGODEBUG}}' q
    ! stdout panicnil=1
    ! stdout randautoseed
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_import_issue41113.txt

    # split-incompatible/subpkg module). modload.QueryPattern will suggest
    # split-incompatible v2.0.0+incompatible, which we cannot use (because it would
    # be an implicit downgrade), and split-incompatible/subpkg v0.1.0, which we
    # *should* use.
    
    go mod tidy
    
    go list -m all
    stdout '^example.com/split-incompatible/subpkg v0\.1\.0$'
    ! stdout '^example.com/split-incompatible .*'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 22 20:45:27 UTC 2020
    - 932 bytes
    - Viewed (0)
  9. test/interface/receiver1.go

    // errorcheck
    
    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Verify compiler complains about missing implicit methods.
    // Does not compile.
    
    package main
    
    type T int
    
    func (t T) V()
    func (t *T) P()
    
    type V interface {
    	V()
    }
    type P interface {
    	P()
    	V()
    }
    
    type S struct {
    	T
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 03 17:55:56 UTC 2020
    - 790 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_capability_conflict.adoc

    == Capability coordinates
    
    A _capability_ is defined by a `(group, module, version)` triplet.
    Each component defines an implicit capability corresponding to its GAV coordinates (group, artifact, version).
    For example, the `org.apache.commons:commons-lang3:3.8` module has an implicit capability with group `org.apache.commons`, name `commons-lang3` and version `3.8`.
    It is important to realize that capabilities are _versioned_.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top