Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 1,052 for exportId (0.58 sec)

  1. src/cmd/vendor/golang.org/x/text/internal/internal.go

    // Copyright 2015 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 internal contains non-exported functionality that are used by
    // packages in the text repository.
    package internal // import "golang.org/x/text/internal"
    
    import (
    	"sort"
    
    	"golang.org/x/text/language"
    )
    
    // SortTags sorts tags in place.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. test/fixedbugs/issue14164.dir/a.go

    // G is not inlineable (at least via export data), so
    // the issue is moot, here.
    func G(x interface{}) bool {
    	type t0 interface {
    		f()
    	}
    	_, ok := x.(interface {
    		t0
    	})
    	return ok
    }
    
    // Like G but now the embedded interface is declared
    // at package level. This function is inlineable via
    // export data. The export data representation is like
    // for F.
    func H(x interface{}) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 01 20:29:19 UTC 2016
    - 1.1K bytes
    - Viewed (0)
  3. tests/integration/pilot/mcs/autoexport/autoexport_test.go

    	framework.NewTest(t).
    		Run(func(ctx framework.TestContext) {
    			serviceExportGVR := common.KubeSettings(ctx).ServiceExportGVR()
    			// Verify that ServiceExport is created automatically for services.
    			ctx.NewSubTest("exported").RunParallel(
    				func(ctx framework.TestContext) {
    					serviceB := match.ServiceName(echo.NamespacedName{Name: common.ServiceB, Namespace: echos.Namespace})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. src/io/export_test.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 io
    
    // exported for test
    var ErrInvalidWrite = errInvalidWrite
    var ErrWhence = errWhence
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 17:03:55 UTC 2022
    - 283 bytes
    - Viewed (0)
  5. src/go/doc/testdata/predeclared.1.golden

    // Package predeclared is a go/doc test for handling of exported ...
    PACKAGE predeclared
    
    IMPORTPATH
    	testdata/predeclared
    
    FILENAMES
    	testdata/predeclared.go
    
    TYPES
    	// 
    	type bool int
    
    	// Must not be visible. 
    	func (b bool) String() string
    
    	// 
    	type error struct{}
    
    	// Must not be visible. 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 00:35:30 UTC 2016
    - 330 bytes
    - Viewed (0)
  6. test/fixedbugs/bug466.go

    // rundir
    
    // 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.
    
    // Issue 4159: exported inlinable functions squash
    // complex literals "a+bi" to "a+b".
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 277 bytes
    - Viewed (0)
  7. test/fixedbugs/bug467.go

    // compiledir
    
    // 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.
    
    // Exported data for inlining could forget types of
    // local variables declared in inlinable bodies.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 293 bytes
    - Viewed (0)
  8. test/fixedbugs/issue6789.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 6789: gccgo failed to find the hash function for an
    // unexported struct embedded in an exported struct.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 10 18:47:30 UTC 2013
    - 302 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/derived_shape_attr.mlir

    // RUN: tf-mlir-translate -mlir-to-graphdef %s -o - | FileCheck %s
    
    // Check that attributes that define derived shapes are exported.
    
    // CHECK: op: "PlaceholderWithDefault"
    // CHECK: shape
    // CHECK: unknown_rank: true
    // CHECK: name: "static"
    // CHECK: op: "PlaceholderWithDefault"
    // CHECK: shape {
    // CHECK-NEXT: }
    // CHECK: name: "static_10"
    // CHECK: op: "PlaceholderWithDefault"
    // CHECK: shape
    // CHECK: dim
    // CHECK: size: 10
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/main/java/org/gradle/language/objectivecpp/ObjectiveCppSourceSet.java

    import org.gradle.language.base.LanguageSourceSet;
    
    /**
     * A set of Objective-C++ source files.
     *
     * <p>An Objective-C++ source set contains a set of source files, together with an optional set of exported header files.</p>
     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'objective-cpp'
     * }
     *
     * model {
     *     components {
     *         main(NativeLibrarySpec) {
     *             sources {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top