Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,052 for exportId (0.46 sec)

  1. pilot/pkg/model/push_context_test.go

    					Namespace: "foo",
    					ExportTo:  sets.New(visibility.Private),
    				},
    			},
    			expect: true,
    		},
    		{
    			name:        "service whose namespace is bar has exportTo map with private",
    			pushContext: &PushContext{},
    			service: &Service{
    				Attributes: ServiceAttributes{
    					Namespace: "bar",
    					ExportTo:  sets.New(visibility.Private),
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  2. src/go/doc/testdata/b.go

    // Should only appear if AllDecls is set.
    type comparable struct{} // overrides a predeclared type comparable
    
    // ----------------------------------------------------------------------------
    // Exported declarations associated with non-exported types must always be shown.
    
    type notExported int
    
    const C notExported = 0
    
    const (
    	C1 notExported = iota
    	C2
    	c3
    	C4
    	C5
    )
    
    var V notExported
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 11 16:05:02 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  3. test/interface/private.dir/prog.go

    // Does not compile.
    
    package main
    
    import "./private1"
    
    type Exported interface {
    	private()
    }
    
    type Implementation struct{}
    
    func (p *Implementation) private() {}
    
    func main() {
    	var x Exported
    	x = new(Implementation)
    	x.private()
    
    	var px p.Exported
    	px = p.X
    
    	px.private()			// ERROR "private"
    
    	px = new(Implementation)	// ERROR "private"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 10 20:35:27 UTC 2012
    - 608 bytes
    - Viewed (0)
  4. src/go/doc/testdata/e.go

    // Don't show conflicting methods M embedded via an exported and non-exported
    // type.
    
    // T1 has no embedded (level 1) M method due to conflict.
    type T4 struct {
    	t2
    	T2
    }
    
    // ----------------------------------------------------------------------------
    // Don't show embedded methods of exported anonymous fields unless AllMethods
    // is set.
    
    type T4 struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tf_tfl_translate_cl.cc

                       "separated by ','"),
        llvm::cl::init("serve"));
    
    // NOLINTNEXTLINE
    opt<std::string> saved_model_exported_names(
        "tf-savedmodel-exported-names",
        llvm::cl::desc("Names to export from SavedModel, separated by ','. Empty "
                       "(the default) means export all."),
        llvm::cl::init(""));
    
    // NOLINTNEXTLINE
    opt<std::string> output_file_name("o", llvm::cl::desc("<output file>"),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. test/fixedbugs/issue18419.dir/other.go

    // Copyright 2017 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 other
    
    type Exported struct {
    	Member int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 09 16:13:52 UTC 2017
    - 258 bytes
    - Viewed (0)
  7. src/internal/types/testdata/check/importdecl0/importdecl0a.go

    import f2 "fmt"
    
    // reflect.flag must not be visible in this package
    type flag int
    type _ reflect.flag /* ERROR "name flag not exported by package reflect" */
    
    // imported package name may conflict with local objects
    type reflect /* ERROR "reflect already declared" */ int
    
    // dot-imported exported objects may conflict with local objects
    type Value /* ERROR "Value already declared through dot-import of package reflect" */ struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/ExternalDependency.java

         */
        @Nullable
        File getJavadoc();
    
        /**
         * Marks this dependency as exported.
         *
         * @return whether this dependency needs to be exported.
         * @since 2.5
         */
        boolean isExported();
    
        /**
         * Returns the Gradle module information for this dependency, or {@code null} if the dependency does not
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ContainerTest.groovy

    import groovy.xml.XmlParser
    import spock.lang.Specification
    
    
    class ContainerTest extends Specification {
        final static String XML_TEXT = '''
                    <classpathentry exported="true" kind="con" path="somePath">
                        <attributes>
                            <attribute name="org.eclipse.jdt.launching.CLASSPATH_ATTR_LIBRARY_PATH_ENTRY" value="mynative"/>
                        </attributes>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. platforms/software/plugins-version-catalog/src/main/java/org/gradle/api/plugins/catalog/VersionCatalogPlugin.java

                    assemble.dependsOn(exported.getArtifacts());
                });
            });
    
            AdhocComponentWithVariants versionCatalog = softwareComponentFactory.adhoc("versionCatalog");
            project.getComponents().add(versionCatalog);
            versionCatalog.addVariantsFromConfiguration(exported, new JavaConfigurationVariantMapping("compile", true));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top