Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for exporters (0.48 sec)

  1. go.sum

    go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.27.0 h1:R9DE4kQ4k+YtfLI2ULwX82VtNQ2J8yZmA7ZIF/D+7Mc=
    go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.27.0/go.mod h1:OQFyQVrDlbe+R7xrEyDr/2Wr67Ol0hRUgsfA+V5A95s=
    go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.27.0 h1:qFffATk0X+HD+f1Z8lswGiOQYKHRlzfmdJm0wEaVrFA=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

            }
            return errors::InvalidArgument(
                "Exported function with exported name(s) ",
                absl::StrJoin(names, ", "),
                " with multiple concrete functions. Add "
                "@tf.function(input_signature=[...]) on this function, or use a "
                "narrower list of exported names that excludes this function.");
          }
        }
      }
      return absl::OkStatus();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    				return
    			}
    			field := typ.Field(0)
    			n := field.Name
    			if n == "" {
    				panic("field.Name must not be empty")
    			}
    			exported := token.IsExported(n)
    			if exported != test.exported {
    				t.Errorf("test-%d: got exported=%v want exported=%v", i, exported, test.exported)
    			}
    			if field.PkgPath != test.field.PkgPath {
    				t.Errorf("test-%d: got PkgPath=%q want pkgPath=%q", i, field.PkgPath, test.field.PkgPath)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    Functions:
    	append cap close complex copy delete imag len
    	make new panic print println real recover
    </pre>
    
    
    <h3 id="Exported_identifiers">Exported identifiers</h3>
    
    <p>
    An identifier may be <i>exported</i> to permit access to it from another package.
    An identifier is exported if both:
    </p>
    <ol>
    	<li>the first character of the identifier's name is a Unicode upper case
    	letter (Unicode class "Lu"); and</li>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

            "arguments.");
        return {};
      }
      // Exported method name.
      auto exported_name =
          main_op->getAttrOfType<mlir::ArrayAttr>(kTfSavedModelExportedNamesAttr);
      if (exported_name.empty()) {
        main_op.emitError("Empty exported names for main Function.");
        return {};
      }
      // Fill the SignatureDefData container.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

        sed -i -e "/# BEGIN_PROMETHEUS_TO_SD/,/# END_PROMETHEUS_TO_SD/d" "$1"
      else
        update-prometheus-to-sd-parameters "$1"
      fi
    }
    
    # Updates parameters in yaml file for event-exporter configuration
    function update-event-exporter {
        local -r stackdriver_resource_model="${LOGGING_STACKDRIVER_RESOURCE_TYPES:-old}"
        sed -i -e "s@{{ exporter_sd_resource_model }}@${stackdriver_resource_model}@g" "$1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    //		into a C archive file. The only callable symbols will be those
    //		functions exported using a cgo //export comment. Requires
    //		exactly one main package to be listed.
    //
    //	-buildmode=c-shared
    //		Build the listed main package, plus all packages it imports,
    //		into a C shared library. The only callable symbols will
    //		be those functions exported using a cgo //export comment.
    //		Requires exactly one main package to be listed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.5.md

        * Old behavior:
          * environment variables explicitly whitelisted via --docker-env-metadata-whitelist were exported as `container_env_*=*`. Default is zero so by default non were exported
          * all docker labels were exported as `container_label_*=*`
        * New behavior:
          * Only `container_name`, `pod_name`, `namespace`, `id`, `image`, and `name` labels are exposed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  9. src/reflect/value.go

    	return Value{v.typ(), v.ptr, fl}
    }
    
    // NumMethod returns the number of methods in the value's method set.
    //
    // For a non-interface type, it returns the number of exported methods.
    //
    // For an interface type, it returns the number of exported and unexported methods.
    func (v Value) NumMethod() int {
    	if v.typ() == nil {
    		panic(&ValueError{"reflect.Value.NumMethod", Invalid})
    	}
    	if v.flag&flagMethod != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    // allowed to install a.Target.
    //
    // The build of cmd/go running under its own test is forbidden from installing
    // to its original GOROOT. The var is exported so it can be set by TestMain.
    var AllowInstall = func(*Action) error { return nil }
    
    // cleanup removes a's object dir to keep the amount of
    // on-disk garbage down in a large build. On an operating system
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top