Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for moduleB (0.18 sec)

  1. src/cmd/go/alldocs.go

    // module and then dependencies sorted by module path.
    // A pattern containing "..." specifies the active modules whose
    // module paths match the pattern.
    // A query of the form path@version specifies the result of that query,
    // which is not limited to active modules.
    // See 'go help modules' for more about module queries.
    //
    // The template function "module" takes a single string argument
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    };
    
    ShapeInference::ShapeInference(int64_t graph_version, ModuleOp module,
                                   bool propagate_caller_callee_constants,
                                   ArrayRef<TypeID> ops_to_skip)
        : tf_dialect_(module->getContext()->getLoadedDialect<TensorFlowDialect>()),
          symbol_users_(symbol_table_, module),
          graph_version_(graph_version),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    def XlaCallModuleSerializationPass
        : Pass<"tf-xla-call-module-serialization", "ModuleOp"> {
      let summary = "Serializes StableHLO functions from top-level module into `tf.XlaCallModule`'s `module` attribute";
    
      let description = [{
        This pass collects StableHLO functions referenced from `tf.XlaCallModule`'s
        `_entry_function` attribute into a module, serializes the module into MLIR
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      FuncOp main_fn = module.lookupSymbol<FuncOp>("main");
      if (!main_fn) {
        int entry_func_count = 0;
        for (auto fn : module.getOps<FuncOp>()) {
          auto attrs = fn->getAttrOfType<mlir::DictionaryAttr>("tf.entry_function");
          if (attrs && !attrs.empty()) {
            ++entry_func_count;
          }
        }
    
        // Verify that module has a least one enrty function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    	if cfg.BuildTrimpath {
    		// When -trimpath is used with a package built from the module cache,
    		// its debug information refers to the module path and version
    		// instead of the directory.
    		if p.Module != nil {
    			fmt.Fprintf(h, "module %s@%s\n", p.Module.Path, p.Module.Version)
    		}
    	} else if p.Goroot {
    		// The Go compiler always hides the exact value of $GOROOT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    			klog.V(vLevel).InfoS("Image garbage collection succeeded")
    		}
    	}, ImageGCPeriod, wait.NeverStop)
    }
    
    // initializeModules will initialize internal modules that do not require the container runtime to be up.
    // Note that the modules here must not depend on modules that are not initialized here.
    func (kl *Kubelet) initializeModules() error {
    	// Prometheus metrics.
    	metrics.Register(
    		collectors.NewVolumeStatsCollector(kl),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    	// in the first loaded module, even though it is local.
    	//
    	// (An hypothesis, formed without looking in the dyld sources:
    	// these special symbols have no size, so their address
    	// matches a real symbol. The dynamic linker assumes we
    	// want the normal symbol with the same address and finds
    	// it in the other module.)
    	//
    	// To work around this we lay out the symbls whose
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

            conntrack_module="nf_conntrack_ipv4"
          fi
    
          if ! sudo modprobe -a ip_vs ip_vs_rr ip_vs_wrr ip_vs_sh ${conntrack_module}; then
            # If IPVS modules are not present, make sure the node does not come up as
            # healthy.
            exit 1
          fi
          params+=" --proxy-mode=ipvs --ipvs-sync-period=1m --ipvs-min-sync-period=10s"
          ;;
        nftables)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  9. pkg/config/validation/validation.go

    		return fmt.Errorf(`invalid header %q: header cannot have ":" prefix`, name)
    	}
    	return nil
    }
    
    // Copy from https://github.com/bufbuild/protoc-gen-validate/blob/a65858624dd654f2fb306d6af60f737132986f44/module/checker.go#L18
    var httpHeaderValueRegexp = regexp.MustCompile("^[^\u0000-\u0008\u000A-\u001F\u007F]*$")
    
    // ValidateHTTPHeaderValue validates a header value for Envoy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top