Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 224 for interneti (0.16 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/notations/ClientModuleNotationParserFactory.java

        private final Instantiator instantiator;
        private final Interner<String> stringInterner;
    
        public ClientModuleNotationParserFactory(Instantiator instantiator, Interner<String> stringInterner) {
            this.instantiator = instantiator;
            this.stringInterner = stringInterner;
        }
    
        @Nonnull
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/HierarchicalNameSerializerTest.groovy

    package org.gradle.internal.serialize
    
    import com.google.common.collect.Interners
    import org.gradle.internal.serialize.kryo.KryoBackedDecoder
    import org.gradle.internal.serialize.kryo.KryoBackedEncoder
    import spock.lang.Specification
    
    class HierarchicalNameSerializerTest extends Specification {
        HierarchicalNameSerializer serializer = new HierarchicalNameSerializer(Interners.newWeakInterner())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/lif/address.go

    	Family() int
    }
    
    // An Inet4Addr represents an internet address for IPv4.
    type Inet4Addr struct {
    	IP        [4]byte // IP address
    	PrefixLen int     // address prefix length
    }
    
    // Family implements the Family method of Addr interface.
    func (a *Inet4Addr) Family() int { return syscall.AF_INET }
    
    // An Inet6Addr represents an internet address for IPv6.
    type Inet6Addr struct {
    	IP        [16]byte // IP address
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/templates/structuring-software-projects/android-app/app/src/main/AndroidManifest.xml

    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
              package="com.example.myproduct.app">
    
        <uses-permission android:name="android.permission.INTERNET" />
    
        <application>
            <activity android:name=".MyProductAppActivity" android:label="My Product">
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 580 bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/PreviousCompilationData.java

            private final StringInterner interner;
    
            public Serializer(StringInterner interner) {
                this.interner = interner;
            }
    
            @Override
            public PreviousCompilationData read(Decoder decoder) throws Exception {
                HierarchicalNameSerializer hierarchicalNameSerializer = new HierarchicalNameSerializer(interner);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Feb 24 12:57:52 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. android-test-app/src/main/AndroidManifest.xml

    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
              xmlns:tools="http://schemas.android.com/tools" package="okhttp.android.testapp">
    
      <uses-permission android:name="android.permission.INTERNET" />
    
      <application
        android:allowBackup="true"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:name=".TestApplication"
      >
        <activity
          android:name=".MainActivity"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 23 14:46:51 UTC 2023
    - 683 bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/catalog/parser/StrictVersionParser.java

     */
    package org.gradle.api.internal.catalog.parser;
    
    import com.google.common.collect.Interner;
    import org.gradle.api.InvalidUserCodeException;
    
    import javax.annotation.Nullable;
    
    public class StrictVersionParser {
        private final Interner<String> stringInterner;
    
        public StrictVersionParser(Interner<String> stringInterner) {
            this.stringInterner = stringInterner;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 16 14:58:26 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/CompileServices.java

                return new IncrementalCompilerFactory(buildOperationExecutor, interner, classSetAnalyzer);
            }
    
            @Provides
            CachingClassDependenciesAnalyzer createClassAnalyzer(StringInterner interner, GeneralCompileCaches cache) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/impl/RelativePathFingerprintingStrategy.java

        public static final String IDENTIFIER = "RELATIVE_PATH";
    
        private final Interner<String> stringInterner;
        private final FileSystemLocationSnapshotHasher normalizedContentHasher;
    
        public RelativePathFingerprintingStrategy(Interner<String> stringInterner, DirectorySensitivity directorySensitivity, FileSystemLocationSnapshotHasher normalizedContentHasher) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/cache/UserHomeScopedCompileCaches.java

        private final Cache<HashCode, ClassAnalysis> classAnalysisCache;
    
        public UserHomeScopedCompileCaches(GlobalScopedCacheBuilderFactory cacheBuilderFactory, InMemoryCacheDecoratorFactory inMemoryCacheDecoratorFactory, StringInterner interner) {
            cache = cacheBuilderFactory
                .createCacheBuilder("javaCompile")
                .withDisplayName("Java compile cache")
                .withInitialLockMode(FileLockManager.LockMode.OnDemand)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Feb 24 12:57:52 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top