Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 475 for exportId (0.12 sec)

  1. src/go/ast/filter.go

    			}
    			return true
    		}
    	case *TypeSpec:
    		if f(s.Name.Name) {
    			if export {
    				filterType(s.Type, f, export)
    			}
    			return true
    		}
    		if !export {
    			// For general filtering (not just exports),
    			// filter type even if name is not filtered
    			// out.
    			// If the type contains filtered elements,
    			// keep the declaration.
    			return filterType(s.Type, f, export)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. cmd/endpoint-ellipses_test.go

    		// Valid inputs.
    		{":9000", []string{"/export1"}, true},
    		{":9000", []string{"/export1", "/export2", "/export3", "/export4"}, true},
    		{":9000", []string{"/export1{1...64}"}, true},
    		{":9000", []string{"/export1{01...64}"}, true},
    		{":9000", []string{"/export1{1...32}", "/export1{33...64}"}, true},
    		{":9001", []string{"http://localhost:9001/export{1...64}"}, true},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. releasenotes/notes/47835-otlp-http-exporter.yaml

    docs:
     - '[reference] https://istio.io/latest/docs/reference/config/istio.mesh.v1alpha1/#MeshConfig-ExtensionProvider-OpenTelemetryTracingProvider'
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 31 08:51:36 UTC 2024
    - 400 bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. tensorflow/compiler/jit/xla_device_compiler_client.cc

             "serializing it to string.";
      xla::Compiler* compiler = client_->backend().compiler();
      auto exported = compiler->Export(executable.executable());
      if (exported.ok()) {
        return (*exported)->SerializeAsString();
      }
    
      return exported.status();
    }
    
    absl::StatusOr<std::string> XlaDeviceCompilerClient::BuildSerializedExecutable(
        const XlaCompiler::Options& options,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. docs/distributed/README.md

    ```sh
    export MINIO_ROOT_USER=<ACCESS_KEY>
    export MINIO_ROOT_PASSWORD=<SECRET_KEY>
    minio server http://host{1...n}/export{1...m} http://host{o...z}/export{1...m}
    ```
    
    For example:
    
    ```
    minio server http://host{1...4}/export{1...16} http://host{5...12}/export{1...16}
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context.go

    			} else if s.Attributes.ExportTo.Contains(visibility.None) {
    				continue
    			}
    			// . or other namespaces
    			for exportTo := range s.Attributes.ExportTo {
    				if exportTo == visibility.Private || string(exportTo) == ns {
    					// exportTo with same namespace is effectively private
    					ps.ServiceIndex.privateByNamespace[ns] = append(ps.ServiceIndex.privateByNamespace[ns], s)
    				} else {
    					// exportTo is a specific target namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  10. tests/integration/telemetry/tracing/otelcollector/tracing_test.go

    	testcases := []struct {
    		name            string
    		customAttribute string
    		cfgFile         string
    	}{
    		{
    			name:            "grpc exporter",
    			customAttribute: "provider=otel",
    			cfgFile:         otelTracingCfg,
    		},
    		{
    			name:            "http exporter",
    			customAttribute: "provider=otel-http",
    			cfgFile:         otelTracingHTTPCfg,
    		},
    		{
    			name:            "resource detectors",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:30 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top