Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for genericapi (0.15 sec)

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

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package server
    
    // This file exists to force the desired plugin implementations to be linked into genericapi pkg.
    import (
    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle"
    	validatingadmissionpolicy "k8s.io/apiserver/pkg/admission/plugin/policy/validating"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/lang/MethodUtilTest.java

            Method m = Baz.class.getMethod("rawMap", Map.class);
            assertThat(MethodUtil.getKeyTypeOfMapFromParameterType(m, 0), is(nullValue()));
    
            m = Baz.class.getMethod("genericMap", Map.class);
            assertThat(MethodUtil.getKeyTypeOfMapFromParameterType(m, 0), is(sameClass(Integer.class)));
        }
    
        /**
         * @throws Exception
         */
        @Test
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/typestring_test.go

    var dependentTestTypes = []testEntry{
    	// interfaces
    	dup(`interface{io.Reader; io.Writer}`),
    	dup(`interface{m() int; io.Writer}`),
    	{`interface{m() interface{T}}`, `interface{m() interface{generic_p.T}}`},
    }
    
    func TestTypeString(t *testing.T) {
    	// The Go command is needed for the importer to determine the locations of stdlib .a files.
    	testenv.MustHaveGoBuild(t)
    
    	var tests []testEntry
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 28 17:58:07 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. docs/pt/docs/help-fastapi.md

        Use o chat apenas para outro tipo de assunto.
    
    ### Não faça perguntas no chat
    
    Tenha em mente que os chats permitem uma "conversa mais livre", dessa forma é muito fácil fazer perguntas que são muito genéricas e dificeís de responder, assim você pode acabar não sendo respondido.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. docs/pt/docs/tutorial/query-params-str-validations.md

    Na documentação aparecerá assim:
    
    <img src="/img/tutorial/query-params-str-validations/image01.png">
    
    ## Recapitulando
    
    Você pode adicionar validações e metadados adicionais aos seus parâmetros.
    
    Validações genéricas e metadados:
    
    * `alias`
    * `title`
    * `description`
    * `deprecated`
    
    Validações específicas para textos:
    
    * `min_length`
    * `max_length`
    * `regex`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 14 11:59:59 UTC 2022
    - 9.3K bytes
    - Viewed (0)
Back to top