Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 287 for emberi (0.69 sec)

  1. 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)
  2. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    package etcd3
    
    import (
    	"context"
    	"crypto/rand"
    	"fmt"
    	"io/ioutil"
    	"os"
    	"reflect"
    	"strings"
    	"sync/atomic"
    	"testing"
    
    	clientv3 "go.etcd.io/etcd/client/v3"
    	"go.etcd.io/etcd/server/v3/embed"
    	"google.golang.org/grpc/grpclog"
    
    	"k8s.io/apimachinery/pkg/api/apitesting"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/fields"
    	"k8s.io/apimachinery/pkg/labels"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/trace/main.go

    	flag.Usage = func() {
    		fmt.Fprint(os.Stderr, usageMessage)
    		os.Exit(2)
    	}
    	flag.Parse()
    	telemetry.Inc("trace/invocations")
    	telemetry.CountFlags("trace/flag:", *flag.CommandLine)
    
    	// Go 1.7 traces embed symbol info and does not require the binary.
    	// But we optionally accept binary as first arg for Go 1.5 traces.
    	switch flag.NArg() {
    	case 1:
    		traceFile = flag.Arg(0)
    	case 2:
    		programBinary = flag.Arg(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    	}
    
    	// Prepare Go embed config if needed.
    	// Unlike the import config, it's okay for the embed config to be empty.
    	var embedcfg []byte
    	if len(p.Internal.Embed) > 0 {
    		var embed struct {
    			Patterns map[string][]string
    			Files    map[string]string
    		}
    		embed.Patterns = p.Internal.Embed
    		embed.Files = make(map[string]string)
    		for _, file := range p.EmbedFiles {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. src/debug/buildinfo/buildinfo.go

    // errNotGoExe is returned when a given executable file is valid but does
    // not contain Go build information.
    //
    // errNotGoExe should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/quay/claircore
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname errNotGoExe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

            assert(files.map { it.name } == listOf("bar.txt", "foo.jar"))
        }
    }
    ----
    ======
    =====
    
    [[org_gradle_util_reports_deprecations]]
    ==== Deprecated members of the `org.gradle.util` package now report their deprecation
    
    These members will be removed in Gradle 9.0.
    
    * `Collection.stringize(Collection)`
    
    [[changes_8.6]]
    == Upgrading from 8.5 and earlier
    
    === Potential breaking changes
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  9. src/reflect/all_test.go

    				)
    			}
    		}
    	}
    }
    
    func TestCanSetField(t *testing.T) {
    	type embed struct{ x, X int }
    	type Embed struct{ x, X int }
    	type S1 struct {
    		embed
    		x, X int
    	}
    	type S2 struct {
    		*embed
    		x, X int
    	}
    	type S3 struct {
    		Embed
    		x, X int
    	}
    	type S4 struct {
    		*Embed
    		x, X int
    	}
    
    	type testCase struct {
    		// -1 means Addr().Elem() of current value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  10. schema/schema.go

    	PrimaryFields             []*Field
    	PrimaryFieldDBNames       []string
    	Fields                    []*Field
    	FieldsByName              map[string]*Field
    	FieldsByBindName          map[string]*Field // embedded fields is 'Embed.Field'
    	FieldsByDBName            map[string]*Field
    	FieldsWithDefaultDBValue  []*Field // fields with default value assigned by database
    	Relationships             Relationships
    	CreateClauses             []clause.Interface
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top