Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,052 for exportId (0.42 sec)

  1. test/fixedbugs/issue18419.dir/test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import "./other"
    
    func InMyCode(e *other.Exported) {
    	e.member() // ERROR "e\.member undefined .cannot refer to unexported field or method other\.\(\*Exported\)\.member.|unexported field or method"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 17:26:06 UTC 2020
    - 414 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.h

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.h.inc"
    
    namespace mlir {
    namespace tf_saved_model {
    
    // Returns the list of exported names for `op`.
    // An empty list means `op` is not exported.
    SmallVector<StringRef, 2> GetExportedNames(Operation *op);
    
    // Returns true if `op` is exported.
    bool IsExported(Operation *op);
    
    // Returns true if `module` has tf_saved_model linkage semantics.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 03:21:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/split_into_island_per_op_pass.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    
    // This pass is used in preparation for Graph export.
    // The GraphDef exporter expects each op to be in its own island.
    // This pass puts the IR in that form.
    //
    // We do this as an IR->IR transform to keep the Graph exporter as simple as
    // possible.
    
    namespace mlir {
    namespace TF {
    
    namespace {
    
    #define GEN_PASS_DEF_SPLITINTOISLANDPEROPPASS
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/SourceFolder.java

        @Override
        public int hashCode() {
            return Objects.hashCode(exported, accessRules, excludes, includes, getNativeLibraryLocation(), output, path);
        }
    
        @Override
        public String toString() {
            return "SourceFolder{path='" + path + "', dir='" + dir + "', nativeLibraryLocation='" + getNativeLibraryLocation() + "', exported=" + exported
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/doc/doc.go

    Doc accepts zero, one, or two arguments.
    
    Given no arguments, that is, when run as
    
    	go doc
    
    it prints the package documentation for the package in the current directory.
    If the package is a command (package main), the exported symbols of the package
    are elided from the presentation unless the -cmd flag is provided.
    
    When run with one argument, the argument is treated as a Go-syntax-like
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:52:29 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  6. utils/tests/utils.go

    			if reflect.ValueOf(expect).Kind() == reflect.Struct {
    				if reflect.ValueOf(got).NumField() == reflect.ValueOf(expect).NumField() {
    					exported := false
    					for i := 0; i < reflect.ValueOf(got).NumField(); i++ {
    						if fieldStruct := reflect.ValueOf(got).Type().Field(i); ast.IsExported(fieldStruct.Name) {
    							exported = true
    							field := reflect.ValueOf(got).Field(i)
    							t.Run(fieldStruct.Name, func(t *testing.T) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Mar 10 09:21:56 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. pilot/pkg/model/destination_rule.go

    				mergedRule.TrafficPolicy = rule.TrafficPolicy
    			}
    			// If there is no exportTo in the existing rule and
    			// the incoming rule has an explicit exportTo, use the
    			// one from the incoming rule.
    			if p.exportTo[resolvedHost].IsEmpty() && !exportToSet.IsEmpty() {
    				p.exportTo[resolvedHost] = exportToSet
    			}
    		}
    		if addRuleToProcessedDestRules {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 07:22:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. src/cmd/link/internal/wasm/asm.go

    		}
    		ctxt.Out.WriteByte(0x0b) // end
    	}
    
    	writeSecSize(ctxt, sizeOffset)
    }
    
    // writeExportSec writes the section that declares exports.
    // Exports can be accessed by the WebAssembly host, usually JavaScript.
    // The wasm_export_* functions and the linear memory get exported.
    func writeExportSec(ctxt *ld.Link, ldr *loader.Loader, lenHostImports int) {
    	sizeOffset := writeSecHeader(ctxt, sectionExport)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/VariableTest.groovy

    import org.gradle.util.Matchers
    import spock.lang.Specification
    
    
    class VariableTest extends Specification {
        final static String XML_TEXT_TEMPLATE = '''
                    <classpathentry exported="true" kind="var" path="/GRADLE_CACHE/ant.jar" sourcepath="/GRADLE_CACHE/ant-src.jar">
                        <attributes>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/virtualservice_conflictingmeshgatewayhosts.yaml

    spec:
      hosts:
      - ratings.team1.svc.cluster.local # shouldn't generate an error as this VirtualService doesn't conflict with VirtualService ratings.team1 due to exportTo setting
      - google.com # conflict with bar/ratings host `google.com` which export to all namespaces
      exportTo:
      - "."
      gateways:
      - istio-ingressgateway
      - mesh
      http:
      - route:
        - destination:
            host: ratings
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 08 15:13:29 UTC 2022
    - 3.3K bytes
    - Viewed (0)
Back to top