Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 51 for type_ (0.07 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

                plugins {
                    id("base")
                }
    
                task wrongZip(type: Zip) {
                    archiveBaseName = "wrong"
                }
                task firstZip(type: Zip) {
                    archiveBaseName = "first"
                }
                task secondZip(type: Zip) {
                    archiveBaseName = "second"
                }
    
                configurations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            then:
            thrown(InvalidUserDataException)
        }
    
        def "can define typed attributes"() {
            def conf = conf()
            def flavor = Attribute.of('flavor', Flavor) // give it a name and a type
            def buildType = Attribute.of(BuildType) // infer the name from the type
    
            when:
            conf.getAttributes().attribute(flavor, new FlavorImpl(name: 'free'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  3. src/go/types/api_test.go

    	}{
    		// void
    		{`package n0; func f() { f() }`, `f()`, `void`},
    
    		// types
    		{`package t0; type _ int`, `int`, `type`},
    		{`package t1; type _ []int`, `[]int`, `type`},
    		{`package t2; type _ func()`, `func()`, `type`},
    		{`package t3; type _ func(int)`, `int`, `type`},
    		{`package t3; type _ func(...int)`, `...int`, `type`},
    
    		// built-ins
    		{`package b0; var _ = len("")`, `len`, `builtin`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      ::testing::internal::ScopedTrace GTEST_CONCAT_TOKEN_(gtest_trace_, __LINE__)(\
        __FILE__, __LINE__, ::testing::Message() << (message))
    
    // Compile-time assertion for type equality.
    // StaticAssertTypeEq<type1, type2>() compiles iff type1 and type2 are
    // the same type.  The value it returns is not interesting.
    //
    // Instead of making StaticAssertTypeEq a class template, we make it a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    )
    
    // Message formats
    
    // A Type is a type of DNS request and response.
    type Type uint16
    
    const (
    	// ResourceHeader.Type and Question.Type
    	TypeA     Type = 1
    	TypeNS    Type = 2
    	TypeCNAME Type = 5
    	TypeSOA   Type = 6
    	TypePTR   Type = 12
    	TypeMX    Type = 15
    	TypeTXT   Type = 16
    	TypeAAAA  Type = 28
    	TypeSRV   Type = 33
    	TypeOPT   Type = 41
    
    	// Question.Type
    	TypeWKS   Type = 11
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    	NumCompiles map[types.NamespacedName]int
    }
    
    func (f *fakeCompiler) getNumCompiles(p *validating.Policy) int {
    	f.lock.Lock()
    	defer f.lock.Unlock()
    	return f.NumCompiles[types.NamespacedName{
    		Name:      p.Name,
    		Namespace: p.Namespace,
    	}]
    }
    
    func (f *fakeCompiler) RegisterDefinition(definition *validating.Policy, vf validateFunc) {
    	if f.ValidateFuncs == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

    import org.lastaflute.web.validation.RequiredValidator;
    import org.lastaflute.web.validation.theme.typed.DoubleTypeValidator;
    import org.lastaflute.web.validation.theme.typed.FloatTypeValidator;
    import org.lastaflute.web.validation.theme.typed.IntegerTypeValidator;
    import org.lastaflute.web.validation.theme.typed.LongTypeValidator;
    import org.opensearch.search.sort.SortBuilder;
    import org.opensearch.search.sort.SortBuilders;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  8. src/html/template/exec_test.go

    	{"lt true true", "", false},             // Unordered types.
    	{"lt 1+0i 1+0i", "", false},             // Unordered types.
    	{"eq .Ptr 1", "", false},                // Incompatible types.
    	{"eq .Ptr .NegOne", "", false},          // Incompatible types.
    	{"eq .Map .V1", "", false},              // Uncomparable types.
    	{"eq .NonNilMap .NonNilMap", "", false}, // Uncomparable types.
    }
    
    func TestComparison(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  9. src/text/template/exec_test.go

    	{"lt true true", "", false},             // Unordered types.
    	{"lt 1+0i 1+0i", "", false},             // Unordered types.
    	{"eq .Ptr 1", "", false},                // Incompatible types.
    	{"eq .Ptr .NegOne", "", false},          // Incompatible types.
    	{"eq .Map .V1", "", false},              // Uncomparable types.
    	{"eq .NonNilMap .NonNilMap", "", false}, // Uncomparable types.
    }
    
    func TestComparison(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  10. okhttp/api/okhttp.api

    	public final fun url ()Lokhttp3/HttpUrl;
    }
    
    public abstract interface class okhttp3/AsyncDns {
    	public static final field Companion Lokhttp3/AsyncDns$Companion;
    	public static final field TYPE_A I
    	public static final field TYPE_AAAA I
    	public abstract fun query (Ljava/lang/String;Lokhttp3/AsyncDns$Callback;)V
    }
    
    public abstract interface class okhttp3/AsyncDns$Callback {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
Back to top