Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 134 for exportable (0.29 sec)

  1. pilot/pkg/serviceregistry/kube/controller/autoserviceexportcontroller_test.go

    	client.RunAndWait(stop)
    	go sc.Run(stop)
    
    	t.Run("exportable", func(t *testing.T) {
    		createSimpleService(t, client, "exportable-ns", "foo")
    		assertServiceExport(t, client, "exportable-ns", "foo", true)
    	})
    
    	t.Run("unexportable", func(t *testing.T) {
    		createSimpleService(t, client, "unexportable-ns", "foo")
    		assertServiceExport(t, client, "unexportable-ns", "foo", false)
    	})
    
    	t.Run("no overwrite", func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 06 16:02:24 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. test/closure7.go

    // Copyright 2020 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 main
    
    func g(f func()) {
    }
    
    // Must have exportable name
    func F() {
    	g(func() {
    		ch := make(chan int)
    		for {
    			select {
    			case <-ch:
    				return
    			default:
    			}
    		}
    	})
    }
    
    func main() {
    	F()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 01 18:28:05 UTC 2021
    - 373 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/api/v2/tf_dialect_to_executor.h

    // dialect that is suitable to be exported to GraphDef. Graph -> MLIR -> Graph
    // is not perfectly round trippable, so this API will attempt to make the module
    // exportable and verify some properties of the Tensorflow Executor MLIR that
    // are required by Graph Export. It will return an error if it cannot.
    //
    // Input: A MLIR Module in the Tensorflow Dialect with no
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 03 23:19:33 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/api/v1/tf_dialect_to_executor.h

    // dialect that is suitable to be exported to GraphDef. Graph -> MLIR -> Graph
    // is not perfectly round trippable, so this API will attempt to make the module
    // exportable and verify some properties of the Tensorflow Executor MLIR that
    // are required by Graph Export. It will return an error if it cannot.
    //
    // Input: A MLIR Module in the Tensorflow Dialect with no
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 11 18:45:46 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_import_meta.txt

    ! stderr 'internal error'
    stderr '^importall[/\\]x.go:3:8: "all" is not an importable package; see ''go help packages''$'
    
    ! go list -deps ./importcmd
    ! stderr 'internal error'
    stderr '^importcmd[/\\]x.go:3:8: "cmd" is not an importable package; see ''go help packages''$'
    
    ! go list -deps ./importstd
    ! stderr 'internal error'
    stderr '^importstd[/\\]x.go:3:8: "std" is not an importable package; see ''go help packages''$'
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 22 20:45:27 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/import_main.txt

    ! go build p1
    stderr 'import "x" is a program, not an importable package'
    
    # ... even in that package's test.
    go build p2
    ! go test -c p2
    stderr 'import "x" is a program, not an importable package'
    
    # ... even if that package's test is an xtest.
    go build p3
    ! go test p3
    stderr 'import "x" is a program, not an importable package'
    
    # ... even if that package is a package main
    go build p4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 18 21:48:16 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/util/mime.map

    image/png                      png              # Portable Network Graphics
    image/tiff                     tiff tif         # TIFF image file
    image/x-cmu-raster             ras              #
    image/x-portable-anymap        pnm              #
    image/x-portable-bitmap        pbm              #
    image/x-portable-graymap       pgm              #
    image/x-portable-pixmap        ppm              #
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 5.9K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/cover_import_main_loop.txt

    [compiler:gccgo] skip # gccgo has no cover tool
    
    ! go test -n importmain/test
    stderr 'not an importable package' # check that import main was detected
    ! go test -n -cover importmain/test
    stderr 'not an importable package' # check that import main was detected
    
    -- go.mod --
    module importmain
    
    go 1.16
    -- ismain/main.go --
    package main
    
    import _ "importmain/test"
    
    func main() {}
    -- test/test.go --
    package test
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 532 bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/exceptions/ContextAwareException.java

        public ContextAwareException(Throwable t) {
            initCause(t);
        }
    
        /**
         * Returns the reportable causes for this failure.
         *
         * @return The causes. Never returns null, returns an empty list if this exception has no reportable causes.
         */
        public List<Throwable> getReportableCauses() {
            final List<Throwable> causes = new ArrayList<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 13:32:53 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/stablehlo/stablehlo.py

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    """StableHLO Portable Python APIs.
    
    This setup only exports the the StableHLO Portable C++ APIs, which have
    signatures that do not rely on MLIR classes.
    
    Exporting all of MLIR Python bindings to TF OSS has high maintenance
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 16 19:48:21 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top