Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 160 for getters (0.19 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_test.go

    							"group":   "",
    							"version": "v1",
    							"kind":    "Getter",
    						},
    						map[string]interface{}{
    							"group":   "batch",
    							"version": "v1",
    							"kind":    "Getter",
    						},
    						map[string]interface{}{
    							"group":   "extensions",
    							"version": "v1",
    							"kind":    "Getter",
    						},
    					},
    				},
    			},
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/cc_op_gen_util.cc

        strings::StrAppend(&setters, attr_comment);
        strings::StrAppend(&setters, "    TF_MUST_USE_RESULT Attrs ", attr_func_def,
                           " x) {\n");
        strings::StrAppend(&setters, "      Attrs ret = *this;\n");
        strings::StrAppend(&setters, "      ret.", api_def_attr.rename_to(),
                           "_ = x;\n");
        strings::StrAppend(&setters, "      return ret;\n    }\n\n");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 25K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tfg-to-tfe.cc

            graph_func.getLoc(),
            graph_func->getAttrOfType<StringAttr>(SymbolTable::getSymbolAttrName())
                .getValue(),
            ftype);
    
        func->setAttrs(graph_func->getAttrs());
    
        llvm::SmallVector<Type> arg_types;
        llvm::SmallVector<Type> res_types;
        llvm::SmallVector<DictionaryAttr> arg_attrs;
        llvm::SmallVector<DictionaryAttr> res_attrs;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  4. pkg/registry/core/serviceaccount/storage/token.go

    func (r *TokenREST) Destroy() {
    	// Given no underlying store, we don't destroy anything
    	// here explicitly.
    }
    
    type TokenREST struct {
    	svcaccts             rest.Getter
    	pods                 rest.Getter
    	secrets              rest.Getter
    	nodes                rest.Getter
    	issuer               token.TokenGenerator
    	auds                 authenticator.Audiences
    	audsSet              sets.String
    	maxExpirationSeconds int64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java

            return (Class<T>) propertyType;
        }
    
        @Override
        public final Method getReadMethod() {
            return readMethod;
        }
    
        /**
         * getterメソッドを設定します。
         *
         * @param readMethod
         *            getterメソッド
         */
        protected final void setReadMethod(final Method readMethod) {
            this.readMethod = readMethod;
            if (readMethod != null) {
                readable = true;
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirMetadataCalculator.kt

                        }
                        fir.getter?.let { getter ->
                            methods.singleOrNull { it.returnType != PsiTypes.voidType() }?.let {
                                bindings.put(METHOD_FOR_FIR_FUNCTION, getter, Method(it.name, getAsmMethodSignatureWithCorrection(it)))
                            }
                        }
                        fir.setter?.let { setter ->
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/module/module.go

    // are three distinct runes that case-fold to each other.
    // When we do add Unicode letters, we must not assume that upper/lower
    // are the only case-equivalent pairs.
    // Perhaps the Kelvin symbol would be disallowed entirely, for example.
    // Or perhaps it would escape as "!!k", or perhaps as "(212A)".
    //
    // Second, it would be nice to allow Unicode marks as well as letters,
    // but marks include combining marks, and then we must deal not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/get.go

    // may be used to deserialize an options object to pass to the getter.
    type getterFunc func(ctx context.Context, name string, req *http.Request) (runtime.Object, error)
    
    // getResourceHandler is an HTTP handler function for get requests. It delegates to the
    // passed-in getterFunc to perform the actual get.
    func getResourceHandler(scope *RequestScope, getter getterFunc) http.HandlerFunc {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 10:22:16 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/etcd3/metrics/metrics.go

    func UpdateEtcdDbSize(ep string, size int64) {
    	dbTotalSize.WithLabelValues(ep).Set(float64(size))
    }
    
    // SetStorageMonitorGetter sets monitor getter to allow monitoring etcd stats.
    func SetStorageMonitorGetter(getter func() ([]Monitor, error)) {
    	storageMonitor.setGetter(getter)
    }
    
    // UpdateLeaseObjectCount sets the etcd_lease_object_counts metric.
    func UpdateLeaseObjectCount(count int64) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 21:15:32 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresourcedefinition/strategy.go

    // WarningsOnUpdate returns warnings for the given update.
    func (statusStrategy) WarningsOnUpdate(ctx context.Context, obj, old runtime.Object) []string {
    	return nil
    }
    
    // GetAttrs returns labels and fields of a given object for filtering purposes.
    func GetAttrs(obj runtime.Object) (labels.Set, fields.Set, error) {
    	apiserver, ok := obj.(*apiextensions.CustomResourceDefinition)
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top