Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 488 for exportId (0.22 sec)

  1. 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)
  2. src/cmd/link/internal/ld/deadcode.go

    		names = append(names, objabi.PathToPrefix(*flagPluginPath)+"..inittask", objabi.PathToPrefix(*flagPluginPath)+".main", "go:plugin.tabs")
    
    		// We don't keep the go.plugin.exports symbol,
    		// but we do keep the symbols it refers to.
    		exportsIdx := d.ldr.Lookup("go:plugin.exports", 0)
    		if exportsIdx != 0 {
    			relocs := d.ldr.Relocs(exportsIdx)
    			for i := 0; i < relocs.Count(); i++ {
    				d.mark(relocs.At(i).Sym(), 0)
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/facts/facts.go

    // unexported simply because its name starts with lowercase. But the
    // compiler must nonetheless export f so that downstream compilations can
    // accurately ascertain whether pkg.T implements an interface pkg.I
    // defined as interface{f()}. Exported thus means "described in export
    // data".
    package facts
    
    import (
    	"bytes"
    	"encoding/gob"
    	"fmt"
    	"go/types"
    	"io"
    	"log"
    	"reflect"
    	"sort"
    	"sync"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/ModuleDependency.java

        public boolean isExported() {
            return exported;
        }
    
        public void setExported(boolean exported) {
            this.exported = exported;
        }
    
        @Override
        public void addToNode(Node parentNode) {
            Map<String, Object> attributes = new LinkedHashMap<>();
            attributes.put("type", "module");
            attributes.put("module-name", name);
            if (exported) {
                attributes.put("exported", "");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java

        public DefaultClassRealmManager(
                CoreRealm coreRealm, List<ClassRealmManagerDelegate> delegates, CoreExports exports) {
            this.world = coreRealm.getClassWorld();
            this.containerRealm = coreRealm.getRealm();
            this.delegates = delegates;
    
            Map<String, ClassLoader> foreignImports = exports.getExportedPackages();
    
            this.mavenApiRealm = createRealm(
                    API_REALMID,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:53:42 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  6. pilot/pkg/model/virtualservice.go

    				}
    				// make sure that the delegate is visible to root virtual service's namespace
    				exportTo := delegatesExportToMap[types.NamespacedName{Namespace: delegateNamespace, Name: delegate.Name}]
    				if !exportTo.Contains(visibility.Public) && !exportTo.Contains(visibility.Instance(root.Namespace)) {
    					log.Warnf("delegate virtual service %s/%s of %s/%s is not exported to %s",
    						delegateNamespace, delegate.Name, root.Namespace, root.Name, root.Namespace)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 11:17:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/ModuleLibrary.java

        public void setScope(String scope) {
            this.scope = scope;
        }
    
        /**
         * Whether the library is exported to dependent modules.
         */
        public boolean isExported() {
            return exported;
        }
    
        public void setExported(boolean exported) {
            this.exported = exported;
        }
    
        @Override
        public void addToNode(Node parentNode) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. docs/metrics/prometheus/README.md

    ## List of metrics exposed by MinIO
    
    - MinIO exports Prometheus compatible data by default as an authorized endpoint at `/minio/v2/metrics/cluster`. 
    - MinIO exports Prometheus compatible data by default which is bucket centric as an authorized endpoint at `/minio/v2/metrics/bucket`.
    - MinIO exports Prometheus compatible data by default which is node centric as an authorized endpoint at `/minio/v2/metrics/node`.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 12 15:49:30 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DaemonJavaCompiler.java

                // In JDK 9 and above the compiler internal classes are bundled with the rest of the JDK, but we need to export it to gain access.
                javaForkOptions.jvmArgs(
                    "--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED",
                    "--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED"
                );
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. 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)
Back to top