Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,611 for importing (0.15 sec)

  1. cmd/cloud-controller-manager/providers.go

    */
    
    // The external controller manager is responsible for running controller loops that
    // are cloud provider dependent. It uses the API to listen to new events on resources.
    
    package main
    
    // NOTE: Importing all in-tree cloud-providers is not required when
    // implementing an out-of-tree cloud-provider. Leaving this empty file
    // here as a reference.
    
    // Here is how you would inject a cloud provider, first
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 19:11:36 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. releasenotes/notes/gogo-protobuf.yaml

        to using the [golang/protobuf](https://github.com/golang/protobuf) library for API types.
        
        This change does not have any impact on typical Istio users, but rather impacts users importing Istio as a Go library.
        
        For these users, upgrading the Istio libraries will likely cause compiliation issues. These issues are typically simple to address,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 25 00:08:22 UTC 2022
    - 775 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/batch_use_same_function/saved_model.pbtxt

    #RUN: tf-mlir-translate --savedmodel-signaturedefs-to-mlir-lite -tf-savedmodel-tags=serve,tpu %p | FileCheck %s
    
    # Test importing a saved model with 2 signatures that are using a same
    # BatchFunction Op, which references to a same inference_func from graph_def
    # library. The result should be that both signatures uses the same
    # BatchFunction Op (the shared_name is the same) and the same copy of
    # inference_func.
    
    # CHECK: f = @inference_func[[post_fix:[^,]*]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 09 16:20:29 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  4. src/crypto/internal/boring/doc.go

    //
    // BoringCrypto is only available on linux/amd64 and linux/arm64 systems.
    const Enabled = available
    
    // A BigInt is the raw words from a BigInt.
    // This definition allows us to avoid importing math/big.
    // Conversion between BigInt and *big.Int is in crypto/internal/boring/bbig.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 05:28:51 UTC 2023
    - 826 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/reference/third_party_integration.adoc

    * http://projects.eclipse.org/projects/tools.buildship[Eclipse Buildship] uses the Tooling API for importing your Gradle project and running tasks.
    * https://www.jetbrains.com/idea/[IntelliJ IDEA] uses the Tooling API for importing your Gradle project and running tasks.
    
    
    [[sec:embedding_features]]
    === Tooling API Features
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. src/crypto/tls/fipsonly/fipsonly.go

    // license that can be found in the LICENSE file.
    
    //go:build boringcrypto
    
    // Package fipsonly restricts all TLS configuration to FIPS-approved settings.
    //
    // The effect is triggered by importing the package anywhere in a program, as in:
    //
    //	import _ "crypto/tls/fipsonly"
    //
    // This package only exists when using Go compiled with GOEXPERIMENT=boringcrypto.
    package fipsonly
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 14:23:22 UTC 2022
    - 901 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/vendor_outside_module.txt

    # baz.go (importing just fmt) works with -mod=mod,  -mod=vendor.
    go build -x -mod=mod my-module/vendor/example.com/another-module/foo/bar/baz.go
    go build -x -mod=readonly my-module/vendor/example.com/another-module/foo/bar/baz.go
    go build -x -mod=vendor my-module/vendor/example.com/another-module/foo/bar/baz.go
    
    # baz_with_outside_dep.go (with a non-std dependency) works with -mod=mod
    # but not with -mod=readonly and -mod=vendor.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 20:24:57 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  8. docs/en/docs/fastapi-cli.md

    <font color="#3465A4">INFO    </font> Importing from <font color="#75507B">/home/user/code/</font><font color="#AD7FA8">awesomeapp</font>
    
     ╭─ <font color="#8AE234"><b>Python module file</b></font> ─╮
     │                      │
     │  🐍 main.py          │
     │                      │
     ╰──────────────────────╯
    
    <font color="#3465A4">INFO    </font> Importing module <font color="#4E9A06">main</font>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 23:39:50 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/scopeProvider/AbstractFileImportingScopeContextTest.kt

                    else -> true
                }
            }
        }
    
        private object Directives : SimpleDirectivesContainer() {
            val RENDER_DEFAULT_IMPORTING_SCOPE by directive("render default importing scope in test output")
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/output-shapes.pbtxt

    # RUN: tf-mlir-translate -graphdef-to-mlir -tf-enable-unconditionally-use-set-output-shapes-on-import -tf-enable-shape-inference-on-import=true -tf-graph-as-function %s -o - | FileCheck %s
    
    # Verify importing with _output_shapes enabled works as expected.
    
    node {
      name: "_Arg"
      op: "_Arg"
      attr {
        key: "T"
        value {
          type: DT_STRING
        }
      }
      attr {
        key: "index"
        value {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 21 04:07:13 UTC 2021
    - 3K bytes
    - Viewed (0)
Back to top