Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 299 for sameId (0.31 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    }  // namespace internal
    
    // The friend relationship of some of these classes is cyclic.
    // If we don't forward declare them the compiler might confuse the classes
    // in friendship clauses with same named classes on the scope.
    class Test;
    class TestCase;
    class TestInfo;
    class UnitTest;
    
    // A class for indicating whether an assertion was successful.  When
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/load.go

    // for any imported packages that are still missing.
    //
    // The first step of each iteration identifies a set of “root” packages.
    // Normally the root packages are exactly those matching the named pattern
    // arguments. However, for the "all" meta-pattern, the final set of packages is
    // computed from the package import graph, and therefore cannot be an initial
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

      // CHECK: tf.InvertPermutation
      %0 = "tf.InvertPermutation"(%arg0) : (tensor<*xi32>) -> tensor<*xi32>
      func.return %0 : tensor<*xi32>
    }
    
    // CHECK-LABEL: simple_pack
    // CHECK-SAME: %[[ARG0:.*]]: tensor<3x5xf32>, %[[ARG1:.*]]: tensor<3x5xf32>
    func.func @simple_pack(%arg0: tensor<3x5xf32>, %arg1: tensor<3x5xf32>) -> tensor<2x3x5xf32> {
      // CHECK: %[[AXIS:.*]] = "tf.Const"() <{value = dense<0> : tensor<i64>}>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context.go

    	// TCP listeners that conflicted with existing TCP listeners on same port
    	ProxyStatusConflictOutboundListenerTCPOverTCP = monitoring.NewGauge(
    		"pilot_conflict_outbound_listener_tcp_over_current_tcp",
    		"Number of conflicting tcp listeners with current tcp listener.",
    	)
    
    	// ProxyStatusConflictInboundListener tracks cases of multiple inbound
    	// listeners - 2 services selecting the same port of the pod.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    			Address: "6.6.6.6",
    			Labels:  map[string]string{"other": "bar"},
    		})
    		return &c
    	}()
    	// httpStaticOverlayUpdatedInstance is the same as httpStaticOverlayUpdated but with an extra endpoint added that has the same address
    	httpStaticOverlayUpdatedInstance := func() *config.Config {
    		c := httpStaticOverlayUpdated.DeepCopy()
    		se := c.Spec.(*networking.ServiceEntry)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

                return false;
            }
            if (type instanceof ConstructedNestedClass) {
                return false;
            }
            String name = type.getName();
            String saved = name;
            while (true) {
                int len = name.lastIndexOf('.');
                if (len == -1) {
                    break;
                }
                name = name.substring(0, len) + "$" + name.substring(len + 1);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

            if (availableClassifiers.map { it.scope }.hasScopeCloserThan(scopeForClass, element)) return false
    
            /**
             * If we have a property with the same name, avoid dropping qualifiers makes it reference a property with the same name e.g.,
             *    package my.component
             *    class foo { .. }  // A
             *    ..
             *    fun test() {
             *      val foo = ..    // B
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/merge_control_flow.mlir

      func.return
    }
    
    // Check that IfRegions with same predicates and no returns are merged.
    
    // CHECK-LABEL: func @same_predicate_no_returns_merged
    func.func @same_predicate_no_returns_merged() {
      // CHECK:      tf_device.cluster
      // CHECK:        "tf.IfRegion"
      // CHECK:         _else_func_name = "elseFunc1"
      // CHECK-SAME:   _then_func_name = "thenFunc1"
    
      // CHECK-NOT:    "tf.IfRegion"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 63.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

        // dimensions, and the higher dimensions are same, so we know the
        // result and input of the "BinaryOp" in the source pattern have
        // the same shape, which is defined by `shape`.
        [(IsTailOfShape $rhs, $lhs),
         (HasOneUse $lhs),
         // The result of the new "BinaryOp" will have the same shape as
         // `input`. In other words, the shape of the `Reshape` op are not
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

              << "embedding backwards pass op with no forwards pass ops.";
          return signalPassFailure();
        }
      }
    
      // Ensure that all ops are in the same region, and have the same replication
      // info.
      // TODO(bfontain): Allow for multiple regions/loops in one module.
      // TODO(patn): move this pass after cluster formation to remove the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
Back to top