Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for nInterface (0.13 sec)

  1. src/go/internal/gccgoimporter/testdata/nointerface.gox

    v3;
    package nointerface
    pkgpath nointerface
    types 3 2 133 17
    type 1 "I" <type -11>
     func /*nointerface*/ (p <esc:0x1> <type 2>) Get () <type -11>
     func (p <esc:0x1> <type 2>) Set (v <type -11>)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 04 15:52:48 UTC 2018
    - 211 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/promise/interface.go

    // be set once and is readable.  This is the common meaning for
    // "promise".
    type WriteOnce interface {
    	// Get reads the current value of this variable.  If this
    	// variable is not set yet then this call blocks until this
    	// variable gets a value.
    	Get() interface{}
    
    	// Set normally writes a value into this variable, unblocks every
    	// goroutine waiting for this variable to have a value, and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 10 14:37:53 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  3. testing/architecture-test/src/test/java/org/gradlebuild/Interface.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradlebuild;
    
    public interface Interface {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 675 bytes
    - Viewed (0)
  4. pkg/printers/interface.go

    limitations under the License.
    */
    
    package printers
    
    import (
    	"io"
    
    	"k8s.io/apimachinery/pkg/runtime"
    )
    
    // ResourcePrinter is an interface that knows how to print runtime objects.
    type ResourcePrinter interface {
    	// Print receives a runtime object, formats it and prints it to a writer.
    	PrintObj(runtime.Object, io.Writer) error
    }
    
    // ResourcePrinterFunc is a function that can print objects
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 23 06:45:08 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/interface.go

    // NumEmbeddeds returns the number of embedded types in interface t.
    func (t *Interface) NumEmbeddeds() int { return len(t.embeddeds) }
    
    // EmbeddedType returns the i'th embedded type of interface t for 0 <= i < t.NumEmbeddeds().
    func (t *Interface) EmbeddedType(i int) Type { return t.embeddeds[i] }
    
    // NumMethods returns the total number of methods of interface t.
    func (t *Interface) NumMethods() int { return t.typeSet().NumMethods() }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. 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)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/client/informers/externalversions/apiextensions/interface.go

    )
    
    // Interface provides access to each of this group's versions.
    type Interface interface {
    	// V1 provides access to shared informers for resources in V1.
    	V1() v1.Interface
    	// V1beta1 provides access to shared informers for resources in V1beta1.
    	V1beta1() v1beta1.Interface
    }
    
    type group struct {
    	factory          internalinterfaces.SharedInformerFactory
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 21:36:26 UTC 2023
    - 1.9K 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. staging/src/k8s.io/apiextensions-apiserver/pkg/client/informers/externalversions/apiextensions/v1beta1/interface.go

    package v1beta1
    
    import (
    	internalinterfaces "k8s.io/apiextensions-apiserver/pkg/client/informers/externalversions/internalinterfaces"
    )
    
    // Interface provides access to all the informers in this group version.
    type Interface interface {
    	// CustomResourceDefinitions returns a CustomResourceDefinitionInformer.
    	CustomResourceDefinitions() CustomResourceDefinitionInformer
    }
    
    type version struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 08 09:52:48 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/interface.go

    // otherwise the default implementation will be used, which is less efficient in requeueing Pods rejected by the plugin.
    // And, if plugins other than above extension points support this interface, they are just ignored.
    type EnqueueExtensions interface {
    	Plugin
    	// EventsToRegister returns a series of possible events that may cause a Pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
Back to top