Search Options

Results per page
Sort
Preferred Languages
Advance

Results 281 - 290 of 4,714 for Implementation (0.17 sec)

  1. platforms/core-configuration/model-groovy/build.gradle.kts

    dependencies {
        api(project(":base-services"))
        api(project(":model-core"))
        api(project(":base-services-groovy"))
    
        api(libs.jsr305)
        api(libs.groovy)
    
        implementation(projects.stdlibJavaExtensions)
        implementation(project(":core-api"))
    
        implementation(libs.guava)
    
        testImplementation(testFixtures(project(":core")))
        testImplementation(testFixtures(project(":model-core")))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 841 bytes
    - Viewed (0)
  2. platforms/ide/ide-native/build.gradle.kts

        api(project(":platform-base"))
        api(project(":platform-native"))
        api(project(":service-provider"))
    
        implementation(project(":model-core"))
        implementation(project(":testing-native"))
        implementation(project(":logging-api"))
        implementation(libs.commonsLang)
    
        runtimeOnly(project(":dependency-management"))
        runtimeOnly(project(":testing-base"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaMultiModuleIntegrationTest.groovy

                    apply plugin: 'java-library'
                    dependencies {
                        api project(":api")
                        implementation project(":impl")
                    }
                }
    
                project(":application") {
                    dependencies {
                        implementation project(":library")
                    }
                }
            """
    
            //when
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/xctest-configurations.dot

      subgraph central {
        node[style=filled, fillcolor=white]
        implementation -> testVariantExecutableImplementation [style=invis, weight=1000]
        testVariantExecutableImplementation -> implementation [headport=s, tailport=n]
    
        testVariantExecutableImplementation[label=<test<i>Variant</i>ExecutableImplementation>]
        implementation[style=dashed]
      }
    
      subgraph left {
        node[style=filled, fillcolor="#cfe2f3"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/PatternCompiler.java

       */
      @RestrictedApi(
          explanation = "PatternCompiler is an implementation detail of com.google.common.base",
          allowedOnPath = ".*/com/google/common/base/.*")
      CommonPattern compile(String pattern);
    
      /**
       * Returns {@code true} if the regex implementation behaves like Perl -- notably, by supporting
       * possessive quantifiers but also being susceptible to catastrophic backtracking.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/PatternCompiler.java

       */
      @RestrictedApi(
          explanation = "PatternCompiler is an implementation detail of com.google.common.base",
          allowedOnPath = ".*/com/google/common/base/.*")
      CommonPattern compile(String pattern);
    
      /**
       * Returns {@code true} if the regex implementation behaves like Perl -- notably, by supporting
       * possessive quantifiers but also being susceptible to catastrophic backtracking.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ForwardingSortedMap.java

     * override {@code putAll} as well, either providing your own implementation, or delegating to the
     * provided {@code standardPutAll} method.
     *
     * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code
     * default} methods. Instead, it inherits their default implementations. When those implementations
     * invoke methods, they invoke methods on the {@code ForwardingSortedMap}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/android-application/groovy/app/build.gradle

                proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
            }
        }
    }
    
    dependencies {
        implementation 'androidx.appcompat:appcompat:1.2.0'
        implementation 'com.google.android.material:material:1.2.0'
        implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
        testImplementation 'junit:junit:4.13.1'
        androidTestImplementation 'androidx.test.ext:junit:1.1.2'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:34 UTC 2024
    - 1011 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/android-application/kotlin/app/build.gradle.kts

                proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
            }
        }
    }
    
    dependencies {
        implementation("androidx.appcompat:appcompat:1.2.0")
        implementation("com.google.android.material:material:1.2.0")
        implementation("androidx.constraintlayout:constraintlayout:2.0.4")
        testImplementation("junit:junit:4.13.1")
        androidTestImplementation("androidx.test.ext:junit:1.1.2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:34 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/util/testing/fake.go

    }
    
    // UpdateVirtualServer is a fake implementation, it updates the VirtualServer in the cache store.
    func (f *FakeIPVS) UpdateVirtualServer(serv *utilipvs.VirtualServer) error {
    	if serv == nil {
    		return fmt.Errorf("failed to update service, service can't be nil")
    	}
    	key := toServiceKey(serv)
    	f.Services[key] = serv
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 7K bytes
    - Viewed (0)
Back to top