Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,402 for runActions (0.3 sec)

  1. src/go/doc/testdata/f.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // The package f is a go/doc test for functions and factory methods.
    package f
    
    // ----------------------------------------------------------------------------
    // Factory functions for non-exported types must not get lost.
    
    type private struct{}
    
    // Exported must always be visible. Was issue 2824.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 486 bytes
    - Viewed (0)
  2. pkg/proxy/winkernel/hcnutils.go

    	"github.com/Microsoft/hcsshim"
    	"github.com/Microsoft/hcsshim/hcn"
    	"k8s.io/klog/v2"
    )
    
    type HcnService interface {
    	// Network functions
    	GetNetworkByName(networkName string) (*hcn.HostComputeNetwork, error)
    	GetNetworkByID(networkID string) (*hcn.HostComputeNetwork, error)
    	// Endpoint functions
    	ListEndpoints() ([]hcn.HostComputeEndpoint, error)
    	ListEndpointsOfNetwork(networkId string) ([]hcn.HostComputeEndpoint, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 03:08:46 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. src/crypto/internal/boring/doc.go

    // Package boring provides access to BoringCrypto implementation functions.
    // Check the constant Enabled to find out whether BoringCrypto is available.
    // If BoringCrypto is not available, the functions in this package all panic.
    package boring
    
    // Enabled reports whether BoringCrypto is available.
    // When enabled is false, all functions in this package panic.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 05:28:51 UTC 2023
    - 826 bytes
    - Viewed (0)
  4. pkg/controller/ttlafterfinished/config/v1alpha1/conversion.go

    )
    
    // Important! The public back-and-forth conversion functions for the types in this package
    // with TTLAfterFinishedControllerConfiguration types need to be manually exposed like this
    // in order for other packages that reference this package to be able to call these conversion
    // functions in an autogenerated manner.
    // TODO: Fix the bug in conversion-gen so it automatically discovers these Convert_* functions
    // in autogenerated code as well.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/config/v1alpha1/conversion.go

    // Important! The public back-and-forth conversion functions for the types in this package
    // with PersistentVolumeBinderControllerConfiguration types need to be manually exposed like this in order for
    // other packages that reference this package to be able to call these conversion functions
    // in an autogenerated manner.
    // TODO: Fix the bug in conversion-gen so it automatically discovers these Convert_* functions
    // in autogenerated code as well.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  6. pkg/controller/podgc/config/v1alpha1/conversion.go

    )
    
    // Important! The public back-and-forth conversion functions for the types in this package
    // with PodGCControllerConfiguration types need to be manually exposed like this in order for
    // other packages that reference this package to be able to call these conversion functions
    // in an autogenerated manner.
    // TODO: Fix the bug in conversion-gen so it automatically discovers these Convert_* functions
    // in autogenerated code as well.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 2K bytes
    - Viewed (0)
  7. pkg/controller/nodeipam/config/v1alpha1/conversion.go

    )
    
    // Important! The public back-and-forth conversion functions for the types in this package
    // with NodeIPAMControllerConfiguration types need to be manually exposed like this in order for
    // other packages that reference this package to be able to call these conversion functions
    // in an autogenerated manner.
    // TODO: Fix the bug in conversion-gen so it automatically discovers these Convert_* functions
    // in autogenerated code as well.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  8. pkg/controller/endpointslicemirroring/config/v1alpha1/conversion.go

    // Important! The public back-and-forth conversion functions for the types in
    // this package with EndpointSliceMirroringControllerConfiguratio types need to
    // be manually exposed like this in order for other packages that reference this
    // package to be able to call these conversion functions in an autogenerated
    // manner. TODO: Fix the bug in conversion-gen so it automatically discovers
    // these Convert_* functions in autogenerated code as well.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 06 19:43:33 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  9. src/go/doc/testdata/issue22856.go

    // type *T are not factory functions of type T.
    func NewSliceOfSlice() [][]T { return []T{[]T{}} }
    
    // NewPointerSliceOfSlice is not a factory function because slices of a
    // slice of type *T are not factory functions of type T.
    func NewPointerSliceOfSlice() [][]*T { return []*T{[]*T{}} }
    
    // NewSlice3 is not a factory function because 3 nested slices of type T
    // are not factory functions of type T.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 12 16:37:37 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  10. pkg/controller/validatingadmissionpolicystatus/config/v1alpha1/conversion.go

    )
    
    // Important! The public back-and-forth conversion functions for the types in this package
    // need to be manually exposed like this in order for other packages that reference
    // this package to be able to call these conversion functions in an autogenerated manner.
    // TODO: Fix the bug in conversion-gen so it automatically discovers these Convert_* functions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 20:41:50 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top