Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 145 for seni (0.13 sec)

  1. pkg/controller/replicaset/replica_set_test.go

    	testRSSpec := newReplicaSet(1, labelMap)
    	informers.Apps().V1().ReplicaSets().Informer().GetIndexer().Add(testRSSpec)
    
    	received := make(chan string)
    	// The pod update sent through the fakeWatcher should figure out the managing ReplicaSet and
    	// send it into the syncHandler.
    	manager.syncHandler = func(ctx context.Context, key string) error {
    		namespace, name, err := cache.SplitMetaNamespaceKey(key)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  2. src/syscall/zsyscall_windows.go

    		err = errnoErr(e1)
    	}
    	return
    }
    
    func WSASend(s Handle, bufs *WSABuf, bufcnt uint32, sent *uint32, flags uint32, overlapped *Overlapped, croutine *byte) (err error) {
    	r1, _, e1 := Syscall9(procWSASend.Addr(), 7, uintptr(s), uintptr(unsafe.Pointer(bufs)), uintptr(bufcnt), uintptr(unsafe.Pointer(sent)), uintptr(flags), uintptr(unsafe.Pointer(overlapped)), uintptr(unsafe.Pointer(croutine)), 0, 0)
    	if r1 == socket_error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

    the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  4. docs/metrics/prometheus/grafana/minio-dashboard.json

              "expr": "sum by (server) (rate(minio_s3_traffic_sent_bytes{job=~\"$scrape_jobs\"}[$__rate_interval]))",
              "interval": "1m",
              "intervalFactor": 2,
              "legendFormat": "Data Sent [{{server}}]",
              "refId": "A"
            }
          ],
          "title": "S3 API Egress Rate ",
          "type": "timeseries"
        },
        {
          "datasource": {
            "type": "prometheus",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  5. src/syscall/zerrors_solaris_amd64.go

    	64:  "machine is not on the network",
    	65:  "package not installed",
    	66:  "object is remote",
    	67:  "link has been severed",
    	68:  "advertise error",
    	69:  "srmount error",
    	70:  "communication error on send",
    	71:  "protocol error",
    	72:  "locked lock was unmapped ",
    	73:  "facility is not active",
    	74:  "multihop attempted",
    	77:  "not a data message",
    	78:  "file name too long",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// storageWatchListPageSize is the cacher's request chunk size of
    	// initial and resync watch lists to storage.
    	storageWatchListPageSize = int64(10000)
    	// defaultBookmarkFrequency defines how frequently watch bookmarks should be send
    	// in addition to sending a bookmark right before watch deadline.
    	//
    	// NOTE: Update `eventFreshDuration` when changing this value.
    	defaultBookmarkFrequency = time.Minute
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. src/go/printer/testdata/parser.go

    }
    
    func (p *parser) parseChanType() *ast.ChanType {
    	if p.trace {
    		defer un(trace(p, "ChanType"))
    	}
    
    	pos := p.pos
    	dir := ast.SEND | ast.RECV
    	if p.tok == token.CHAN {
    		p.next()
    		if p.tok == token.ARROW {
    			p.next()
    			dir = ast.SEND
    		}
    	} else {
    		p.expect(token.ARROW)
    		p.expect(token.CHAN)
    		dir = ast.RECV
    	}
    	value := p.parseType()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  8. cmd/admin-handlers-users.go

    		return
    	}
    
    	var (
    		targetGroups []string
    		err          error
    	)
    
    	// Find the user for the request sender (as it may be sent via a service
    	// account or STS account):
    	requestorUser := cred.AccessKey
    	requestorParentUser := cred.AccessKey
    	requestorGroups := cred.Groups
    	requestorIsDerivedCredential := false
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	if err == nil {
    		t.Errorf("Expected an error, but we didn't get one")
    	} else if !strings.Contains(err.Error(), "does not match the namespace sent on the request") {
    		t.Errorf("Expected 'does not match the namespace sent on the request' error, got '%v'", err.Error())
    	}
    }
    
    func (t *Tester) testCreateResetsUserData(valid runtime.Object, opts metav1.CreateOptions) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  10. src/syscall/zerrors_linux_386.go

    	64:  "machine is not on the network",
    	65:  "package not installed",
    	66:  "object is remote",
    	67:  "link has been severed",
    	68:  "advertise error",
    	69:  "srmount error",
    	70:  "communication error on send",
    	71:  "protocol error",
    	72:  "multihop attempted",
    	73:  "RFS specific error",
    	74:  "bad message",
    	75:  "value too large for defined data type",
    	76:  "name not unique on network",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.4K bytes
    - Viewed (0)
Back to top