Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 806 for exportId (0.24 sec)

  1. src/net/rpc/server.go

    // receiver value that satisfy the following conditions:
    //   - exported method of exported type
    //   - two arguments, both of exported type
    //   - the second argument is a pointer
    //   - one return value, of type error
    //
    // It returns an error if the receiver is not an exported type or has
    // no suitable methods. It also logs the error using package log.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  2. src/cmd/cgo/ast.go

    	f.Calls = append(f.Calls, c)
    }
    
    // If a function should be exported add it to ExpFunc.
    func (f *File) saveExport(x interface{}, context astContext) {
    	n, ok := x.(*ast.FuncDecl)
    	if !ok {
    		return
    	}
    
    	if n.Doc == nil {
    		return
    	}
    	for _, c := range n.Doc.List {
    		if !strings.HasPrefix(c.Text, "//export ") {
    			continue
    		}
    
    		name := strings.TrimSpace(c.Text[9:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:27 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/autoserviceexportcontroller.go

    		// Service no longer exists, no action needed
    		return nil
    	}
    
    	if c.isClusterLocalService(svc) {
    		// Don't create ServiceExport if the service is configured to be
    		// local to the cluster (i.e. non-exported).
    		log.Debugf("%s ignoring cluster-local service %s/%s", c.logPrefix(), svc.Namespace, svc.Name)
    		return nil
    	}
    	serviceExport := mcsapi.ServiceExport{
    		TypeMeta: metav1.TypeMeta{
    			Kind:       "ServiceExport",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/resources/META-INF/gradle-plugins/org.gradle.swiftpm-export.properties

    Sterling Greene <******@****.***> 1700166003 -0500
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 80 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf_mlir_translate_main.cc

        llvm::cl::init("serve"));
    
    // NOLINTNEXTLINE
    static llvm::cl::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(""));
    
    int main(int argc, char** argv) {
      tensorflow::InitMlir y(&argc, &argv);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types/sym.go

    //
    // Symbols are ordered exported before non-exported, then by name, and
    // finally (for non-exported symbols) by package path.
    func (a *Sym) Less(b *Sym) bool {
    	if a == b {
    		return false
    	}
    
    	// Nil before non-nil.
    	if a == nil {
    		return true
    	}
    	if b == nil {
    		return false
    	}
    
    	// Exported symbols before non-exported.
    	ea := IsExported(a.Name)
    	eb := IsExported(b.Name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/conversion.go

    		}
    	}
    	if svc.Annotations[annotation.NetworkingExportTo.Name] != "" {
    		namespaces := strings.Split(svc.Annotations[annotation.NetworkingExportTo.Name], ",")
    		exportTo = sets.NewWithLength[visibility.Instance](len(namespaces))
    		for _, ns := range namespaces {
    			exportTo.Insert(visibility.Instance(ns))
    		}
    	}
    
    	istioService := &model.Service{
    		Hostname: ServiceHostname(svc.Name, svc.Namespace, domainSuffix),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/AbstractHeaderExportingSourceSet.java

        public AbstractHeaderExportingSourceSet() {
            this.exportedHeaders = objectFactory.sourceDirectorySet("exported", "exported headers");
            this.implicitHeaders = objectFactory.sourceDirectorySet("implicit", "implicit headers");
        }
    
        @Override
        public SourceDirectorySet getExportedHeaders() {
            return exportedHeaders;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. src/cmd/doc/testdata/pkg.go

    	varSix  = 6
    )
    
    // Comment about exported function.
    func ExportedFunc(a int) bool {
    	// BUG(me): function body note
    	return true != false
    }
    
    // Comment about internal function.
    func internalFunc(a int) bool
    
    // Comment about exported type.
    type ExportedType struct {
    	// Comment before exported field.
    	ExportedField                   int // Comment on line with exported field.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. cluster/gce/config-default.sh

    GCI_VERSION=${KUBE_GCI_VERSION:-}
    IMAGE_FAMILY=${KUBE_IMAGE_FAMILY:-cos-109-lts}
    export MASTER_IMAGE=${KUBE_GCE_MASTER_IMAGE:-}
    export MASTER_IMAGE_FAMILY=${KUBE_GCE_MASTER_IMAGE_FAMILY:-${IMAGE_FAMILY}}
    export MASTER_IMAGE_PROJECT=${KUBE_GCE_MASTER_PROJECT:-cos-cloud}
    export NODE_IMAGE=${KUBE_GCE_NODE_IMAGE:-${GCI_VERSION}}
    export NODE_IMAGE_FAMILY=${KUBE_GCE_NODE_IMAGE_FAMILY:-${IMAGE_FAMILY}}
    export NODE_IMAGE_PROJECT=${KUBE_GCE_NODE_PROJECT:-cos-cloud}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top