Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,052 for exportId (0.14 sec)

  1. src/runtime/cgo/callbacks_aix.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cgo
    
    // These functions must be exported in order to perform
    // longcall on cgo programs (cf gcc_aix_ppc64.c).
    //
    //go:cgo_export_static __cgo_topofstack
    //go:cgo_export_static runtime.rt0_go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 402 bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/tracing.go

    		// The Dynatrace sampler can re-use the same Dynatrace service/cluster/headers
    		// as configured for the HTTP Exporter. In this case users
    		// can achieve a much smaller/simpler config in Istio.
    
    		// Re-use the Dynatrace API Host from the OTLP HTTP exporter
    		otlpHTTPService := otelProvider.GetHttp()
    		if otlpHTTPService == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. test/fixedbugs/issue21120.go

    // license that can be found in the LICENSE file.
    
    // The compiler was using an incomplete symbol name for reflect name data,
    // permitting an invalid merge in the linker, producing an incorrect
    // exported flag bit.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:05:00 UTC 2017
    - 354 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/call_to_exported.py

    class TestModule(tf.Module):
    
      def __init__(self):
        super(TestModule, self).__init__()
        self.v = tf.Variable(42.0)
    
      # We guarantee that there are no calls to exported functions from inside the
      # module.
      #
      # If there is a call to an exported function, we create a wrapper function
      # that forwards to the other function and put the tf_saved_model attributes on
      # the wrapper.
      #
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 28 19:09:38 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/serviceentry-missing-addresses-protocol.yaml

    spec:
      hosts:
        - 'istio.io'
      exportTo:
        - "."
      ports:
        - number: 443
          name: https
      location: MESH_EXTERNAL
      resolution: DNS
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: service-entry-test-04 # Expected: validation error missing addresses and protocol
      namespace: default
    spec:
      hosts:
        - 'istio.io'
      exportTo:
        - "."
      ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  6. src/internal/cpu/cpu.s

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This assembly file exists to allow internal/cpu to call
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 13:49:26 UTC 2020
    - 276 bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/issue8148.go

    // license that can be found in the LICENSE file.
    
    // Issue 8148.  A typedef of an unnamed struct didn't work when used
    // with an exported Go function.  No runtime test; just make sure it
    // compiles.
    
    package cgotest
    
    /*
    typedef struct { int i; } T;
    int get8148(void);
    */
    import "C"
    
    //export issue8148Callback
    func issue8148Callback(t *C.T) C.int {
    	return t.i
    }
    
    func Issue8148() int {
    	return int(C.get8148())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 526 bytes
    - Viewed (0)
  8. cni/pkg/monitoring/monitoring.go

    		log.Errorf("unable to listen on socket: %v", err)
    		return
    	}
    	exporter, err := monitoring.RegisterPrometheusExporter(nil, nil)
    	if err != nil {
    		log.Errorf("could not set up prometheus exporter: %v", err)
    		return
    	}
    	mux.Handle(path, exporter)
    	monitoringServer := &http.Server{
    		Handler: mux,
    	}
    	go func() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 09 07:54:01 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. test/fixedbugs/issue15071.dir/exp.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package exp
    
    func Exported(x int) int {
    	return inlined(x)
    }
    
    func inlined(x int) int {
    	y := 0
    	switch {
    	case x > 0:
    		y += 5
    		return 0 + y
    	case x < 1:
    		y += 6
    		fallthrough
    	default:
    		y += 7
    		return 2 + y
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:39:41 UTC 2019
    - 378 bytes
    - Viewed (0)
  10. tensorflow/cc/saved_model/image_format/README.md

    `experimental_image_format` option:
    
    ```
    tf.savedmodel.save(
        model, path,
        options=tf.saved_model.SaveOptions(experimental_image_format=True)
    )
    ```
    
    When this option is enabled, exported SavedModels with proto size > 2GB will
    automatically save with the new format (`.cpb` instead of `.pb`).
    
    <!-- **Compatibility** -->
    
    The official TF APIs (TF1/TF2 python or C++ loading) have already been
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 29 22:11:19 UTC 2023
    - 674 bytes
    - Viewed (0)
Back to top