Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for tparams (0.19 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

    // params, otherwise N is the number of parameters selected by the binding.
    //
    // The CEL expressions of a policy must have a computed CEL cost below the maximum
    // CEL budget. Each evaluation of the policy is given an independent CEL cost budget.
    // Adding/removing policies, bindings, or params can not affect whether a
    // given (policy, binding, param) combination is within its own CEL budget.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. cmd/peer-rest-server.go

    	return madminStorageInfo.NewJSONWith(&info), nil
    }
    
    // ServerInfoHandler - returns Server Info
    func (s *peerRESTServer) ServerInfoHandler(params *grid.MSS) (*grid.JSON[madmin.ServerProperties], *grid.RemoteErr) {
    	r := http.Request{Host: globalLocalNodeName}
    	metrics, err := strconv.ParseBool(params.Get(peerRESTMetrics))
    	if err != nil {
    		return nil, grid.NewRemoteErr(err)
    	}
    	info := getLocalServerProperty(globalEndpoints, &r, metrics)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/types.go

    // params, otherwise N is the number of parameters selected by the binding.
    //
    // The CEL expressions of a policy must have a computed CEL cost below the maximum
    // CEL budget. Each evaluation of the policy is given an independent CEL cost budget.
    // Adding/removing policies, bindings, or params can not affect whether a
    // given (policy, binding, param) combination is within its own CEL budget.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    def OptimizeIdentityGatherNdOp : Pat<
      (TFL_GatherNdOp:$output $params, (Arith_ConstantOp I32ElementsAttr: $indices)),
      (replaceWithValue $params),
      [(CanOptimizeIdentityGatherNdOrScatterNdOp $params, $indices, $output)]>;
    
    def OptimizeIdentityScatterNdOp : Pat<
      (TFL_ScatterNdOp:$output (Arith_ConstantOp I32ElementsAttr: $indices), $params, $ignored),
      (replaceWithValue $params),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  5. tests/integration/ambient/baseline_test.go

      # we send directly to a Pod IP here. This is essentially headless
      - address: {{.IngressIp}} # TODO won't work with DNS resolution tests
        ports:
          http: {{.IngressHttpPort}}`).
    				WithParams(param.Params{}.SetWellKnown(param.Namespace, apps.Namespace))
    
    			ips, ports := istio.DefaultIngressOrFail(t, t).HTTPAddresses()
    			for _, tc := range testCases {
    				tc := tc
    				for i, ip := range ips {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

                @Override
                public Object newInstance(ServiceLookup services, InstanceGenerator nested, @Nullable Describable displayName, Object[] params) throws InvocationTargetException, IllegalAccessException, InstantiationException {
                    return strategy.newInstance(services, nested, displayName, params);
                }
    
                @Override
                public boolean requiresService(Class<?> serviceType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    		return "", false
    	}
    
    	params := name.FuncType.Params
    	args := call.Call.Args
    	end := call.Call.End()
    
    	// Avoid a crash if the number of arguments doesn't match
    	// the number of parameters.
    	// This will be caught when the generated file is compiled.
    	if len(args) != len(params) {
    		return "", false
    	}
    
    	any := false
    	for i, param := range params {
    		if p.needsPointerCheck(f, param.Go, args[i]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      // Check if the quantization params of the minimum/maximum inputs match
      // after requantization
      EXPECT_THAT(input1->quantization->scale, Eq(input2->quantization->scale));
      EXPECT_THAT(input1->quantization->zero_point,
                  Eq(input2->quantization->zero_point));
    
      // Check the input quantization params match the output ones.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  9. src/net/http/fs_test.go

    			}
    		}
    		if len(rt.ranges) > 1 {
    			typ, params, err := mime.ParseMediaType(ct)
    			if err != nil {
    				t.Errorf("range=%q content-type = %q; %v", rt.r, ct, err)
    				continue
    			}
    			if typ != "multipart/byteranges" {
    				t.Errorf("range=%q content-type = %q; want multipart/byteranges", rt.r, typ)
    				continue
    			}
    			if params["boundary"] == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/api_test.go

    		{"mParam", lookup("t").(*Named).Method(0).Type().(*Signature).Params().At(0)},
    		{"mResult", lookup("t").(*Named).Method(0).Type().(*Signature).Results().At(0)},
    
    		// Interface methods
    		{"interfaceMethod", lookup("i").Underlying().(*Interface).Method(0)},
    
    		// Function type fields
    		{"ftParam", lookup("ft").Underlying().(*Signature).Params().At(0)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
Back to top