Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 80 for getSection (0.21 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/model/ClassDoc.groovy

        def getPropertyDetailsSection() { return getSection('Property details') }
    
        Element getMethodsTable() { return methodsTable }
    
        def getMethodsSection() { return methodsSection }
    
        def getMethodDetailsSection() { return getSection('Method details') }
    
        def getBlocksTable() { return getTable('Script blocks') }
    
        def getBlockDetailsSection() { return getSection('Script block details') }
    
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 6.2K bytes
    - Viewed (0)
  2. istioctl/pkg/util/configdump/endpoint.go

    )
    
    // GetEndpointsConfigDump retrieves the listener config dump from the ConfigDump
    func (w *Wrapper) GetEndpointsConfigDump() (*admin.EndpointsConfigDump, error) {
    	endpointsDumpAny, err := w.getSection(endpoints)
    	if err != nil {
    		return nil, nil
    	}
    	endpointsDump := &admin.EndpointsConfigDump{}
    	err = endpointsDumpAny.UnmarshalTo(endpointsDump)
    	if err != nil {
    		return nil, err
    	}
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Oct 24 14:14:42 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  3. istioctl/pkg/util/configdump/util.go

    	secrets   configTypeURL = "type.googleapis.com/envoy.admin.v3.SecretsConfigDump"
    	ecds      configTypeURL = "type.googleapis.com/envoy.admin.v3.EcdsConfigDump"
    )
    
    // getSection takes a TypeURL and returns the types.Any from the config dump corresponding to that URL
    func (w *Wrapper) getSection(sectionTypeURL configTypeURL) (*anypb.Any, error) {
    	var dumpAny *anypb.Any
    	for _, conf := range w.Configs {
    		if conf.TypeUrl == string(sectionTypeURL) {
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sun Dec 24 08:16:26 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  4. istioctl/pkg/util/configdump/cluster.go

    }
    
    // GetClusterConfigDump retrieves the cluster config dump from the ConfigDump
    func (w *Wrapper) GetClusterConfigDump() (*admin.ClustersConfigDump, error) {
    	clusterDumpAny, err := w.getSection(clusters)
    	if err != nil {
    		return nil, err
    	}
    	clusterDump := &admin.ClustersConfigDump{}
    	err = clusterDumpAny.UnmarshalTo(clusterDump)
    	if err != nil {
    		return nil, err
    	}
    	return clusterDump, nil
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Nov 03 08:41:32 GMT 2022
    - 2.1K bytes
    - Viewed (0)
  5. istioctl/pkg/util/configdump/secret.go

    )
    
    // GetSecretConfigDump retrieves a secret dump from a config dump wrapper
    func (w *Wrapper) GetSecretConfigDump() (*admin.SecretsConfigDump, error) {
    	secretDumpAny, err := w.getSection(secrets)
    	if err != nil {
    		return nil, err
    	}
    	secretDump := &admin.SecretsConfigDump{}
    	err = secretDumpAny.UnmarshalTo(secretDump)
    	if err != nil {
    		return nil, err
    	}
    	return secretDump, nil
    }
    
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Feb 25 04:09:53 GMT 2023
    - 2.2K bytes
    - Viewed (0)
  6. istioctl/pkg/util/configdump/bootstrap.go

    )
    
    // GetBootstrapConfigDump retrieves the bootstrap config dump from the ConfigDump
    func (w *Wrapper) GetBootstrapConfigDump() (*admin.BootstrapConfigDump, error) {
    	bootstrapDumpAny, err := w.getSection(bootstrap)
    	if err != nil {
    		return nil, err
    	}
    	bootstrapDump := &admin.BootstrapConfigDump{}
    	err = bootstrapDumpAny.UnmarshalTo(bootstrapDump)
    	if err != nil {
    		return nil, err
    	}
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Nov 03 08:41:32 GMT 2022
    - 1.1K bytes
    - Viewed (0)
  7. istioctl/pkg/util/configdump/route.go

    }
    
    // GetRouteConfigDump retrieves the route config dump from the ConfigDump
    func (w *Wrapper) GetRouteConfigDump() (*admin.RoutesConfigDump, error) {
    	routeDumpAny, err := w.getSection(routes)
    	if err != nil {
    		return nil, err
    	}
    	routeDump := &admin.RoutesConfigDump{}
    	err = routeDumpAny.UnmarshalTo(routeDump)
    	if err != nil {
    		return nil, err
    	}
    	return routeDump, nil
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Nov 03 08:41:32 GMT 2022
    - 3.2K bytes
    - Viewed (0)
  8. istioctl/pkg/util/configdump/listener.go

    }
    
    // GetListenerConfigDump retrieves the listener config dump from the ConfigDump
    func (w *Wrapper) GetListenerConfigDump() (*admin.ListenersConfigDump, error) {
    	listenerDumpAny, err := w.getSection(listeners)
    	if err != nil {
    		return nil, err
    	}
    	listenerDump := &admin.ListenersConfigDump{}
    	err = listenerDumpAny.UnmarshalTo(listenerDump)
    	if err != nil {
    		return nil, err
    	}
    	return listenerDump, nil
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Nov 03 08:41:32 GMT 2022
    - 2.5K bytes
    - Viewed (1)
  9. src/main/java/jcifs/FileNotifyInformation.java

         * The operating system detects a change in file size only when the file is written to the disk. For operating
         * systems that use extensive caching, detection occurs only when the cache is sufficiently flushed.s
         */
        public static final int FILE_NOTIFY_CHANGE_SIZE = 0x00000008;
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.9K bytes
    - Viewed (0)
  10. cmd/leak-detect_test.go

    	"strings"
    	"time"
    )
    
    const (
    	// deadline (in seconds) up to which the go routine leak detection has to be retried.
    	leakDetectDeadline = 5
    	// pause time (in milliseconds) between each snapshot at the end of the go routine leak detection.
    	leakDetectPauseTimeMs = 50
    )
    
    // LeakDetect - type with  methods for go routine leak detection.
    type LeakDetect struct {
    	relevantRoutines map[string]bool
    }
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 5.2K bytes
    - Viewed (0)
Back to top