Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 837 for Unexport (0.79 sec)

  1. src/cmd/link/internal/ld/pe.go

    		if !ldr.AttrReachable(s) || !ldr.AttrCgoExportDynamic(s) {
    			continue
    		}
    		if len(dexport)+1 > cap(dexport) {
    			ctxt.Errorf(s, "pe dynexport table is full")
    			errorexit()
    		}
    
    		dexport = append(dexport, s)
    	}
    
    	sort.Slice(dexport, func(i, j int) bool { return ldr.SymExtname(dexport[i]) < ldr.SymExtname(dexport[j]) })
    }
    
    func addexports(ctxt *Link) {
    	ldr := ctxt.loader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/export.go

    Matthew Dempsky <******@****.***> 1692240312 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 19:36:28 UTC 2023
    - 838 bytes
    - Viewed (0)
  3. docs/debugging/inspect/export.go

    yanggang <******@****.***> 1667923082 +0800
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 08 15:58:02 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/serviceexportcache.go

    	for _, export := range exports {
    		uExport := export.(*unstructured.Unstructured)
    		es := exportedService{
    			namespacedName:  config.NamespacedName(uExport),
    			discoverability: make(map[host.Name]string),
    		}
    
    		// Generate the map of all hosts for this service to their discoverability policies.
    		clusterLocalHost := kubesr.ServiceHostname(uExport.GetName(), uExport.GetNamespace(), ec.opts.DomainSuffix)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/typecheck/iimport.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Indexed package import.
    // See iexport.go for the export data format.
    
    package typecheck
    
    import (
    	"cmd/compile/internal/base"
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/types"
    )
    
    // HaveInlineBody reports whether we have fn's inline body available
    // for inlining.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:52:50 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/main/resources/META-INF/gradle-plugins/org.gradle.swiftpm-export.properties

    Sterling Greene <******@****.***> 1700166003 -0500
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 80 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.h

    #include "tensorflow/core/protobuf/meta_graph.pb.h"
    #include "tensorflow/core/protobuf/saver.pb.h"
    
    namespace mlir::quant::stablehlo {
    
    // Suffix string for the module export step. Used for debugging.
    constexpr absl::string_view kExportStepSuffix = "_export";
    
    // Options when running passes for exporting an MLIR ModuleOp.
    struct ExportOptions {
      // If set to `true`, it runs `DuplicateShapeDeterminingConstantsPass` before
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/facts/facts.go

    // of type information in the compiler: during compilation of package P,
    // the compiler emits an export data file that describes the type of
    // every object (named thing) defined in package P, plus every object
    // indirectly reachable from one of those objects. Thus the downstream
    // compiler of package Q need only load one export data file per direct
    // import of Q, and it will learn everything about the API of package P
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. src/go/internal/gcimporter/iimport.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Indexed package import.
    // See cmd/compile/internal/gc/iexport.go for the export data format.
    
    package gcimporter
    
    import (
    	"bufio"
    	"bytes"
    	"encoding/binary"
    	"fmt"
    	"go/constant"
    	"go/token"
    	"go/types"
    	"internal/saferio"
    	"io"
    	"math"
    	"math/big"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. src/main/webapp/js/admin/popper.min.js.map

    variable to check\n * @returns {Boolean} answer to: is a function?\n */\nexport default function isFunction(functionToCheck) {\n  const getType = {};\n  return (\n    functionToCheck &&\n    getType.toString.call(functionToCheck) === '[object Function]'\n  );\n}\n","/**\n * Get CSS computed property of the given element\n * @method\n * @memberof Popper.Utils\n * @argument {Eement} element\n * @argument {String} property\n */\nexport default function getStyleComputedProperty(element, property) {\n  if...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 121K bytes
    - Viewed (0)
Back to top