Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for Decisions (0.34 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. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. tensorflow/c/c_api.h

    //
    // Questions left to address:
    // * Might at some point need a way for callers to provide their own Env.
    // * Maybe add TF_TensorShape that encapsulates dimension info.
    //
    // Design decisions made:
    // * Backing store for tensor memory has an associated deallocation
    //   function.  This deallocation function will point to client code
    //   for tensors populated by the client.  So the client can do things
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  9. 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)
  10. pkg/controller/history/controller_history_test.go

    		for i := range test.revisions {
    			informer.Informer().GetIndexer().Add(test.revisions[i])
    		}
    
    		history := NewHistory(client, informer.Lister())
    		revisions, err := history.ListControllerRevisions(test.parent, test.selector)
    		if err != nil {
    			t.Errorf("%s: %s", test.name, err)
    		}
    		got := make(map[string]bool)
    		for i := range revisions {
    			got[revisions[i].Name] = true
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
Back to top