Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 444 for exportId (0.88 sec)

  1. src/cmd/compile/internal/types2/universe.go

    	}
    	// fix Obj link for named types
    	if typ := asNamed(obj.Type()); typ != nil {
    		typ.obj = obj.(*TypeName)
    	}
    	// exported identifiers go into package unsafe
    	scope := Universe
    	if obj.Exported() {
    		scope = Unsafe.scope
    		// set Pkg field
    		switch obj := obj.(type) {
    		case *TypeName:
    			obj.pkg = Unsafe
    		case *Builtin:
    			obj.pkg = Unsafe
    		default:
    			panic("unreachable")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. src/go/types/universe.go

    	}
    	// fix Obj link for named types
    	if typ := asNamed(obj.Type()); typ != nil {
    		typ.obj = obj.(*TypeName)
    	}
    	// exported identifiers go into package unsafe
    	scope := Universe
    	if obj.Exported() {
    		scope = Unsafe.scope
    		// set Pkg field
    		switch obj := obj.(type) {
    		case *TypeName:
    			obj.pkg = Unsafe
    		case *Builtin:
    			obj.pkg = Unsafe
    		default:
    			panic("unreachable")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. pilot/pkg/xds/endpoints/ep_filters.go

    //     clusters.
    //
    //  2. Enables Kubernetes MCS use cases, where endpoints for a service might be exported in one
    //     cluster but not another within the same network. By targeting the gateway for the cluster
    //     where the exported endpoints reside, we ensure that we only send traffic to exported endpoints.
    func (b *EndpointBuilder) selectNetworkGateways(nw network.ID, c cluster.ID) []model.NetworkGateway {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. docs/bucket/replication/setup_2site_existing_replication.sh

    	pkill -9 minio
    	rm -rf /tmp/multisitea
    	rm -rf /tmp/multisiteb
    	rm -rf /tmp/data
    }
    
    catch
    
    set -e
    export MINIO_CI_CD=1
    export MINIO_BROWSER=off
    export MINIO_ROOT_USER="minio"
    export MINIO_ROOT_PASSWORD="minio123"
    export MINIO_KMS_AUTO_ENCRYPTION=off
    export MINIO_PROMETHEUS_AUTH_TYPE=public
    export MINIO_KMS_SECRET_KEY=my-minio-key:OSMM+vkKUTCvQs9YL/CVMIMt43HFhkUpqJxTmGl6rYw=
    unset MINIO_KMS_KES_CERT_FILE
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/stdlib.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:generate go run generate.go
    
    // Package stdlib provides a table of all exported symbols in the
    // standard library, along with the version at which they first
    // appeared.
    package stdlib
    
    import (
    	"fmt"
    	"strings"
    )
    
    type Symbol struct {
    	Name    string
    	Kind    Kind
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/integtests/GroovyToJavaConversionIntegrationTest.groovy

                                    println "Checking property \${prop.name} on \${convertedClass.name}"
                                    if (convertedClass == org.gradle.plugins.ide.eclipse.model.AbstractClasspathEntry && prop.name == "exported") {
                                        return
                                    }
                                    if (convertedClass == org.gradle.plugins.signing.SigningExtension && prop.name == "required") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/types.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package typesinternal provides access to internal go/types APIs that are not
    // yet exported.
    package typesinternal
    
    import (
    	"go/token"
    	"go/types"
    	"reflect"
    	"unsafe"
    )
    
    func SetUsesCgo(conf *types.Config) bool {
    	v := reflect.ValueOf(conf).Elem()
    
    	f := v.FieldByName("go115UsesCgo")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. src/runtime/rand.go

    // and at sensitive moments in the runtime (such as during stack unwinding).
    // it is "cheap" in the sense of both expense and quality.
    //
    // cheaprand must not be exported to other packages:
    // the rule is that other packages using runtime-provided
    // randomness must always use rand.
    //
    // cheaprand should be an internal detail,
    // but widely used packages access it using linkname.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 14:32:47 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. pilot/pkg/model/virtualservice_test.go

    	}
    
    	createDelegateVs := func(name, namespace string, exportTo []string) config.Config {
    		return config.Config{
    			Meta: config.Meta{
    				GroupVersionKind: gvk.VirtualService,
    				Name:             name,
    				Namespace:        namespace,
    			},
    			Spec: &networking.VirtualService{
    				Hosts:    []string{},
    				Gateways: []string{"gateway"},
    				ExportTo: exportTo,
    				Http: []*networking.HTTPRoute{
    					{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/eclipse/EclipseClasspathFixture.groovy

                assert !entry.attributes.attribute.find { it.@name == key && it.@value == value }
            }
    
            void assertExported() {
                assert entry.@exported == 'true'
            }
    
            void assertNotExported() {
                assert !entry.@exported
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top