Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 280 for emberi (0.23 sec)

  1. src/runtime/mcache.go

    // No locking needed because it is per-thread (per-P).
    //
    // mcaches are allocated from non-GC'd memory, so any heap pointers
    // must be specially handled.
    type mcache struct {
    	_ sys.NotInHeap
    
    	// The following members are accessed on every malloc,
    	// so they are grouped here for better caching.
    	nextSample uintptr // trigger heap sample after allocating this many bytes
    	scanAlloc  uintptr // bytes of scannable heap allocated
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1alpha1/types_swagger_doc_generated.go

    	"":                     "VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set.",
    	"persistentVolumeName": "persistentVolumeName represents the name of the persistent volume to attach.",
    }
    
    func (VolumeAttachmentSource) SwaggerDoc() map[string]string {
    	return map_VolumeAttachmentSource
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. internal/config/identity/ldap/ldap.go

    			}
    			nonExistentUsers = append(nonExistentUsers, ndn.String())
    		}
    	}
    	return nonExistentUsers, nil
    }
    
    // LookupGroupMemberships - for each DN finds the set of LDAP groups they are a
    // member of.
    func (l *Config) LookupGroupMemberships(userDistNames []string, userDNToUsernameMap map[string]string) (map[string]set.StringSet, error) {
    	conn, err := l.LDAP.Connect()
    	if err != nil {
    		return nil, err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 25 13:43:06 UTC 2024
    - 10.3K bytes
    - Viewed (1)
  4. pkg/controller/statefulset/stateful_set_utils.go

    	return fmt.Sprintf("%s-%s-%d", claim.Name, set.Name, ordinal)
    }
    
    // isMemberOf tests if pod is a member of set.
    func isMemberOf(set *apps.StatefulSet, pod *v1.Pod) bool {
    	return getParentName(pod) == set.Name
    }
    
    // identityMatches returns true if pod has a valid identity and network identity for a member of set.
    func identityMatches(set *apps.StatefulSet, pod *v1.Pod) bool {
    	parent, ordinal := getParentNameAndOrdinal(pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectContainerExtensions.kt

        /**
         * Cast this to [PolymorphicDomainObjectContainer] or throw [IllegalArgumentException].
         *
         * We must rely on the dynamic cast and possible runtime failure here due to a Kotlin extension member limitation.
         * Kotlin currently can't disambiguate between invoke operators with more specific receivers in a type hierarchy.
         *
         * See https://youtrack.jetbrains.com/issue/KT-15711
         */
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 22:09:44 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. src/crypto/ed25519/ed25519.go

    	SeedSize = 32
    )
    
    // PublicKey is the type of Ed25519 public keys.
    type PublicKey []byte
    
    // Any methods implemented on PublicKey might need to also be implemented on
    // PrivateKey, as the latter embeds the former and will expose its methods.
    
    // Equal reports whether pub and x have the same value.
    func (pub PublicKey) Equal(x crypto.PublicKey) bool {
    	xx, ok := x.(PublicKey)
    	if !ok {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. src/internal/xcoff/xcoff.go

    	C_RPSYM   = 132 // Argument to function or procedure stored in register
    	C_STSYM   = 133 // Statically allocated symbol
    	C_BCOMM   = 135 // Beginning of common block
    	C_ECOML   = 136 // Local member of common block
    	C_ECOMM   = 137 // End of common block
    	C_DECL    = 140 // Declaration of object
    	C_ENTRY   = 141 // Alternate entry
    	C_FUN     = 142 // Function or procedure
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. src/os/signal/signal_cgo_test.go

    	}
    }
    
    // GO_TEST_TERMINAL_SIGNALS=1 subprocess above.
    func runSessionLeader(t *testing.T, pause time.Duration) {
    	// "Attempts to use tcsetpgrp() from a process which is a
    	// member of a background process group on a fildes associated
    	// with its controlling terminal shall cause the process group
    	// to be sent a SIGTTOU signal. If the calling thread is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 10:09:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

                is KtFile ->
                    false
                is KtScript ->
                    false
    
                // Only class members have KtClassBody parents, and are never considered used
                is KtClassBody ->
                    false
    
                // $_ and ${_} contexts use their inner expression
                is KtStringTemplateEntry ->
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. src/os/user/lookup_windows.go

    	}
    	return sid.String()
    }
    
    // listGroupsForUsernameAndDomain accepts username and domain and retrieves
    // a SID list of the local groups where this user is a member.
    func listGroupsForUsernameAndDomain(username, domain string) ([]string, error) {
    	// Check if both the domain name and user should be used.
    	var query string
    	joined, err := isDomainJoined()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top