Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 125 for Unshare (0.23 sec)

  1. src/cmd/compile/internal/types2/named.go

    // instantiation in the source (if they were constructed during type checking).
    //
    // To prevent infinite expansion of named instances that are created outside of
    // type-checking, instances share a Context with other instances created during
    // their expansion. Via the pidgeonhole principle, this guarantees that in the
    // presence of a cycle of named types, expansion will eventually find an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. src/crypto/tls/common.go

    	// draft-tls-westerbaan-xyber768d00-03. Not exported, as support might be
    	// removed in the future.
    	x25519Kyber768Draft00 CurveID = 0x6399 // X25519Kyber768Draft00
    )
    
    // TLS 1.3 Key Share. See RFC 8446, Section 4.2.8.
    type keyShare struct {
    	group CurveID
    	data  []byte
    }
    
    // TLS 1.3 PSK Key Exchange Modes. See RFC 8446, Section 4.2.9.
    const (
    	pskModePlain uint8 = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/constants/constants.go

    	ControlPlaneTier = "control-plane"
    
    	// Mode* constants were copied from pkg/kubeapiserver/authorizer/modes
    	// to avoid kubeadm dependency on the internal module
    	// TODO: share Mode* constants in component config
    
    	// ModeAlwaysAllow is the mode to set all requests as authorized
    	ModeAlwaysAllow string = "AlwaysAllow"
    	// ModeAlwaysDeny is the mode to set no requests as authorized
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  4. src/go/types/named.go

    // instantiation in the source (if they were constructed during type checking).
    //
    // To prevent infinite expansion of named instances that are created outside of
    // type-checking, instances share a Context with other instances created during
    // their expansion. Via the pidgeonhole principle, this guarantees that in the
    // presence of a cycle of named types, expansion will eventually find an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                    }
                }
                previousTraversalExclusions = resolutionFilter;
            } finally {
                // If there are 'pending' dependencies that share a target with any of these outgoing edges,
                // then reset the state of the node that owns those dependencies.
                // This way, all edges of the node will be re-processed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener_inbound.go

    // buildTLSInspector creates a tls inspector filter. Based on the configured ports, this may be enabled
    // for only some ports.
    func buildTLSInspector(inspectors map[int]enabledInspector) *listener.ListenerFilter {
    	// TODO share logic with HTTP inspector
    	defaultEnabled := inspectors[0].TLSInspector
    
    	// We have a split path here based on if the passthrough inspector is enabled
    	// If it is, then we need to explicitly opt ports out of the inspector
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  7. src/internal/trace/event.go

    	// a special range of time. Ranges are named and scoped to some resource
    	// (identified via ResourceKind). A range that has begun but has not ended
    	// is considered active.
    	//
    	// EvRangeBegin and EvRangeEnd will share the same name, and an End will always
    	// follow a Begin on the same instance of the resource. The associated
    	// resource ID can be obtained from the Event. ResourceNone indicates the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: don't mount /etc/pki in kube-apisever and kube-controller-manager pods as an additional Linux system CA location. Mount /etc/pki/ca-trust and /etc/pki/tls/certs instead. /etc/ca-certificate, /usr/share/ca-certificates, /usr/local/share/ca-certificates and /etc/ssl/certs continue to be mounted. ([#124361](https://github.com/kubernetes/kubernetes/pull/124361), [@neolit123](https://github.com/neolit123)) [SIG Cluster Lifecycle]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                // 3. serialize another task that uses the transformed artifact
                // In addition, the 1st and 3rd tasks need to resolve different variants that share the same transform
    
                def files1 = configurations.implementation.incoming.artifactView {
                    attributes.attribute(color, 'green')
                }.files
    
                task usesFiles1 {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/serviceentry/controller.go

    	workloadInstances workloadinstances.Index
    	services          serviceStore
    
    	// To make sure the eds update run in serial to prevent stale ones can override new ones
    	// when edsUpdate is called concurrently.
    	// If all share one lock, then all the threads can have an obvious performance downgrade.
    	edsQueue queue.Instance
    
    	workloadHandlers []func(*model.WorkloadInstance, model.Event)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
Back to top