Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 172 for excluded (0.24 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    								"name":  "kube-apiserver",
    								"port":  6443,
    								"field": "value",
    							},
    						},
    					}},
    				patchMyCRDV1Beta1Schema{
    					"set `field`'s maxItems to 2, which is exceeded by all of previous object's elements",
    					map[string]interface{}{
    						"properties": map[string]interface{}{
    							"field": map[string]interface{}{
    								"maxItems": 2,
    							},
    						},
    					}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

                                     func::FuncOp loop_body_func,
                                     const int num_replicas) {
      // Find all the ops that are to be included in the 'sc_forward' function which
      // will be executed on the SparseCore. Note, 'forward_pass_ops' is initially
      // seeded with ops from the input MLIR graph that have the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		gp21tmp = regInfo{inputs: []regMask{gp &^ tmp, gp &^ tmp}, outputs: []regMask{gp &^ tmp}, clobbers: tmp}
    
    		// R0 evaluates to 0 when used as the number of bits to shift
    		// so we need to exclude it from that operand.
    		sh21 = regInfo{inputs: []regMask{gp, ptr}, outputs: gponly}
    
    		addr    = regInfo{inputs: []regMask{sp | sb}, outputs: gponly}
    		addridx = regInfo{inputs: []regMask{sp | sb, ptrsp}, outputs: gponly}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  4. src/go/printer/testdata/parser.go

    		// labeled statement
    		colon := p.pos
    		p.next()
    		if label, isIdent := x[0].(*ast.Ident); labelOk && isIdent {
    			// Go spec: The scope of a label is the body of the function
    			// in which it is declared and excludes the body of any nested
    			// function.
    			stmt := &ast.LabeledStmt{label, colon, p.parseStmt()}
    			p.declare(stmt, p.labelScope, ast.Lbl, label)
    			return stmt
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/prove.go

    // mask is lt | eq | gt meaning v can be less than, equal to or
    // greater than w. When the execution path branches on the condition
    // `v op w` the set of relations is updated to exclude any
    // relation not possible due to `v op w` being true (or false).
    //
    // E.g.
    //
    //	r := relation(...)
    //
    //	if v < w {
    //	  newR := r & lt
    //	}
    //	if v >= w {
    //	  newR := r & (eq|gt)
    //	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/load.go

    			mainModulePrefix := MainModules.PathPrefix(mainModule)
    			if mainModulePrefix == "" {
    				pkg := suffix
    				if pkg == "builtin" {
    					// "builtin" is a pseudo-package with a real source file.
    					// It's not included in "std", so it shouldn't resolve from "."
    					// within module "std" either.
    					return "", errPkgIsBuiltin
    				}
    				return pkg, nil
    			}
    
    			pkg := pathpkg.Join(mainModulePrefix, suffix)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. tensorflow/c/c_api_function_test.cc

                string(TF_Message(s_)));
    }
    
    TEST_F(CApiFunctionTest, OutputOpNotInBody) {
      /*
       *                  |  |
       *                  v  v
       *                  add    scalar    (scalar not included in body)
       *                   |       |
       *                   v       v       (function has two outputs)
       */
      // Define
      TF_Operation* feed1 = Placeholder(func_graph_, s_, "feed1");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    		parent                  func(t time.Time) (context.Context, context.CancelFunc)
    		newReqWaitCtxExpected   bool
    		reqWaitLimitExpected    time.Duration
    	}{
    		{
    			name: "context deadline has exceeded",
    			parent: func(time.Time) (context.Context, context.CancelFunc) {
    				ctx, cancel := context.WithCancel(context.Background())
    				cancel()
    				return ctx, cancel
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                if (offset > fessConfig.getQueryMaxSearchResultOffsetAsInteger()) {
                    throw new ResultOffsetExceededException("The number of result size is exceeded.");
                }
    
                final QueryContext queryContext = buildQueryContext(queryHelper, queryFieldConfig, fessConfig);
    
                searchRequestBuilder.setFrom(offset).setSize(size);
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  10. src/go/printer/nodes.go

    	// ImportPaths to non-empty strings using only characters belonging
    	// to Unicode's L, M, N, P, and S general categories (the Graphic
    	// characters without spaces) and may also exclude the characters
    	// !"#$%&'()*,:;<=>?[\]^`{|} and the Unicode replacement character
    	// U+FFFD."
    	if s == "" {
    		return lit
    	}
    	const illegalChars = `!"#$%&'()*,:;<=>?[\]^{|}` + "`\uFFFD"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
Back to top