Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 215 for noposn (0.14 sec)

  1. src/go/types/predicates.go

    			for i, xtparam := range xtparams {
    				ybound := check.subst(nopos, ytparams[i].bound, smap, nil, ctxt)
    				if !c.identical(xtparam.bound, ybound, p) {
    					return false
    				}
    			}
    
    			yparams = check.subst(nopos, y.params, smap, nil, ctxt).(*Tuple)
    			yresults = check.subst(nopos, y.results, smap, nil, ctxt).(*Tuple)
    		}
    
    		return x.variadic == y.variadic &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/instantiate_test.go

    			"package equivalentinterfaces; type T[P any] int",
    			"T", []Type{
    				NewInterfaceType([]*Func{NewFunc(nopos, nil, "M", emptySignature)}, nil),
    			},
    			"T", []Type{
    				NewInterfaceType(
    					nil,
    					[]Type{
    						NewInterfaceType([]*Func{NewFunc(nopos, nil, "M", emptySignature)}, nil),
    					},
    				),
    			},
    			true,
    		},
    		{
    			// int|string is equivalent to string|int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 28 17:58:07 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/AbstractCrawlerClient.java

        public ResponseData execute(final RequestData request) {
            return switch (request.getMethod()) {
            case GET -> doGet(request.getUrl());
            case HEAD -> doHead(request.getUrl());
            case POST -> doPost(request.getUrl());
            default -> throw new CrawlerSystemException(request.getMethod() + " method is not supported.");
            };
        }
    
        protected void checkMaxContentLength(final ResponseData responseData) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. src/mime/mediatype.go

    // failure to consume at least one character.
    func consumeToken(v string) (token, rest string) {
    	notPos := strings.IndexFunc(v, isNotTokenChar)
    	if notPos == -1 {
    		return v, ""
    	}
    	if notPos == 0 {
    		return "", v
    	}
    	return v[0:notPos], v[notPos:]
    }
    
    // consumeValue consumes a "value" per RFC 2045, where a value is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. src/reflect/set_test.go

    	{new(ast.Expr), new(notASTExpr), false},
    	{new(*notAnExpr), new(notASTExpr), true},
    }
    
    type notAnExpr struct{}
    
    func (notAnExpr) Pos() token.Pos { return token.NoPos }
    func (notAnExpr) End() token.Pos { return token.NoPos }
    func (notAnExpr) exprNode()      {}
    
    type notASTExpr interface {
    	Pos() token.Pos
    	End() token.Pos
    	exprNode()
    }
    
    func TestImplements(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 13:56:11 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/saved_model/BUILD

        srcs = ["saved_model_test.cc"],
        data = [
            "testdata/test.mlir",
            "testdata/xla_launch.mlir",
            "testdata/xla_launch_xla_reduce_window.mlir",
        ],
        tags = ["no_oss"],
        deps = [
            "//tensorflow/compiler/mlir/tensorflow",
            "//tensorflow/compiler/mlir/tfrt:import_model",
            "//tensorflow/compiler/mlir/tfrt:saved_model",
            "//tensorflow/core:test",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 26 01:22:34 UTC 2023
    - 1011 bytes
    - Viewed (0)
  7. src/go/types/instantiate_test.go

    			"package equivalentinterfaces; type T[P any] int",
    			"T", []Type{
    				NewInterfaceType([]*Func{NewFunc(nopos, nil, "M", emptySignature)}, nil),
    			},
    			"T", []Type{
    				NewInterfaceType(
    					nil,
    					[]Type{
    						NewInterfaceType([]*Func{NewFunc(nopos, nil, "M", emptySignature)}, nil),
    					},
    				),
    			},
    			true,
    		},
    		{
    			// int|string is equivalent to string|int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/go.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package obj
    
    // go-specific code shared across loaders (5l, 6l, 8l).
    
    func Nopout(p *Prog) {
    	p.As = ANOP
    	p.Scond = 0
    	p.From = Addr{}
    	p.RestArgs = nil
    	p.Reg = 0
    	p.To = Addr{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 21:05:03 UTC 2017
    - 342 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/tests/bridge/BUILD

        licenses = ["notice"],
    )
    
    glob_lit_tests(
        name = "all_tests",
        data = [":test_utilities"],
        # TODO: b/288344501 - Enable OSS tests again when stable-quant-opt works well.
        default_tags = [
            "no_oss",
            "no_pip",
        ],
        driver = "//tensorflow/compiler/mlir/quantization/stablehlo:run_lit.sh",
        size_override = {
        },
        tags_override = {
        },
        test_file_exts = ["mlir"],
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 23 17:01:13 UTC 2023
    - 987 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/BUILD

        name = "all_tests",
        data = [
            ":debug_info_files",
            ":test_utilities",
        ],
        driver = "@llvm-project//mlir:run_lit.sh",
        tags_override = {
            "error-message-with-source-info.pbtxt": ["no_oss"],  # TODO(b/150946057): to be fixed on oss.
        },
        test_file_exts = ["pbtxt"],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 15:18:46 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top