Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 1,052 for exportId (0.2 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/type_attr.mlir

    // RUN: tf-mlir-translate -mlir-to-graphdef %s -o - | FileCheck %s
    
    // Check that attributes that define types are exported.
    
    // CHECK: key: "Tinputs"
    // CHECK-NEXT:    value
    // CHECK-NEXT:      list
    // CHECK-NEXT:        type: DT_FLOAT
    
    // CHECK: key: "Toutputs"
    // CHECK-NEXT:    value
    // CHECK-NEXT:      list
    // CHECK-NEXT:        type: DT_FLOAT
    
    // CHECK: "extra_type_attr"
    // CHECK-NEXT:    value
    // CHECK-NEXT:      list
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    	}
    	scope := pkg.Scope()
    
    	// 2. package-level object?
    	if scope.Lookup(obj.Name()) == obj {
    		// Only exported objects (and non-exported types) have a path.
    		// Non-exported types may be referenced by other objects.
    		if _, ok := obj.(*types.TypeName); !ok && !obj.Exported() {
    			return "", fmt.Errorf("no path for non-exported %v", obj)
    		}
    		return Path(obj.Name()), nil
    	}
    
    	// 3. Not a package-level object.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/structtag/structtag.go

    	if field.Anonymous() {
    		return
    	}
    
    	if field.Exported() {
    		return
    	}
    
    	for _, enc := range [...]string{"json", "xml"} {
    		switch reflect.StructTag(tag).Get(enc) {
    		// Ignore warning if the field not exported and the tag is marked as
    		// ignored.
    		case "", "-":
    		default:
    			pass.Reportf(field.Pos(), "struct field %s has %s tag but is not exported", field.Name(), enc)
    			return
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/LibraryTest.groovy

    import org.gradle.util.Matchers
    import spock.lang.Specification
    
    
    class LibraryTest extends Specification {
        final static String XML_TEXT_TEMPLATE = '''
                        <classpathentry exported="true" kind="lib" path="/ant.jar" sourcepath="/ant-src.jar">
                            <attributes>
                                <attribute name="org.eclipse.jdt.launching.CLASSPATH_ATTR_LIBRARY_PATH_ENTRY" value="mynative"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/ApiClassExtractor.java

         * explicitly exported by the library (if any), and whether the class should be
         * included in the public API based on its visibility. If the list of exported
         * packages is empty (e.g. the library has not declared an explicit {@code api {...}}
         * specification, then package-private classes are included in the public API. If the
         * list of exported packages is non-empty (i.e. the library has declared an
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_savedmodel_passes.td

      let constructor = "::mlir::tf_saved_model::CreateConvertSessionInitializerToFunctionPass()";
    }
    
    def AddFunctionsForExportedNamesPass : Pass<"tf-saved-model-add-functions-for-exported-names", "ModuleOp"> {
      let summary = "Create a trampoline function for each exported name.";
      let description = [{
          This converts
            func.func @foo() attributes {tf_saved_model.exported_names = ["a", "b", "c"]}
          to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 09 19:11:34 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  7. src/internal/poll/fd.go

    func errClosing(isFile bool) error {
    	if isFile {
    		return ErrFileClosing
    	}
    	return ErrNetClosing
    }
    
    // ErrDeadlineExceeded is returned for an expired deadline.
    // This is exported by the os package as os.ErrDeadlineExceeded.
    var ErrDeadlineExceeded error = &DeadlineExceededError{}
    
    // DeadlineExceededError is returned for an expired deadline.
    type DeadlineExceededError struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:16:28 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. src/runtime/syscall_aix.go

    //
    // This is exported via linkname to assembly in the syscall package.
    //
    //go:nosplit
    //go:linkname syscall_Syscall
    func syscall_Syscall(fn, a1, a2, a3 uintptr) (r1, r2, err uintptr) {
    	return 0, 0, _EINVAL
    }
    
    // This is syscall.RawSyscall, it exists to satisfy some build dependency,
    // but it doesn't work.
    //
    // This is exported via linkname to assembly in the syscall package.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. src/go/doc/testdata/predeclared.0.golden

    // Package predeclared is a go/doc test for handling of exported ...
    PACKAGE predeclared
    
    IMPORTPATH
    	testdata/predeclared
    
    FILENAMES
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 00:35:30 UTC 2016
    - 159 bytes
    - Viewed (0)
  10. src/go/doc/testdata/predeclared.2.golden

    // Package predeclared is a go/doc test for handling of exported ...
    PACKAGE predeclared
    
    IMPORTPATH
    	testdata/predeclared
    
    FILENAMES
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 00:35:30 UTC 2016
    - 159 bytes
    - Viewed (0)
Back to top