Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 185 for singular2 (0.16 sec)

  1. tensorflow/cc/experimental/libexport/load.h

      // extra complexity doesn't seem justified.  Regardless of what we choose,
      // that logic should live outside this class; this class should continue to
      // have the clearly-defined, singular responsibility of reading and parsing
      // the low-level, serialized format.
      const SavedObjectGraph& GetObjectGraph();
    
      // Retrieves a specific GraphDef node by name.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 13 06:33:42 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_discovery_controller.go

    		}
    
    		apiResourcesForDiscovery = append(apiResourcesForDiscovery, metav1.APIResource{
    			Name:               crd.Status.AcceptedNames.Plural,
    			SingularName:       crd.Status.AcceptedNames.Singular,
    			Namespaced:         crd.Spec.Scope == apiextensionsv1.NamespaceScoped,
    			Kind:               crd.Status.AcceptedNames.Kind,
    			Verbs:              verbs,
    			ShortNames:         crd.Status.AcceptedNames.ShortNames,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 21 11:40:03 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. cluster/addons/calico-policy-controller/bgppeers-crd.yaml

    metadata:
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
      name: bgppeers.crd.projectcalico.org
    spec:
      group: crd.projectcalico.org
      names:
        kind: BGPPeer
        listKind: BGPPeerList
        plural: bgppeers
        singular: bgppeer
      scope: Cluster
      versions:
      - name: v1
        schema:
          openAPIV3Schema:
            properties:
              apiVersion:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/scope_test.go

    								},
    							},
    							Schema: fixtures.AllowAllSchema(),
    						},
    					},
    					Names: apiextensionsv1.CustomResourceDefinitionNames{
    						Plural:   strings.ToLower(string(scope)) + "s",
    						Singular: strings.ToLower(string(scope)),
    						Kind:     string(scope),
    						ListKind: string(scope) + "List",
    					},
    					Scope: scope,
    				},
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 02 19:34:41 UTC 2021
    - 6.3K bytes
    - Viewed (0)
  5. src/mdo/reader-stax.vm

          #if ( ! $fieldTagName )
            #set ( $fieldTagName = $field.name )
          #end
          #if ( $Helper.isFlatItems( $field ) )
            #set ( $fieldTagName = $Helper.singular( $fieldTagName ) )
          #end
          #set ( $fieldCapName = $Helper.capitalise($field.name))
                    case "${fieldTagName}": {
          #if ( $field.type == "String" )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  6. pkg/registry/core/service/storage/storage.go

    	// is verbosely written for clarity.
    
    	// **** IMPORTANT *****
    	// as a governing rule. User must (either)
    	// -- Use singular only (old client)
    	// -- singular and plural fields (new clients)
    
    	if oldSvc == nil {
    		// This was a create operation.
    		// User specified singular and not plural (e.g. an old client), so init
    		// plural for them.
    		if len(newSvc.Spec.ClusterIP) > 0 && len(newSvc.Spec.ClusterIPs) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:33 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	// too: plural.group and it must be all lowercase.
    	Plural string
    	// Singular is the singular name of the resource.  It must be all lowercase  Defaults to lowercased <kind>
    	Singular string
    	// ShortNames are short names for the resource.  It must be all lowercase.
    	ShortNames []string
    	// Kind is the serialized kind of the resource.  It is normally CamelCase and singular.
    	Kind string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  8. src/mdo/model-v3.vm

                update(getDelegate().with${cap}(${field.name}));
            }
          #end
        }
    
          #if ( $field.type == "java.util.List" && $field.multiplicity == "*" )
            #set ( $v = $Helper.singular( ${field.name} ) )
            #set ( $scap = $Helper.capitalise( $v ) )
        public void add${scap}(${field.to} ${v}) {
            #if ( $field.to == "String" )
            update(getDelegate().with${cap}(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 06 19:04:44 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/operator/output/operator-remove.yaml

    kind: CustomResourceDefinition
    metadata:
      name: istiooperators.install.istio.io
    spec:
      group: install.istio.io
      names:
        kind: IstioOperator
        plural: istiooperators
        singular: istiooperator
        shortNames:
        - iop
      scope: Namespaced
      subresources:
        status: {}
      validation:
        openAPIV3Schema:
          properties:
            apiVersion:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 21 01:45:21 UTC 2020
    - 5.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_arith_ops_folder.h

    // Verifies an reduction op's `input` and reduction `dims`.
    LogicalResult VerifyReductionInputAndDims(Value input, Value dims,
                                              Location loc);
    
    // A type range with description (in singular form) attached to it.
    using TypeRangeWithDesc = std::pair<TypeRange, StringRef>;
    
    LogicalResult VerifyTypeRangesAreCompatible(Operation *op,
                                                TypeRangeWithDesc range0,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top