Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,052 for exportId (1.37 sec)

  1. test/fixedbugs/issue15071.dir/exp.go

    // Copyright 2016 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.
    
    package exp
    
    func Exported(x int) int {
    	return inlined(x)
    }
    
    func inlined(x int) int {
    	y := 0
    	switch {
    	case x > 0:
    		y += 5
    		return 0 + y
    	case x < 1:
    		y += 6
    		fallthrough
    	default:
    		y += 7
    		return 2 + y
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:39:41 UTC 2019
    - 378 bytes
    - Viewed (0)
  2. test/fixedbugs/issue24173.go

    // license that can be found in the LICENSE file.
    
    package p
    
    type arrayAlias = [10]int
    type mapAlias = map[int]int
    type sliceAlias = []int
    type structAlias = struct{}
    
    func Exported() {
    	_ = arrayAlias{}
    	_ = mapAlias{}
    	_ = sliceAlias{}
    	_ = structAlias{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 20:18:37 UTC 2018
    - 381 bytes
    - Viewed (0)
  3. test/fixedbugs/bug461.go

    // Copyright 2012 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.
    
    // part two of issue 4124. Make sure reflect doesn't mark the field as exported.
    
    package main
    
    import "reflect"
    
    var T struct {
    	int
    }
    
    func main() {
    	v := reflect.ValueOf(&T)
    	v = v.Elem().Field(0)
    	if v.CanSet() {
    		panic("int should be unexported")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 426 bytes
    - Viewed (0)
  4. test/typeparam/issue47514.go

    // run
    
    // Copyright 2021 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.
    
    // Test that closures inside a generic function are not exported,
    // even though not themselves generic.
    
    package main
    
    func Do[T any]() {
    	_ = func() string {
    		return ""
    	}
    }
    
    func main() {
    	Do[int]()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 373 bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/ArtifactFilterManager.java

    public interface ArtifactFilterManager {
        /**
         * Returns a filter for core + extension artifacts.
         *
         * @return the artifact filter
         * @deprecated use {@code META-INF/maven/extension.xml} to define artifacts exported by Maven core and plugin
         *             extensions.
         */
        ArtifactFilter getArtifactFilter();
    
        /**
         * Returns a filter for only the core artifacts.
         *
         * @return the artifact filter
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 15 14:24:56 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow_to_stablehlo/python/pywrap_tensorflow_to_stablehlo.cc

          },
          R"pbdoc(
            Converts a TensorFlow SavedModel into StableHLO bytecode.
    
            * input-path: The path to the input TensorFlow SavedModel.
            * exported-model-signatures: Comma-separated list of exported model
              signatures to convert.
            * tag_names: Comma-separated list of tags for loading SavedModel.
            * input-arg-shapes: A string representation of input argument shapes for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow_to_stablehlo/README.md

        --input-path=/path/to/model \
        [--exported-model-signatures=signature1,signature2] \
        [--tag-names=tag1,tag2] \
        [--input-arg-shapes-str=arg-name:shape,...] \
        [--e] \
        [--output-filename=/path/to/output.mlir]
    ```
    
    * `--input-path`: The path to the input TensorFlow SavedModel or MLIR module
      with .mlir extension.
    * `--exported-model-signatures`: Comma-separated list of exported model
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/ide/idea/groovy/build.gradle

            project.modulePaths.clear()
        }
    }
    // end::project-before-merged[]
    
    
    // tag::module-when-merged[]
    idea.module.iml {
        whenMerged { module ->
            module.dependencies*.exported = true
        }
    }
    // end::module-when-merged[]
    
    // tag::project-with-xml[]
    idea.project.ipr {
        withXml { provider ->
            provider.node.component
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 777 bytes
    - Viewed (0)
  9. ci/official/README.md

        `TFCI` env param pointing to a list of `env` files.
    2.  `utilities/setup.sh`, initialized by all top-level scripts, reads and sets
        values from those `TFCI` paths.
        -   `set -a` / `set -o allexport` exports the variables from `env` files so
            all scripts can use them.
        -   `utilities/setup_docker.sh` creates a container called `tf` with all
            `TFCI_` variables shared to it.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. test/typeparam/interfacearg.go

    package main
    
    type I interface{}
    
    type _S[T any] struct {
    	x *T
    }
    
    // F is a non-generic function, but has a type _S[I] which is instantiated from a
    // generic type. Test that _S[I] is successfully exported.
    func F() {
    	v := _S[I]{}
    	if v.x != nil {
    		panic(v)
    	}
    }
    
    // Testing the various combinations of method expressions.
    type S1 struct{}
    
    func (*S1) M() {}
    
    type S2 struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 692 bytes
    - Viewed (0)
Back to top