Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 231 for tencent (0.15 sec)

  1. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/JvmVendor.java

            JETBRAINS("jetbrains", "JetBrains"),
            MICROSOFT("microsoft", "Microsoft"),
            ORACLE("oracle", "Oracle"),
            SAP("sap se", "SAP SapMachine"),
            TENCENT("tencent", "Tencent"),
            UNKNOWN("gradle", "Unknown Vendor");
    
            private final String indicatorString;
            private final Pattern indicatorPattern;
            private final String displayName;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 02 23:55:59 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JvmVendorSpec.java

        public static final JvmVendorSpec SAP = matching(KnownJvmVendor.SAP);
    
        /**
         * A constant for using <a href="https://tencent.github.io/konajdk">Tencent Kona JDK</a> as the JVM vendor.
         *
         * @since 8.6
         */
        @Incubating
        public static final JvmVendorSpec TENCENT = matching(KnownJvmVendor.TENCENT);
    
        /**
         * Determines if the vendor passed as an argument matches this spec.
         * @param vendor the vendor to test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-configuration/src/integTest/groovy/org/gradle/interal/buildconfiguration/tasks/UpdateDaemonJvmIntegrationTest.groovy

            where:
            vendor << ["ADOPTIUM", "ADOPTOPENJDK", "AMAZON", "APPLE", "AZUL", "BELLSOFT", "GRAAL_VM", "HEWLETT_PACKARD", "IBM", "JETBRAINS", "MICROSOFT", "ORACLE", "SAP", "TENCENT", "UNKNOWN"]
        }
    
        @NotYetImplemented
        def "When execute updateDaemonJvm for valid implementation option Then build properties are populated with expected values"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonToolchainInvalidCriteriaIntegrationTest.groovy

                "[ADOPTIUM, ADOPTOPENJDK, AMAZON, APPLE, AZUL, BELLSOFT, GRAAL_VM, HEWLETT_PACKARD, IBM, JETBRAINS, MICROSOFT, ORACLE, SAP, TENCENT, UNKNOWN]")
        }
    
        @NotYetImplemented
        def "Given unexpected toolchain implementation When execute any task Then fails with expected exception message"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. src/runtime/defs_aix.go

    #include <sys/thread.h>
    #include <sys/resource.h>
    
    #include <unistd.h>
    #include <fcntl.h>
    #include <pthread.h>
    #include <semaphore.h>
    */
    import "C"
    
    const (
    	_EPERM     = C.EPERM
    	_ENOENT    = C.ENOENT
    	_EINTR     = C.EINTR
    	_EAGAIN    = C.EAGAIN
    	_ENOMEM    = C.ENOMEM
    	_EACCES    = C.EACCES
    	_EFAULT    = C.EFAULT
    	_EINVAL    = C.EINVAL
    	_ETIMEDOUT = C.ETIMEDOUT
    
    	_PROT_NONE  = C.PROT_NONE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 20 21:27:51 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. src/go/parser/testdata/issue3106.src

    package main
    
    func f() {
    	var m Mutex
    	c := MakeCond(&m)
    	percent := 0
    	const step = 10
    	for i := 0; i < 5; i++ {
    		go func() {
    			for {
    				// Emulates some useful work.
    				time.Sleep(1e8)
    				m.Lock()
    				defer
    				if /* ERROR "expected ';', found 'if'" */ percent == 100 {
    					m.Unlock()
    					break
    				}
    				percent++
    				if percent % step == 0 {
    					//c.Signal()
    				}
    				m.Unlock()
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 829 bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ResolutionBackedFileCollection.java

            super(taskDependencyFactory);
            this.resultProvider = resultProvider;
            this.lenient = lenient;
            this.resolutionHost = resolutionHost;
        }
    
        public ResolutionHost getResolutionHost() {
            return resolutionHost;
        }
    
        public boolean isLenient() {
            return lenient;
        }
    
        @Override
        public void visitDependencies(TaskDependencyResolveContext context) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:48:26 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/AdditionalVariant.java

        private final String name;
        private final String base;
        private final boolean lenient;
    
        public AdditionalVariant(String name) {
            this(name, null, false);
        }
    
        public AdditionalVariant(String name, @Nullable String base, boolean lenient) {
            this.name = name;
            this.base = base;
            this.lenient = lenient;
        }
    
        public String getName() {
            return name;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultArtifactCollection.java

        private final boolean lenient;
        private final CalculatedValue<ArtifactSetResult> result;
    
        public DefaultArtifactCollection(ResolutionBackedFileCollection files, boolean lenient, ResolutionHost resolutionHost, CalculatedValueFactory calculatedValueFactory) {
            this.fileCollection = files;
            this.lenient = lenient;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/InstantiatorFactory.java

         */
        InstantiationScheme decorateScheme();
    
        /**
         * Creates an {@link Instantiator} that decorates the instances created.
         * The returned {@link Instantiator} is lenient when there is a missing {@link javax.inject.Inject} annotation or null constructor parameters,
         * for backwards compatibility.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top