Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 108 for extfake (0.17 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/admission.k8s.io.v1beta1.AdmissionReview.json

        "operation": "operationValue",
        "userInfo": {
          "username": "usernameValue",
          "uid": "uidValue",
          "groups": [
            "groupsValue"
          ],
          "extra": {
            "extraKey": [
              "extraValue"
            ]
          }
        },
        "object": {
          "apiVersion": "example.com/v1",
          "kind": "CustomType",
          "spec": {
            "replicas": 1
          },
          "status": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 19 15:31:53 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  2. samples/certs/generate-workload.sh

    openssl x509 -req -in "$FINAL_DIR"/workload.csr -CA "$cacert" -CAkey "$cakey" -CAcreateserial \
    -out "$FINAL_DIR/leaf-workload-$sa-cert.pem" -days 3650 -extensions v3_req -extfile "$FINAL_DIR"/workload.cfg
    
    cp "$FINAL_DIR/leaf-workload-$sa-cert.pem" "$FINAL_DIR/workload-$sa-cert.pem"
    cat "$certchain" >> "$FINAL_DIR/workload-$sa-cert.pem"
    cp "$certchain" "$FINAL_DIR/workload-$sa-root-certs.pem"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 07 23:57:35 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/watch/watch_test.go

    )
    
    type testType string
    
    func (obj testType) GetObjectKind() schema.ObjectKind { return schema.EmptyObjectKind }
    func (obj testType) DeepCopyObject() runtime.Object   { return obj }
    
    func TestFake(t *testing.T) {
    	f := NewFake()
    
    	table := []struct {
    		t EventType
    		s testType
    	}{
    		{Added, testType("foo")},
    		{Modified, testType("qux")},
    		{Modified, testType("bar")},
    		{Deleted, testType("bar")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 15 11:34:31 UTC 2018
    - 3.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/request/admissionreview_test.go

    	userInfo := &user.DefaultInfo{
    		Name:   "myuser",
    		Groups: []string{"mygroup"},
    		UID:    "myuid",
    		Extra:  map[string][]string{"extrakey": {"value1", "value2"}},
    	}
    	attrs := admission.NewAttributesRecord(
    		internalObj.DeepCopyObject(),
    		internalObjOld.DeepCopyObject(),
    		schema.GroupVersionKind{Group: "apps", Version: "v1", Kind: "Deployment"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 16:56:12 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/eventclock/fake_event_clock_test.go

    	}
    	pc.SetTime(t2)
    	dx = pc.Since(t1)
    	if dx != time.Hour {
    		t.Errorf("Since() => %v", dx)
    	}
    	tx = pc.Now()
    	if tx != t2 {
    		t.Errorf("Now() => %#+v", tx)
    	}
    }
    
    func TestFake(t *testing.T) {
    	startTime := time.Now()
    	fec, _ := NewFake(startTime, 0, nil)
    	exerciseTestableEventClock(t, fec, 0)
    	fec, _ = NewFake(startTime, time.Second, nil)
    	exerciseTestableEventClock(t, fec, time.Second)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 07 04:07:31 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/metrics/client_test.go

    	metricsapi "k8s.io/metrics/pkg/apis/metrics/v1beta1"
    	metricsfake "k8s.io/metrics/pkg/client/clientset/versioned/fake"
    	cmfake "k8s.io/metrics/pkg/client/custom_metrics/fake"
    	emfake "k8s.io/metrics/pkg/client/external_metrics/fake"
    
    	"github.com/stretchr/testify/assert"
    )
    
    var fixedTimestamp = time.Date(2015, time.November, 10, 12, 30, 0, 0, time.UTC)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 02:34:54 UTC 2021
    - 16.4K bytes
    - Viewed (0)
  7. tensorflow/BUILD

            continue
          fi
    
          if [[ $${d} == external* ]]; then
            extname="$${d#*external/}"
            extname="$${extname%%/*}"
            if [[ $${TF_SYSTEM_LIBS:-} == *$${extname}* ]]; then
              continue
            fi
    
            d="$${d#*external/farmhash_archive/src}"
            d="$${d#*external/$${extname}/}"
            d="$${d#_virtual_includes/*/}"
          fi
    
          mkdir -p "$@/$${d}"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/filters/impersonation_test.go

    			}
    			for _, group := range tc.impersonationGroups {
    				req.Header.Add(authenticationapi.ImpersonateGroupHeader, group)
    			}
    			for extraKey, values := range tc.impersonationUserExtras {
    				for _, value := range values {
    					req.Header.Add(authenticationapi.ImpersonateUserExtraHeaderPrefix+extraKey, value)
    				}
    			}
    			if len(tc.impersonationUid) > 0 {
    				req.Header.Add(authenticationapi.ImpersonateUIDHeader, tc.impersonationUid)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 06 17:13:16 UTC 2021
    - 17.2K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/pe.go

    		// the %n suffix if any.
    		m.argsize = -1
    		extName := ldr.SymExtname(s)
    		if i := strings.IndexByte(extName, '%'); i >= 0 {
    			var err error
    			m.argsize, err = strconv.Atoi(extName[i+1:])
    			if err != nil {
    				ctxt.Errorf(s, "failed to parse stdcall decoration: %v", err)
    			}
    			m.argsize *= ctxt.Arch.PtrSize
    			ldr.SetSymExtname(s, extName[:i])
    		}
    
    		m.s = s
    		m.next = d.ms
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loader/loader.go

    	} else {
    		l.dynimpvers[i] = value
    	}
    }
    
    // SymExtname returns the "extname" value for the specified
    // symbol.
    func (l *Loader) SymExtname(i Sym) string {
    	if s, ok := l.extname[i]; ok {
    		return s
    	}
    	return l.SymName(i)
    }
    
    // SetSymExtname sets the  "extname" attribute for a symbol.
    func (l *Loader) SetSymExtname(i Sym, value string) {
    	// reject bad symbols
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top