Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 146 for nameFor (0.23 sec)

  1. pkg/kube/krt/core.go

    // If implemented, this will be used to determine an objects' Labels
    type Labeler interface {
    	GetLabels() map[string]string
    }
    
    // Namer is an optional interface that can be implemented by collection types.
    // If implemented, this will be used to determine an objects' Name.
    type Namer interface {
    	GetName() string
    }
    
    // Namespacer is an optional interface that can be implemented by collection types.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. src/go/ast/filter.go

    	FilterUnassociatedComments
    	// If set, duplicate import declarations are excluded.
    	FilterImportDuplicates
    )
    
    // nameOf returns the function (foo) or method name (foo.bar) for
    // the given function declaration. If the AST is incorrect for the
    // receiver, it assumes a function instead.
    func nameOf(f *FuncDecl) string {
    	if r := f.Recv; r != nil && len(r.List) == 1 {
    		// looks like a correct receiver declaration
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/utils/perception_ops_utils_test.cc

        const SmallVector<mlir::Type, NOutput>& output_types) {
      auto func_type = builder->getFunctionType(input_types, output_types);
      auto func = func::FuncOp::create(
          mlir::NameLoc::get(builder->getStringAttr("fused_func")), "fused_func",
          func_type, {});
    
      func.addEntryBlock();
      mlir::StringAttr attr_value = builder->getStringAttr("MaxUnpooling2D");
      func->setAttr("tf._implements", attr_value);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 29 21:02:21 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  4. platforms/software/reporting/src/main/java/org/gradle/api/reporting/internal/DefaultReportContainer.java

        private NamedDomainObjectSet<T> enabled;
    
        public DefaultReportContainer(Class<? extends T> type, Instantiator instantiator, CollectionCallbackActionDecorator callbackActionDecorator) {
            super(type, instantiator, Report.NAMER, callbackActionDecorator);
    
            enabled = matching(new Spec<T>() {
                @Override
                public boolean isSatisfiedBy(T element) {
                    return element.getRequired().get();
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest.go

    		return false, nil
    	}
    	return true, nil
    }
    
    // checkName checks the provided name against the request
    func checkName(obj runtime.Object, name, namespace string, namer ScopeNamer) error {
    	objNamespace, objName, err := namer.ObjectName(obj)
    	if err != nil {
    		return errors.NewBadRequest(fmt.Sprintf(
    			"the name of the object (%s based on URL) was undeterminable: %v", name, err))
    	}
    	if objName != name {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 17K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/cmd/server/testing/testserver.go

    	}
    
    	getOpenAPIDefinitions := openapi.GetOpenAPIDefinitionsWithoutDisabledFeatures(generatedopenapi.GetOpenAPIDefinitions)
    	namer := openapinamer.NewDefinitionNamer(extensionsapiserver.Scheme)
    	config.GenericConfig.OpenAPIConfig = genericapiserver.DefaultOpenAPIConfig(getOpenAPIDefinitions, namer)
    
    	completedConfig := config.Complete()
    	server, err := completedConfig.New(genericapiserver.NewEmptyDelegate())
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 9K bytes
    - Viewed (1)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.css

      text-align: left;
    }
    #top table tr td:nth-child(6) {
      width: 100%;
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap;
    }
    #flathdr1, #flathdr2, #cumhdr1, #cumhdr2, #namehdr {
      cursor: ns-resize;
    }
    .hilite {
      background-color: #ebf5fb;
      font-weight: bold;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_main_function.cc

      llvm::SmallVector<Value> returning_values(output_count, Value());
      for (const auto& node_name : node_to_output_map.keys()) {
        auto node_output_tensors = node_to_output_map[node_name];
    
        NameLoc new_loc = NameLoc::get(builder.getStringAttr(node_name));
        int32_t max_tensor_index = 0;
        absl::c_for_each(node_output_tensors,
                         [&max_tensor_index](const OutputInfo& output_info) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/lift_variables.cc

                 << "failed to convert tensor (name: " << name.str() << ")";
        }
        ElementsAttr tensor_attr = tensor_attr_or.value();
    
        builder.create<tf_saved_model::GlobalTensorOp>(
            NameLoc::get(builder.getStringAttr(name.str())),
            builder.getStringAttr(name), tensor_attr,
            TypeAttr::get(tensor_attr.getType()), builder.getUnitAttr());
      }
    
      return success();
    }
    
    }  // namespace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. schema/index.go

    							err = fmt.Errorf(
    								"The composite tag of %s.%s cannot be empty",
    								field.Schema.Name,
    								field.Name)
    							return
    						}
    						subName = composite
    					}
    					name = field.Schema.namer.IndexName(
    						field.Schema.Table, subName)
    				}
    
    				if (k == "UNIQUEINDEX") || settings["UNIQUE"] != "" {
    					settings["CLASS"] = "UNIQUE"
    				}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Feb 04 07:49:19 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top