Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,122 for OPT (0.02 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types.go

    }
    
    // ServiceReference holds a reference to Service.legacy.k8s.io
    type ServiceReference struct {
    	// namespace is the namespace of the service.
    	// Required
    	Namespace string `json:"namespace" protobuf:"bytes,1,opt,name=namespace"`
    	// name is the name of the service.
    	// Required
    	Name string `json:"name" protobuf:"bytes,2,opt,name=name"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/rbac/v1alpha1/types.go

    	APIGroup string `json:"apiGroup" protobuf:"bytes,1,opt,name=apiGroup"`
    	// Kind is the type of resource being referenced
    	Kind string `json:"kind" protobuf:"bytes,2,opt,name=kind"`
    	// Name is the name of resource being referenced
    	Name string `json:"name" protobuf:"bytes,3,opt,name=name"`
    }
    
    // +genclient
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/rsc.io_quote_v1.5.1.txt

    	if out := Go(); out != go1 {
    		t.Errorf("Go() = %q, want %q", out, go1)
    	}
    }
    
    func TestOpt(t *testing.T) {
    	opt := "If a program is too slow, it must have a loop."
    	if out := Opt(); out != opt {
    		t.Errorf("Opt() = %q, want %q", out, opt)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1beta2/types.go

    	// Required
    	// +unionDiscriminator
    	Kind SubjectKind `json:"kind" protobuf:"bytes,1,opt,name=kind"`
    	// `user` matches based on username.
    	// +optional
    	User *UserSubject `json:"user,omitempty" protobuf:"bytes,2,opt,name=user"`
    	// `group` matches based on user group name.
    	// +optional
    	Group *GroupSubject `json:"group,omitempty" protobuf:"bytes,3,opt,name=group"`
    	// `serviceAccount` matches ServiceAccounts.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/autoscaling/v1/types.go

    	Kind string `json:"kind" protobuf:"bytes,1,opt,name=kind"`
    
    	// name is the name of the referent; More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
    	Name string `json:"name" protobuf:"bytes,2,opt,name=name"`
    
    	// apiVersion is the API version of the referent
    	// +optional
    	APIVersion string `json:"apiVersion,omitempty" protobuf:"bytes,3,opt,name=apiVersion"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/rsc.io_quote_v1.5.2.txt

    	if out := Go(); out != go1 {
    		t.Errorf("Go() = %q, want %q", out, go1)
    	}
    }
    
    func TestOpt(t *testing.T) {
    	opt := "If a program is too slow, it must have a loop."
    	if out := Opt(); out != opt {
    		t.Errorf("Opt() = %q, want %q", out, opt)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/resource/v1alpha2/namedresources.go

    	// QuantityValue is a quantity.
    	QuantityValue *resource.Quantity `json:"quantity,omitempty" protobuf:"bytes,6,opt,name=quantity"`
    	// BoolValue is a true/false value.
    	BoolValue *bool `json:"bool,omitempty" protobuf:"bytes,2,opt,name=bool"`
    	// IntValue is a 64-bit integer.
    	IntValue *int64 `json:"int,omitempty" protobuf:"varint,7,opt,name=int"`
    	// IntSliceValue is an array of 64-bit integers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/authentication/v1beta1/types.go

    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// Spec holds information about the request being evaluated
    	Spec TokenReviewSpec `json:"spec" protobuf:"bytes,2,opt,name=spec"`
    
    	// Status is filled in by the server and indicates whether the token can be authenticated.
    	// +optional
    	Status TokenReviewStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/rewrite_tpu_embedding_ops.cc

    };
    
    // Rewrites the given op to `OpT` op after adding the given operand at the end.
    template <typename OpT>
    OpT AddOperandAndRewriteAs(Operation* op, Value operand, NamedAttrList attr,
                               OpBuilder* builder) {
      builder->setInsertionPoint(op);
      auto operands = llvm::to_vector<4>(op->getOperands());
      operands.push_back(operand);
      auto new_op = builder->create<OpT>(op->getLoc(), op->getResultTypes(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 22:55:42 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storage/v1alpha1/types.go

    	Attacher string `json:"attacher" protobuf:"bytes,1,opt,name=attacher"`
    
    	// source represents the volume that should be attached.
    	Source VolumeAttachmentSource `json:"source" protobuf:"bytes,2,opt,name=source"`
    
    	// nodeName represents the node that the volume should be attached to.
    	NodeName string `json:"nodeName" protobuf:"bytes,3,opt,name=nodeName"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 13.4K bytes
    - Viewed (0)
Back to top