Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 679 for oplus (0.12 sec)

  1. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/KotlinModifiersChangeTest.kt

                        operator fun String.plus(some: List<Int>): String
                        infix fun Int.plus(some: List<Int>): Int
                    }
                """
            ) {
                assertHasErrors(
                    "Method com.example.Source.plus(java.lang.String,java.util.List): Breaking Kotlin modifier change.",
                    "Method com.example.Source.plus(int,java.util.List): Breaking Kotlin modifier change.",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/functional/src/main/java/org/gradle/internal/collect/PersistentList.java

            return PersistentList.<T>of().plus(first);
        }
    
        @SafeVarargs
        public static <T> PersistentList<T> of(T first, T second, T... rest) {
            PersistentList<T> result = of();
            for (int i = rest.length - 1; i >= 0; i--) {
                result = result.plus(rest[i]);
            }
            return result.plus(second).plus(first);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/src/operatorsTest/c/test_plus.c

    #include <CUnit/Basic.h>
    #include "operators.h"
    
    void test_plus() {
      CU_ASSERT(plus(0, 2) == 2);
      CU_ASSERT(plus(0, -2) == -2);
      CU_ASSERT(plus(2, 2) == 4);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 161 bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1beta1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:deprecated" tags in types.go or  "k8s:prerelease-lifecycle-gen:introduced" plus three minor.
    func (in *ControllerRevision) APILifecycleDeprecated() (major, minor int) {
    	return 1, 8
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 13K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1beta1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:deprecated" tags in types.go or  "k8s:prerelease-lifecycle-gen:introduced" plus three minor.
    func (in *MutatingWebhookConfiguration) APILifecycleDeprecated() (major, minor int) {
    	return 1, 16
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 20:56:23 UTC 2023
    - 12K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1beta2/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:deprecated" tags in types.go or  "k8s:prerelease-lifecycle-gen:introduced" plus three minor.
    func (in *ControllerRevision) APILifecycleDeprecated() (major, minor int) {
    	return 1, 9
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 17.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/FileHierarchySetTest.groovy

            flatten(s1) == [dir1.path, "1:dir2/dir3", "1:dir5/and/more"]
    
            def s2 = s1.plus(dir1dir2dir4)
            flatten(s2) == [dir1.path, "1:dir2", "2:dir3", "2:dir4", "1:dir5/and/more"]
    
            def s3 = s2.plus(dir6)
            flatten(s3) == [parent.path, "1:dir1", "2:dir2", "3:dir3", "3:dir4", "2:dir5/and/more", "1:dir6"]
    
            def s4 = s3.plus(dir1dir2)
            flatten(s4) == [parent.path, "1:dir1", "2:dir2", "2:dir5/and/more", "1:dir6"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/storage/v1beta1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:deprecated" tags in types.go or  "k8s:prerelease-lifecycle-gen:introduced" plus three minor.
    func (in *CSIDriver) APILifecycleDeprecated() (major, minor int) {
    	return 1, 19
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 14 19:05:45 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/rbac/v1beta1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:deprecated" tags in types.go or  "k8s:prerelease-lifecycle-gen:introduced" plus three minor.
    func (in *ClusterRole) APILifecycleDeprecated() (major, minor int) {
    	return 1, 17
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 13.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/src/operatorsTest/cpp/test_plus.cpp

    #include "gtest/gtest.h"
    #include "operators.h"
    
    using namespace testing;
    
    TEST(OperatorTests, test_plus) {
      ASSERT_TRUE(plus(0, 2) == 2);
      ASSERT_TRUE(plus(0, -2) == -2);
      ASSERT_TRUE(plus(2, 2) == 4);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 208 bytes
    - Viewed (0)
Back to top