Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 139 for excluded (0.21 sec)

  1. pkg/controller/statefulset/stateful_set_utils_test.go

    	"k8s.io/kubernetes/pkg/controller/history"
    	"k8s.io/utils/ptr"
    )
    
    // noopRecorder is an EventRecorder that does nothing. record.FakeRecorder has a fixed
    // buffer size, which causes tests to hang if that buffer's exceeded.
    type noopRecorder struct{}
    
    func (r *noopRecorder) Event(object runtime.Object, eventtype, reason, message string) {}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        }
      }
      if (VLOG_IS_ON(2) && !excludelist.empty()) {
        std::vector<string> vexcludelist(excludelist.begin(), excludelist.end());
        absl::c_sort(vexcludelist);
        VLOG(2) << "XLA clustering will exclude following TF operations from auto "
                   "clustering: "
                << absl::StrJoin(vexcludelist, " ");
      }
      return excludelist;
    }
    
    absl::flat_hash_set<string> GetOrCreateAllowlist() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  10. src/net/http/request.go

    	// needed.
    	// To prevent DNS rebinding attacks, server Handlers should
    	// validate that the Host header has a value for which the
    	// Handler considers itself authoritative. The included
    	// ServeMux supports patterns registered to particular host
    	// names and thus protects its registered Handlers.
    	//
    	// For client requests, Host optionally overrides the Host
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
Back to top