Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 236 for getters (0.23 sec)

  1. pkg/registry/core/pod/strategy.go

    func ExecLocation(
    	ctx context.Context,
    	getter ResourceGetter,
    	connInfo client.ConnectionInfoGetter,
    	name string,
    	opts *api.PodExecOptions,
    ) (*url.URL, http.RoundTripper, error) {
    	return streamLocation(ctx, getter, connInfo, name, opts, opts.Container, "exec")
    }
    
    func streamLocation(
    	ctx context.Context,
    	getter ResourceGetter,
    	connInfo client.ConnectionInfoGetter,
    	name string,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  2. 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)
  3. staging/src/k8s.io/apimachinery/third_party/forked/golang/json/fields.go

    // 2) equalFoldRight, if s contains special folding ASCII ('k', 'K', 's', 'S')
    // 3) asciiEqualFold, no special, but includes non-letters (including _)
    // 4) simpleLetterEqualFold, no specials, no non-letters.
    //
    // The letters S and K are special because they map to 3 runes, not just 2:
    //  * S maps to s and to U+017F 'ſ' Latin small letter long s
    //  * k maps to K and to U+212A 'K' Kelvin sign
    // See http://play.golang.org/p/tTxjOc0OGo
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 13.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/JavaPropertyReflectionUtil.java

            Method[] methods = target.getMethods();
            String getter = toMethodName("get", property);
            String iser = toMethodName("is", property);
            for (Method method : methods) {
                String methodName = method.getName();
                if (getter.equals(methodName) && PropertyAccessorType.of(method) == PropertyAccessorType.GET_GETTER) {
                    return method;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top