Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,964 for importing (0.17 sec)

  1. pkg/kube/apimirror/probe.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // Package apimirror contains copies of Kubernetes APIs. This allows json serialization, without worrying about
    // importing the massive 15mb+ Kubernetes API libraries.
    // This is intended for import only by istio-agent. Any other binaries (Istiod) should likely import the
    // upstream Kubernetes API instead.
    package apimirror
    
    import (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/DefaultVersionCatalogBuilder.java

                throw throwVersionCatalogProblemException(getProblemsService(), getProblemsService().getInternalReporter().create(builder ->
                    configureVersionCatalogError(builder, getProblemInVersionCatalog() + "importing multiple files are not supported.", TOO_MANY_IMPORT_FILES)
                        .details("The import consists of multiple files")
                        .solution("Only import a single file")));
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testplugin/plugin_test.go

    		}
    	}
    
    	return string(bytes.TrimSpace(out))
    }
    
    func TestDWARFSections(t *testing.T) {
    	// test that DWARF sections are emitted for plugins and programs importing "plugin"
    	globalSkip(t)
    	goCmd(t, "run", "./checkdwarf/main.go", "plugin2.so", "plugin2.UnexportedNameReuse")
    	goCmd(t, "run", "./checkdwarf/main.go", "./host.exe", "main.main")
    }
    
    func TestBuildID(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/generate_invalid.txt

    ! stdout 'Fail'
    
    # Test go generate for syntax errors before and after package clauses
    go generate ./syntax
    stdout 'Success a'
    stdout 'Success b'
    ! stdout 'Fail'
    
    # Test go generate for files importing non-existent packages
    go generate ./importerr
    stdout 'Success a'
    stdout 'Success b'
    stdout 'Success c'
    
    -- echo.go --
    package main
    
    import (
    	"fmt"
    	"os"
    	"strings"
    )
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:48:44 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/readonly_references_to_resources.cc

    // re-using the pipeline for hoisting (VarHandle -> ReadVariable) cases, which
    //  can be done by the following passes:
    //  - Capturing resource values into global tensors (importing saved model).
    //  - Promoting VarHandle ops to function input/outputs.
    //  - Freezing global tensor pass.
    //
    // This path assumes that all the VariableV2 ops is read-only via verifying the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/mlir_roundtrip_flags.h

      // GraphConstructor::ConvertGraph to override shapes. It is unfortunately
      // not always set correctly (which is undesirable and should be addressed)
      // so make it opt-in to consider it unconditionally also when importing the
      // graph.
      bool unconditionally_use_set_output_shapes = false;
      // If set, use the value as the device type and mark the function graph for
      // XLA compilation.
      string xla_compile_device_type;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:56:10 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. tensorflow/api_template.__init__.py

    # ==============================================================================
    """
    Top-level module of TensorFlow. By convention, we refer to this module as
    `tf` instead of `tensorflow`, following the common practice of importing
    TensorFlow via the command `import tensorflow as tf`.
    
    The primary function of this module is to import all of the public TensorFlow
    interfaces into a single place. The interfaces themselves are located in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 06:27:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. src/unsafe/unsafe.go

    // from uintptr to Pointer.
    //
    // Package reflect's Value methods named Pointer and UnsafeAddr return type uintptr
    // instead of unsafe.Pointer to keep callers from changing the result to an arbitrary
    // type without first importing "unsafe". However, this means that the result is
    // fragile and must be converted to Pointer immediately after making the call,
    // in the same expression:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:45:20 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/import_model.h

        mlir::MLIRContext* context, MLIRImportOptions options);
    
    // SavedModelMLIRImportInput is an adapter class for users to inject custom
    // graph transformation logic on Tensorflow graphs before importing to MLIR. It
    // serves as the source that provides the subgraphs requested by the savedmodel
    // MLIR importer, and at the same time it allows the implementation of this
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. src/testing/internal/testdeps/deps.go

    // to the equivalent functions in package internal/coverage/cfile; doing
    // things this way allows us to have tests import internal/coverage/cfile
    // only when -cover is in effect (as opposed to importing for all tests).
    var (
    	CoverSnapshotFunc           func() float64
    	CoverProcessTestDirFunc     func(dir string, cfile string, cm string, cpkg string, w io.Writer) error
    	CoverMarkProfileEmittedFunc func(val bool)
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top