Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for interface2 (0.29 sec)

  1. build-logic/documentation/src/test/resources/org/gradle/test/Interface2.java

    package org.gradle.test;
    
    public interface Interface2 {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 59 bytes
    - Viewed (0)
  2. build-logic/documentation/src/test/resources/org/gradle/test/JavaInterface.java

    package org.gradle.test;
    
    public interface JavaInterface extends Interface1, Interface2 {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 92 bytes
    - Viewed (0)
  3. build-logic/documentation/src/test/resources/org/gradle/test/CombinedInterface.java

    package org.gradle.test;
    
    public interface CombinedInterface extends Interface1, Interface2 {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 96 bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

            interfaceMap);
      }
    
      private interface Interface1 {}
    
      private interface Interface2 {}
    
      private interface Interface3<T> extends Iterable<T> {}
    
      private interface Interface12 extends Interface1, Interface2 {}
    
      private static class Class1 implements Interface1 {}
    
      private static final class NoInterface {}
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

            interfaceMap);
      }
    
      private interface Interface1 {}
    
      private interface Interface2 {}
    
      private interface Interface3<T> extends Iterable<T> {}
    
      private interface Interface12 extends Interface1, Interface2 {}
    
      private static class Class1 implements Interface1 {}
    
      private static final class NoInterface {}
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  6. test/escape_reflect.go

    func interface1(x any) any { // ERROR "leaking param: x$"
    	v := reflect.ValueOf(x)
    	return v.Interface()
    }
    
    func interface2(x int) any {
    	v := reflect.ValueOf(x) // ERROR "x escapes to heap"
    	return v.Interface()
    }
    
    // Unfortunate: should not escape.
    func interface3(x int) int {
    	v := reflect.ValueOf(x) // ERROR "x escapes to heap"
    	return v.Interface().(int)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  7. src/go/types/interface.go

    func (t *Interface) Method(i int) *Func { return t.typeSet().Method(i) }
    
    // Empty reports whether t is the empty interface.
    func (t *Interface) Empty() bool { return t.typeSet().IsAll() }
    
    // IsComparable reports whether each type in interface t's type set is comparable.
    func (t *Interface) IsComparable() bool { return t.typeSet().IsComparable(nil) }
    
    // IsMethodSet reports whether the interface t is fully described by its method
    // set.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/net/interface.go

    }
    
    // networkInterfacer defines an interface for several net library functions. Production
    // code will forward to net library functions, and unit tests will override the methods
    // for testing purposes.
    type networkInterfacer interface {
    	InterfaceByName(intfName string) (*net.Interface, error)
    	Addrs(intf *net.Interface) ([]net.Addr, error)
    	Interfaces() ([]net.Interface, error)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 27 07:07:03 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  9. src/net/interface.go

    	FlagBroadcast                      // interface supports broadcast access capability
    	FlagLoopback                       // interface is a loopback interface
    	FlagPointToPoint                   // interface belongs to a point-to-point link
    	FlagMulticast                      // interface supports multicast access capability
    	FlagRunning                        // interface is in running state
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/authentication/authenticator/interfaces.go

    // returns a Response or an error if the token could not be checked.
    type Token interface {
    	AuthenticateToken(ctx context.Context, token string) (*Response, bool, error)
    }
    
    // Request attempts to extract authentication information from a request and
    // returns a Response or an error if the request could not be checked.
    type Request interface {
    	AuthenticateRequest(req *http.Request) (*Response, bool, error)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 12 00:55:47 UTC 2020
    - 2.3K bytes
    - Viewed (0)
Back to top