Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 201 for keyId (0.04 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/composite/composite.go

    )
    
    const Doc = `check for unkeyed composite literals
    
    This analyzer reports a diagnostic for composite literals of struct
    types imported from another package that do not use the field-keyed
    syntax. Such literals are fragile because the addition of a new field
    (even if unexported) to the struct will cause compilation to fail.
    
    As an example,
    
    	err = &net.DNSConfigError{err}
    
    should be replaced by:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/extension/wasmplugin.go

    	// critical for security (e.g. authn/authz)
    	InitialFetchTimeout: &durationpb.Duration{Seconds: 0},
    }
    
    // PopAppendHTTP takes a list of filters and a set of WASM plugins, keyed by phase. It will remove all
    // plugins of a provided phase from the WASM plugin set and append them to the list of filters
    func PopAppendHTTP(list []*hcm.HttpFilter,
    	filterMap map[extensions.PluginPhase][]*model.WasmPluginWrapper,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/plugins/ExtensionContainerInternal.java

    import java.util.Map;
    
    public interface ExtensionContainerInternal extends ExtensionContainer {
        /**
         * Provides access to all known extensions.
         * @return A map of extensions, keyed by name.
         */
        Map<String, Object> getAsMap();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 959 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/common/maplist.go

    func (emptyMapList) Get(interface{}) interface{} {
    	return nil
    }
    
    type mapListImpl struct {
    	sts Schema
    	ks  keyStrategy
    	// keyedItems contains all lazily keyed map items
    	keyedItems map[interface{}]interface{}
    	// unkeyedItems contains all map items that have not yet been keyed
    	unkeyedItems []interface{}
    }
    
    func (a *mapListImpl) Get(obj interface{}) interface{} {
    	mobj, ok := obj.(map[string]interface{})
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 07 02:56:51 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/cache/snapshot.go

    	// required anti-affinity terms.
    	havePodsWithRequiredAntiAffinityNodeInfoList []*framework.NodeInfo
    	// usedPVCSet contains a set of PVC names that have one or more scheduled pods using them,
    	// keyed in the format "namespace/name".
    	usedPVCSet sets.Set[string]
    	generation int64
    }
    
    var _ framework.SharedLister = &Snapshot{}
    
    // NewEmptySnapshot initializes a Snapshot struct and returns it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/Packaging.java

        }
    
        /**
         * The type of main artifact produced by this packaging.
         */
        @Nonnull
        Type type();
    
        /**
         * Returns the binding to use specifically for this packaging keyed by lifecycle id.
         * This will be used instead of the default packaging definition.
         */
        @Nonnull
        Map<String, PluginContainer> plugins();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/devicemanager/pod_devices.go

    	allocResp *pluginapi.ContainerAllocateResponse
    }
    
    type resourceAllocateInfo map[string]deviceAllocateInfo // Keyed by resourceName.
    type containerDevices map[string]resourceAllocateInfo   // Keyed by containerName.
    type podDevices struct {
    	sync.RWMutex
    	devs map[string]containerDevices // Keyed by podUID.
    }
    
    // NewPodDevices is a function that returns object of podDevices type with its own guard
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. operator/pkg/cache/cache.go

    package cache
    
    import (
    	"sync"
    
    	"istio.io/istio/operator/pkg/metrics"
    	"istio.io/istio/operator/pkg/object"
    )
    
    // ObjectCache is a cache of objects,
    type ObjectCache struct {
    	// Cache is a cache keyed by object Hash() function.
    	Cache map[string]*object.K8sObject
    	Mu    *sync.RWMutex
    }
    
    var (
    	// objectCaches holds the latest copy of each object applied by the controller. The caches are divided by component
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 13:12:49 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. pilot/pkg/autoregistration/connections.go

    // when a WorkloadGroup is deleted, we can force disconnects
    // when OnDisconnect occurs, we only trigger cleanup when there are no more connections for that proxy
    type adsConnections struct {
    	sync.Mutex
    
    	// keyed by proxy id, then connection id
    	byProxy map[proxyKey]map[string]connection
    }
    
    func newAdsConnections() *adsConnections {
    	return &adsConnections{byProxy: map[proxyKey]map[string]connection{}}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 19 20:41:55 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. platforms/software/reporting/src/main/java/org/gradle/api/reporting/ReportContainer.java

        SortedSet<String> getNames();
    
        @Override
        @Internal
        List<Rule> getRules();
    
        @Override
        @Internal
        boolean isEmpty();
    
        /**
         * Returns the enabled reports, keyed by report name.
         *
         * @since 4.7
         */
        @Nested
        Map<String, T> getEnabledReports();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top