Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 330 for SAME (0.08 sec)

  1. guava/src/com/google/common/collect/ImmutableSortedMap.java

          Comparator<? super K> comparator) {
        return fromEntries(checkNotNull(comparator), false, entries);
      }
    
      /**
       * Returns an immutable map containing the same entries as the provided sorted map, with the same
       * ordering.
       *
       * <p>Despite the method name, this method attempts to avoid actually copying the data when it is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  2. .bazelrc

    # See https://github.com/protocolbuffers/upb/blob/9effcbcb27f0a665f9f345030188c0b291e32482/upb/upb.c#L183.
    build:rbe_linux_cpu --copt=-Wno-gnu-offsetof-extensions
    # Python config is the same across all containers because the binary is the same
    build:rbe_linux_cpu --repo_env=TF_PYTHON_CONFIG_REPO="@sigbuild-r2.17-clang_config_python"
    build:rbe_linux_cpu --python_path="/usr/bin/python3"
    # These you may need to change for your own GCP project.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener.go

    // buildSidecarOutboundListener builds a single listener and
    // adds it to the listenerMap provided by the caller.  Listeners are added
    // if one doesn't already exist. HTTP listeners on same port are ignored
    // (as vhosts are shipped through RDS).  TCP listeners on same port are
    // allowed only if they have different CIDR matches.
    func (lb *ListenerBuilder) buildSidecarOutboundListener(listenerOpts outboundListenerOpts,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

              'same_scale_op': (
                  'reshape',  # This corresponds to stablehlo.dynamic_reshape
                  'slice',  # This corresponds to stablehlo.dynamic_slice.
                  # TODO: b/326242075 - Support other same-scale ops.
              ),
              'dim_sizes': (([None, 1024], [1024, 3]),),
          }])
      )
      @test_util.run_in_graph_and_eager_modes
      def test_matmul_and_same_scale_ptq_model_dynamic(
          self,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/MapsTest.java

        MapDifference<Integer, String> same = Maps.difference(left, right);
        MapDifference<Integer, String> reverse = Maps.difference(right, left);
        MapDifference<Integer, String> diff2 = Maps.difference(left, right2);
    
        new EqualsTester()
            .addEqualityGroup(original, same)
            .addEqualityGroup(reverse)
            .addEqualityGroup(diff2)
            .testEquals();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReaderProfileTest.groovy

            cleanup:
            System.clearProperty(customPropertyName)
        }
    
        def "does not activate multiple profiles for a matching same system property with the same value"() {
            setup:
            String customPropertyName = new UUIDGenerator().generateId()
            System.properties[customPropertyName] = 'BLUE'
    
            when:
            pomFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite.go

    	case OpARM64NotGreaterEqualF:
    		return OpARM64GreaterEqualF
    	default:
    		panic("unreachable")
    	}
    }
    
    // arm64Invert evaluates (InvertFlags op), which
    // is the same as altering the condition codes such
    // that the same result would be produced if the arguments
    // to the flag-generating instruction were reversed, e.g.
    // (InvertFlags (CMP x y)) -> (CMP y x)
    func arm64Invert(op Op) Op {
    	switch op {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

        }
    
        /**
         * Whenever a dependency on a project is found and that the client configuration
         * defines attributes, we try to find a target configuration with the same attributes
         * declared. However if 2 configurations on the target project declares the same attributes,
         * we don't know which one to choose.
         *
         * This test implements a first option, which is to make this an error case.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    
    [[sec:dependencies_within_the_same_project]]
    === Dependencies within the same project
    
    A set of sources may depend on header files provided by another binary component within the same project. A common example is a native executable component that uses functions provided by a separate native library component.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Sets.java

       *
       * <p>The iteration order of the returned set follows the enum's iteration order, not the order in
       * which the elements appear in the given collection.
       *
       * @param elements the elements, all of the same {@code enum} type, that the set should contain
       * @return an immutable set containing those elements, minus duplicates
       */
      // http://code.google.com/p/google-web-toolkit/issues/detail?id=3028
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
Back to top