Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for keyRing (0.37 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "description": "The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
              "type": "string"
            },
            "keyring": {
              "description": "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
              "type": "string"
            },
            "monitors": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_node_status_test.go

    	actions = kubeClient.Actions()
    	assert.Len(t, actions, 9)
    	assert.IsType(t, core.GetActionImpl{}, actions[7])
    	assert.IsType(t, core.PatchActionImpl{}, actions[8])
    
    	// Update node status when keeping the pod CIDR.
    	// Do not report node status if it is within the duration of nodeStatusReportFrequency.
    	clock.Step(10 * time.Second)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  3. cmd/bucket-replication.go

    		DeleteReplication: drs,
    		Versioned:         globalBucketVersioningSys.PrefixEnabled(bucket, dobj.ObjectName),
    		// Objects matching prefixes should not leave delete markers,
    		// dramatically reduces namespace pollution while keeping the
    		// benefits of replication, make sure to apply version suspension
    		// only at bucket level instead.
    		VersionSuspended: globalBucketVersioningSys.Suspended(bucket),
    	})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_control_test.go

    	// Make all pods in statefulset unavailable one by one
    	// and verify that RollingUpdate doesnt proceed with maxUnavailable set
    	// this could have been a simple loop, keeping it like this to be able
    	// to add more params here.
    	testCases := []struct {
    		ordinalOfPodToTerminate []int
    	}{
    
    		{[]int{}},
    		{[]int{5}},
    		{[]int{3}},
    		{[]int{4}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

                                     ArrayRef<ArrayRef<int64_t>> input_shapes) {
      auto producer_or = tensorflow::GetTfGraphProducerVersion(module);
      if (!producer_or.ok()) {
        // TODO(jpienaar): Keeping the existing behavior for now but this could
        // be relaxed.
        LLVM_DEBUG(llvm::dbgs()
                   << "Skipping inference; " << producer_or.status().ToString());
        return true;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    //     blocked or in a syscall w/o an associated P.
    //
    // Design doc at https://golang.org/s/go11sched.
    
    // Worker thread parking/unparking.
    // We need to balance between keeping enough running worker threads to utilize
    // available hardware parallelism and parking excessive running worker threads
    // to conserve CPU resources and power. This is not simple for two reasons:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    					// Already set in assignAddress
    					continue
    				}
    				sect, n, va = assignAddress(ctxt, sect, n, tramp, va, true, big)
    			}
    		}
    
    		// merge tramps into Textp, keeping Textp in address order
    		if ntramps != 0 {
    			newtextp := make([]loader.Sym, 0, len(ctxt.Textp)+ntramps)
    			i := 0
    			for _, s := range ctxt.Textp {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  8. pkg/kubelet/kubelet.go

    	// List of taints to add to a node object when the kubelet registers itself.
    	registerWithTaints []v1.Taint
    	// Set to true to have the node register itself as schedulable.
    	registerSchedulable bool
    	// for internal book keeping; access only from within registerWithApiserver
    	registrationCompleted bool
    
    	// dnsConfigurer is used for setting up DNS resolver configuration when launching pods.
    	dnsConfigurer *dns.Configurer
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. src/net/http/server.go

    	b   byte // byte read, if n == 1
    }
    
    // connReader is the io.Reader wrapper used by *conn. It combines a
    // selectively-activated io.LimitedReader (to bound request header
    // read sizes) with support for selectively keeping an io.Reader.Read
    // call blocked in a background goroutine to wait for activity and
    // trigger a CloseNotifier channel.
    type connReader struct {
    	conn *conn
    
    	mu      sync.Mutex // guards following
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    //
    // In theory, this class is not necessary because we should simply take
    // the TF function name and use it as MLIR function name. However, for some
    // unknown reasons (callout for investigation in b/142268695), keeping the
    // function names unchanged in an MLIR roundtrip causes test failures.
    // TODO(b/142268695) Re-evaluate whether we need this class v.s. directly using
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top