Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 509 for greatest (0.12 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_main_function.cc

            [](const std::string& output_name, const StringRef fn_name) {
              return absl::StrCat(fn_name.str(), "_", output_name);
            });
      }
    }
    
    // Creates a main function which calls other exported functions.
    bool CreateMainFunction(ModuleOp module_op) {
      MLIRContext* context = module_op.getContext();
      OpBuilder builder(context);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/sym.go

    	return ctxt
    }
    
    // LookupDerived looks up or creates the symbol with name derived from symbol s.
    // The resulting symbol will be static iff s is.
    func (ctxt *Link) LookupDerived(s *LSym, name string) *LSym {
    	if s.Static() {
    		return ctxt.LookupStatic(name)
    	}
    	return ctxt.Lookup(name)
    }
    
    // LookupStatic looks up the static symbol with name name.
    // If it does not exist, it creates it.
    func (ctxt *Link) LookupStatic(name string) *LSym {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    )
    
    func TestGetKubeConfigSpecsFailsIfCADoesntExists(t *testing.T) {
    	// Create temp folder for the test case (without a CA)
    	tmpdir := testutil.SetupTempDir(t)
    	defer os.RemoveAll(tmpdir)
    
    	// Creates an InitConfiguration pointing to the pkidir folder
    	cfg := &kubeadmapi.InitConfiguration{
    		ClusterConfiguration: kubeadmapi.ClusterConfiguration{
    			CertificatesDir: tmpdir,
    		},
    	}
    
    	// Executes getKubeConfigSpecs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    			continue
    		}
    		if err := createKubeConfigFiles(outDir, cfg, file); err != nil {
    			return err
    		}
    	}
    	return nil
    }
    
    // CreateKubeConfigFile creates a kubeconfig file.
    // If the kubeconfig file already exists, it is used only if evaluated equal; otherwise an error is returned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
  5. cmd/kube-proxy/app/server.go

    	fs.DurationVar(&o.config.IPTables.MinSyncPeriod.Duration, "iptables-min-sync-period", o.config.IPTables.MinSyncPeriod.Duration, "The minimum period between iptables rule resyncs (e.g. '5s', '1m', '2h22m'). A value of 0 means every...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_initializer_function_ops_to_main.cc

      auto builder = OpBuilder::atBlockTerminator(&main_graph_op.GetBody());
      builder.create<FetchOp>(main_graph_op.getLoc(), std::move(fetches));
    }
    
    // Creates a new Location for the initializer function. This creates a loc by
    // attaching a to the initializer function's type so that it is identifiable.
    Location CreateInitOpLoc(MLIRContext* ctx, func::FuncOp init_func_ops) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:54:52 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. pkg/scheduler/util/assumecache/assume_cache.go

    	objInfo, ok := obj.(*objInfo)
    	if !ok {
    		return []string{""}, &WrongTypeError{TypeName: "objInfo", Object: obj}
    	}
    	return c.indexFunc(objInfo.latestObj)
    }
    
    // NewAssumeCache creates an assume cache for general objects.
    func NewAssumeCache(logger klog.Logger, informer Informer, description, indexName string, indexFunc cache.IndexFunc) *AssumeCache {
    	c := &AssumeCache{
    		logger:      logger,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

      return mlir::success();
    }
    
    // Creates a tf::ConcatOp that merges `input` values in `concat_dimension`.
    mlir::TF::ConcatOp CreateConcatOp(const int concat_dimension,
                                      const mlir::Location& location,
                                      mlir::ArrayRef<mlir::Value> inputs,
                                      mlir::OpBuilder* builder) {
      // Creates a const op to hold concat dimension value.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/cluster_tf_ops_pass.cc

            return WalkResult::interrupt();
          }
        }
        return WalkResult::advance();
      });
    
      if (result.wasInterrupted()) return std::nullopt;
    
      return metadatas;
    }
    
    // Creates functions in the given module using the given FunctionMetadatas.
    void CreateFunctions(ModuleOp module_op,
                         llvm::StringMap<FunctionMetadata> &metadatas) {
      MLIRContext *context = module_op.getContext();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. pkg/proxy/config/config.go

    type EndpointSliceConfig struct {
    	listerSynced  cache.InformerSynced
    	eventHandlers []EndpointSliceHandler
    	logger        klog.Logger
    }
    
    // NewEndpointSliceConfig creates a new EndpointSliceConfig.
    func NewEndpointSliceConfig(ctx context.Context, endpointSliceInformer discoveryv1informers.EndpointSliceInformer, resyncPeriod time.Duration) *EndpointSliceConfig {
    	result := &EndpointSliceConfig{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top