Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 234 for IsSame (0.19 sec)

  1. tensorflow/compiler/jit/pjrt_device_compiler_client.h

      // Deserializes a serialized executable as produced by
      // PjRtExecutable::SerializeExecutable(). `serialized_executable` must have
      // been produced by a compiler of the same platform and version as this one.
      //
      // PjRt doesn't support AOT compilation yet. Loading a serialized executable
      // is currently only implemented for TfrtTpuPjrtClient and hence, this
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_arith_ops_folder.cc

      if (range0.first.size() != range1.first.size()) {
        return op->emitOpError()
               << range0.second << "s (size = " << range0.first.size() << ")"
               << " should have the same number of values as " << range1.second
               << "s (size = " << range1.first.size() << ")";
      }
    
      for (const auto &it :
           llvm::enumerate(llvm::zip(range0.first, range1.first))) {
        int index = it.index();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. cni/pkg/install/cniconfig.go

    	return writeCNIConfig(ctx, marshalledJSON, cfg)
    }
    
    // writeCNIConfig will
    // 1. read in the existing CNI config file
    // 2. append the `istio`-specific entry
    // 3. write the combined result back out to the same path, overwriting the original.
    func writeCNIConfig(ctx context.Context, pluginConfig []byte, cfg *config.InstallConfig) (string, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/sets/set.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package sets
    
    import (
    	"cmp"
    	"sort"
    )
    
    // Set is a set of the same type elements, implemented via map[comparable]struct{} for minimal memory consumption.
    type Set[T comparable] map[T]Empty
    
    // cast transforms specified set to generic Set[T].
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 19:51:18 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. docs/en/docs/how-to/configure-swagger-ui.md

    {!../../../docs_src/configure_swagger_ui/tutorial001.py!}
    ```
    
    ...and then Swagger UI won't show the syntax highlighting anymore:
    
    <img src="/img/tutorial/extending-openapi/image03.png">
    
    ## Change the Theme
    
    The same way you could set the syntax highlighting theme with the key `"syntaxHighlight.theme"` (notice that it has a dot in the middle):
    
    ```Python hl_lines="3"
    {!../../../docs_src/configure_swagger_ui/tutorial002.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/discovery/v1beta1/generated.proto

      // hostname of this endpoint. This field may be used by consumers of
      // endpoints to distinguish endpoints from each other (e.g. in DNS names).
      // Multiple endpoints which use the same hostname should be considered
      // fungible (e.g. multiple A values in DNS). Must be lowercase and pass DNS
      // Label (RFC 1123) validation.
      // +optional
      optional string hostname = 3;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump

        }
        virtual const ParamType* Current() const { return &current_value_; }
        virtual bool Equals(const ParamIteratorInterface<ParamType>& other) const {
          // Having the same base generator guarantees that the other
          // iterator is of the same type and we can downcast.
          GTEST_CHECK_(BaseGenerator() == other.BaseGenerator())
              << "The program attempted to compare iterators "
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/controller/controller.go

    	_ error,
    ) {
    	contentHash, err := d.getEncryptionConfigHash(ctx, d.filePath)
    	if err != nil {
    		return nil, false, err
    	}
    
    	// check if encryptionConfig is different from the current. Do nothing if they are the same.
    	if contentHash == d.lastLoadedEncryptionConfigHash {
    		klog.V(4).InfoS("Encryption config has not changed (before load)", "name", d.name)
    		return nil, false, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtDataFlowInfoProvider.kt

        public val hasMultipleJumpKinds: Boolean,
    
        /**
         * `true` if two or more jumps have different next-executed instructions.
         * Such as, there are both inner and outer loop `break`, or a `break` and `continue` for the same loop.
         */
        public val hasMultipleJumpTargets: Boolean,
    
        /**
         * local variable reassignments found in given statements.
         */
        public val variableReassignments: List<VariableReassignment>
    ) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtPsiTypeProvider.kt

         *
         * @receiver type to convert
         *
         * @param useSitePosition is used to determine if the given [KaType] needs to be approximated.
         * For instance, if the given type is local yet available in the same scope of use site,
         * we can still use such a local type.
         * Otherwise, e.g., exposed to public as a return type, the resulting type will be approximated accordingly.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top