Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 814 for exportId (0.45 sec)

  1. src/cmd/compile/internal/typecheck/export.go

    Matthew Dempsky <******@****.***> 1692240312 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 19:36:28 UTC 2023
    - 838 bytes
    - Viewed (0)
  2. docs/debugging/inspect/export.go

    yanggang <******@****.***> 1667923082 +0800
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 08 15:58:02 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  3. pkg/monitoring/monitoring.go

    // based on a value func that executes when the metrics are exported.
    //
    // At the moment, only a Gauge type is supported.
    type DerivedMetric interface {
    	// Name returns the name value of a DerivedMetric.
    	Name() string
    
    	// Register handles any required setup to ensure metric export.
    	Register() error
    
    	// ValueFrom is used to update the derived value with the provided
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/util/service_lookup.go

    		exportsToAll := false
    		for _, h := range s.GetHosts() {
    			// ExportToAll scenario
    			if len(s.ExportTo) == 0 || exportsToAll {
    				result[NewScopedFqdn(ExportToAllNamespaces, r.Metadata.FullName.Namespace, h)] = s
    				continue // If exports to all, we can skip adding to each namespace
    			}
    
    			for _, ns := range s.ExportTo {
    				switch ns {
    				case ExportToAllNamespaces:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 21 21:37:53 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/serviceexportcache.go

    }
    
    func (ec *serviceExportCacheImpl) ExportedServices() []exportedService {
    	// List all exports in this cluster.
    	exports := ec.serviceExports.List(metav1.NamespaceAll, klabels.Everything())
    
    	ec.RLock()
    
    	out := make([]exportedService, 0, len(exports))
    	for _, export := range exports {
    		uExport := export.(*unstructured.Unstructured)
    		es := exportedService{
    			namespacedName:  config.NamespacedName(uExport),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/vendor_test_issue11864.txt

    package tx3_test
    
    import "vendor.org/tx3"
    import "testing"
    
    var Found = tx3.Exported
    
    func TestNop(t *testing.T) {}
    
    -- $GOPATH/src/github.com/rsc/go-get-issue-11864/vendor/vendor.org/tx3/export_test.go --
    package tx3
    
    var Exported = true
    
    -- $GOPATH/src/github.com/rsc/go-get-issue-11864/vendor/vendor.org/tx3/tx3.go --
    package tx3
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/extension/internal/CoreExtensionEntry.java

        public ClassRealm getClassRealm() {
            return realm;
        }
    
        /**
         * Returns artifacts exported by the extension, identified by groupId:artifactId string key.
         */
        public Set<String> getExportedArtifacts() {
            return artifacts;
        }
    
        /**
         * Returns classpath elements exported by the extension.
         */
        public Set<String> getExportedPackages() {
            return packages;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 07:14:56 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/serviceexportcache_test.go

    	})
    }
    
    func (ec *serviceExportCacheImpl) checkServiceInstancesOrFail(t *testing.T, exported bool, endpoints *model.EndpointIndex) {
    	t.Helper()
    	if err := ec.checkEndpoints(exported, endpoints); err != nil {
    		t.Fatal(err)
    	}
    }
    
    func (ec *serviceExportCacheImpl) checkEndpoints(exported bool, endpoints *model.EndpointIndex) error {
    	ep := ec.getEndpoint(endpoints)
    	if ep == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.cc

                    .getValue()));
          }
    
          TF_RETURN_IF_ERROR(exporter.AddInstructionNode(&inner_op));
        } else {
          TF_RETURN_IF_ERROR(exporter.AddInstructionNode(&inst));
        }
      }
      // Adds edges between the argument, operation and return nodes.
      for (Operation& inst : graph_op.GetBody()) {
        TF_RETURN_IF_ERROR(exporter.AddEdge(&inst));
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

                    .getValue()));
          }
    
          TF_RETURN_IF_ERROR(exporter.AddInstructionNode(&inner_op));
        } else {
          TF_RETURN_IF_ERROR(exporter.AddInstructionNode(&inst));
        }
      }
      // Adds edges between the argument, operation and return nodes.
      for (Operation& inst : graph_op.GetBody()) {
        TF_RETURN_IF_ERROR(exporter.AddEdge(&inst));
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
Back to top