Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for decisions (0.19 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    		// Versioned params must be nil to pass the test
    		if versionedParams != nil {
    			return validating.ValidateResult{
    				Decisions: []validating.PolicyDecision{
    					{
    						Action: validating.ActionAdmit,
    					},
    				},
    			}
    		}
    		return validating.ValidateResult{
    			Decisions: []validating.PolicyDecision{
    				{
    					Action:  validating.ActionDeny,
    					Message: "Denied",
    				},
    			},
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // equally performant.  Some clustering decision are likely to improve
      // performance much more than others, and we cannot order contractions on this
      // cost function, nor can we look at global information while deciding on
      // individual edges to contract.  Instead, we will make decisions on these
      // important edges then make decisions on all other edges, causing the highest
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. tests/integration/security/authz_test.go

    								body = "RBAC: access denied"
    							}
    
    							opts := echo.CallOptions{
    								// Use a fake IP address to bypass DNS lookup (which will fail). The host
    								// header will be used for routing decisions.
    								Address: "10.4.4.4",
    								Port: echo.Port{
    									Name:        ports.HTTP.Name,
    									Protocol:    protocol.HTTP,
    									ServicePort: 80,
    								},
    								HTTP: echo.HTTP{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      for (auto& subgraph : model->subgraphs) {
        func_names.push_back(subgraph->name);
      }
    
      auto module = mlir::ModuleOp::create(base_loc);
      // We currently don't use this to make decisions, but we could
      // use it in exports or if there are breaking changes
      module->setAttr("tfl.schema_version",
                      builder.getI32IntegerAttr(model->version));
      if (!model->description.empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  5. src/runtime/traceback.go

    	// (with R29 = RSP - 8 in Go functions).
    	// This is technically ABI-compatible but not standard.
    	// And it happens to end up mimicking the x86 layout.
    	// Other architectures may make different decisions.
    	if frame.varp > frame.sp && framepointer_enabled {
    		frame.varp -= goarch.PtrSize
    	}
    
    	frame.argp = frame.fp + sys.MinFrameSize
    
    	// Determine frame's 'continuation PC', where it can continue.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.31.md

    - This PR adds tracing support to the kubelet's read-only endpoint, which currently does not have tracing. It makes use the WithPublicEndpoint option to prevent callers from influencing sampling decisions. ([#121770](https://github.com/kubernetes/kubernetes/pull/121770), [@frzifus](https://github.com/frzifus)) [SIG Node]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    [[sec:task_input_output_parallelism]]
    === Task parallelism
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  8. pkg/kubelet/server/server_test.go

    		},
    		attributesFunc: func(u user.Info, req *http.Request) authorizer.Attributes {
    			return &authorizer.AttributesRecord{User: u}
    		},
    		authorizeFunc: func(a authorizer.Attributes) (decision authorizer.Decision, reason string, err error) {
    			return authorizer.DecisionAllow, "", nil
    		},
    	}
    	server := NewServer(
    		fw.fakeKubelet,
    		stats.NewResourceAnalyzer(fw.fakeKubelet, time.Minute, &record.FakeRecorder{}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  9. src/math/big/float_test.go

    		for i := 0; i < n; i++ {
    			x.Add(&x, &one)
    		}
    		if x.Cmp(new(Float).SetInt64(n)) != 0 {
    			t.Errorf("prec = %d: got %s; want %d", prec, &x, n)
    		}
    	}
    }
    
    // Selected precisions with which to run various tests.
    var precList = [...]uint{1, 2, 5, 8, 10, 16, 23, 24, 32, 50, 53, 64, 100, 128, 500, 511, 512, 513, 1000, 10000}
    
    // Selected bits with which to run various tests.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  10. src/runtime/map.go

    						// presence of iterators, as our evacuation decision must
    						// match whatever decision the iterator made.
    						// Fortunately, we have the freedom to send these keys either
    						// way. Also, tophash is meaningless for these kinds of keys.
    						// We let the low bit of tophash drive the evacuation decision.
    						// We recompute a new random tophash for the next level so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top