Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,146 for paid (0.04 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/Pair.java

            return right;
        }
    
        public static <L, R> Pair<L, R> of(@Nullable L left, @Nullable R right) {
            return new Pair<L, R>(left, right);
        }
    
        public <T> Pair<T, Pair<L, R>> pushLeft(T t) {
            return of(t, this);
        }
    
        public <T> Pair<Pair<L, R>, T> pushRight(T t) {
            return of(this, t);
        }
    
        public <T> Pair<Pair<T, L>, R> nestLeft(T t) {
            return of(of(t, left), right);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/misc/Pair.java

         */
        public static <T1, T2> Pair<T1, T2> pair(final T1 first, final T2 second) {
            return new Pair<>(first, second);
        }
    
        /**
         * インスタンスを構築します。
         */
        public Pair() {
        }
    
        /**
         * インスタンスを構築します。
         *
         * @param first
         *            1番目の値
         * @param second
         *            2番目の値
         */
        public Pair(final T1 first, final T2 second) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    An example of component flavors might differentiate between 'demo', 'paid' and 'enterprise' editions of the component, where the same set of sources is used to produce binaries with different functions.
    
    === Example: Defining flavors
    
    [source.multi-language-sample,groovy]
    .build.gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  4. src/internal/coverage/pkid.go

    Andy Pan <******@****.***> 1706754074 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheReport.kt

             *
             * @return a pair with the new [State] and the written [File], which will be `null` when there are no diagnostics.
             */
            open fun commitReportTo(
                outputDirectory: File,
                buildDisplayName: String?,
                cacheAction: String,
                requestedTasks: String?,
                totalProblemCount: Int
            ): Pair<State, File?> =
                illegalState()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize-tfl-stablehlo-pad.mlir

    module {
        func.func @main(%arg0: tensor<8x128xf32>, %arg1: tensor<f32>) -> tensor<11x131xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Dec 11 20:41:19 UTC 2023
    - 939 bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java

            final Map<String, Pair<Map<String, String>, List<Pair<Pattern, String>>>> relatedContentMap = new HashMap<>();
            getAvailableRelatedContentList().stream().forEach(entity -> {
                final String key = getHostKey(entity);
                Pair<Map<String, String>, List<Pair<Pattern, String>>> pair = relatedContentMap.get(key);
                if (pair == null) {
                    pair = new Pair<>(new HashMap<>(), new ArrayList<>());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/file-collection-vs-file-tree.graffle

    et0 HelveticaNeue;} {\colortbl;\red255\green255\blue255;} {\*\expandedcolortbl;;} \deftab720 \pard\pardeftab720\partightenfactor0 \f0\fs32 \cf0 data.txt}WrapNOBounds{{681.01979791655117, 141.275390625}, {85, 30}}ClassShapedGraphicFi{\rtf1\ansi\ansicpg1252\cocoartf1561\cocoasubrtf200 {\fonttbl\f0\fnil\fcharset0 HelveticaNeue;} {\colortbl;\red255\green255\blue255;} {\*\expandedcolortbl;;} \deftab720 \pard\pardeftab720\partightenfactor0 \f0\fs32 \cf0 banner.jpg}WrapNOAllowLabelDrop{660.01979791655117,...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  9. src/syscall/exec_solaris_test.go

    	pgrp = int(r0)
    	return
    }
    
    func Tcgetpgrp(fd int) (pgid int32, err error) {
    	if errno := ioctlPtr(uintptr(fd), TIOCGPGRP, unsafe.Pointer(&pgid)); errno != 0 {
    		return -1, errno
    	}
    	return pgid, nil
    }
    
    func Tcsetpgrp(fd int, pgid int32) (err error) {
    	return ioctlPtr(uintptr(fd), TIOCSPGRP, unsafe.Pointer(&pgid))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:41:27 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. tensorflow/cc/saved_model/util_test.cc

      local_request.erase("y");
    
      std::vector<std::pair<string, Tensor>> inputs;
      TF_EXPECT_OK(GetInputValues(sig_, local_request, inputs));
    
      std::vector<std::pair<string, TensorProto>> exp_inputs;
      ConvertOutputTensorToProto(inputs, exp_inputs);
    
      EXPECT_THAT(exp_inputs,
                  UnorderedElementsAre(Pair("feed_x", EqualsProto(input_x_)),
                                       Pair("feed_y", EqualsProto(default_y_))));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top