Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 9,567 for Implements (0.34 sec)

  1. testing/architecture-test/src/changes/archunit-store/public-api-not-extends-internal-types.txt

    Class <org.gradle.api.DefaultTask> extends/implements org.gradle.api.internal.AbstractTask that is Gradle Internal API in (DefaultTask.java:0)
    Class <org.gradle.api.ExtensiblePolymorphicDomainObjectContainer> extends/implements org.gradle.api.internal.rules.NamedDomainObjectFactoryRegistry that is Gradle Internal API in (ExtensiblePolymorphicDomainObjectContainer.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/groovy/org/gradle/test/preconditions/UnitTestPreconditions.groovy

            @Override
            boolean isSatisfied() {
                return OperatingSystem.current().isWindows()
            }
        }
    
        static final class NotWindows implements TestPrecondition {
            @Override
            boolean isSatisfied() {
                return notSatisfied(Windows)
            }
        }
    
        static final class NotWindowsJavaBefore11 implements TestPrecondition {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/preconditions/IntegTestPreconditions.groovy

    class IntegTestPreconditions {
    
        static final class IsLongLivingProcess implements TestPrecondition {
            @Override
            boolean isSatisfied() throws Exception {
                return GradleContextualExecuter.isLongLivingProcess()
            }
        }
    
        static final class IsEmbeddedExecutor implements TestPrecondition {
            @Override
            boolean isSatisfied() throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. pkg/monitoring/disabled.go

    	name string
    }
    
    // Decrement implements Metric
    func (dm *disabledMetric) Decrement() {}
    
    // Increment implements Metric
    func (dm *disabledMetric) Increment() {}
    
    // Name implements Metric
    func (dm *disabledMetric) Name() string {
    	return dm.name
    }
    
    // Record implements Metric
    func (dm *disabledMetric) Record(value float64) {}
    
    // RecordInt implements Metric
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/api_predicates.go

    }
    
    // Implements reports whether type V implements interface T.
    //
    // The behavior of Implements is unspecified if V is Typ[Invalid] or an uninstantiated
    // generic type.
    func Implements(V Type, T *Interface) bool {
    	if T.Empty() {
    		// All types (even Typ[Invalid]) implement the empty interface.
    		return true
    	}
    	// Checker.implements suppresses errors for invalid types, so we need special
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 16:36:08 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. src/go/types/api_predicates.go

    }
    
    // Implements reports whether type V implements interface T.
    //
    // The behavior of Implements is unspecified if V is Typ[Invalid] or an uninstantiated
    // generic type.
    func Implements(V Type, T *Interface) bool {
    	if T.Empty() {
    		// All types (even Typ[Invalid]) implement the empty interface.
    		return true
    	}
    	// Checker.implements suppresses errors for invalid types, so we need special
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 16:36:08 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. internal/bucket/replication/datatypes_gen.go

    import (
    	"github.com/tinylib/msgp/msgp"
    )
    
    // DecodeMsg implements msgp.Decodable
    func (z *StatusType) DecodeMsg(dc *msgp.Reader) (err error) {
    	{
    		var zb0001 string
    		zb0001, err = dc.ReadString()
    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		(*z) = StatusType(zb0001)
    	}
    	return
    }
    
    // EncodeMsg implements msgp.Encodable
    func (z StatusType) EncodeMsg(en *msgp.Writer) (err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 19:08:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/provider/ScriptApiTest.kt

    
    class ScriptApiTest {
    
        @Test
        fun `IDE build script template implements script api`() =
            assertScriptApiOf<KotlinProjectScriptTemplate>()
    
        @Test
        fun `IDE settings script template implements script api`() =
            assertScriptApiOf<KotlinSettingsScriptTemplate>()
    
        @Test
        fun `IDE init script template implements script api`() =
            assertScriptApiOf<KotlinGradleScriptTemplate>()
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/flags.go

    package driver
    
    import (
    	"flag"
    	"strings"
    )
    
    // GoFlags implements the plugin.FlagSet interface.
    type GoFlags struct {
    	UsageMsgs []string
    }
    
    // Bool implements the plugin.FlagSet interface.
    func (*GoFlags) Bool(o string, d bool, c string) *bool {
    	return flag.Bool(o, d, c)
    }
    
    // Int implements the plugin.FlagSet interface.
    func (*GoFlags) Int(o string, d int, c string) *int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 19 21:26:10 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  10. src/math/big/intmarsh.go

    // license that can be found in the LICENSE file.
    
    // This file implements encoding/decoding of Ints.
    
    package big
    
    import (
    	"bytes"
    	"fmt"
    )
    
    // Gob codec version. Permits backward-compatible changes to the encoding.
    const intGobVersion byte = 1
    
    // GobEncode implements the [encoding/gob.GobEncoder] interface.
    func (x *Int) GobEncode() ([]byte, error) {
    	if x == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top