Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 109 for ibm (0.18 sec)

  1. pom.xml

    			<releases>
    				<enabled>false</enabled>
    			</releases>
    			<snapshots>
    				<enabled>true</enabled>
    			</snapshots>
    		</repository>
    	</repositories>
    	<dependencies>
    		<dependency>
    			<groupId>com.ibm.icu</groupId>
    			<artifactId>icu4j</artifactId>
    			<version>${icu4j.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>org.codelibs</groupId>
    			<artifactId>corelib</artifactId>
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu May 30 06:30:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/JvmInstallationMetadataMatcher.java

            return jvmImplementation == JvmImplementation.J9;
        }
    
        private boolean isJ9RequestedViaVendor() {
            return vendorSpec != DefaultJvmVendorSpec.any() && vendorSpec.test(JvmVendor.KnownJvmVendor.IBM.asJvmVendor());
        }
    
        private Predicate<JvmInstallationMetadata> vendorPredicate() {
            return vendorSpec;
        }
    
        private boolean implementationTest(JvmInstallationMetadata metadata) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:47 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/streams/ExecOutputHandleRunner.java

        }
    
        private void writeBuffer(byte[] buffer, int nread) throws IOException {
            outputStream.write(buffer, 0, nread);
            outputStream.flush();
        }
    
        /**
         * This can happen e.g. on IBM JDK when a remote process was terminated. Instead of
         * returning -1 on the next read() call, it will interrupt the current read call.
         */
        private boolean wasInterrupted(Throwable t) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 11 16:06:58 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/SystemClassLoaderTest.groovy

     */
    class SystemClassLoaderTest extends AbstractIntegrationSpec {
    
        static heading = "systemClassLoader info"
        static noInfoHeading = "no systemClassLoader info"
    
        /*
            Note: The IBM ClassLoader.systemClassLoader does not throw ClassNotFoundException like it should when you ask
            for a class it doesn't have, it simply returns null. I've not been able to find any official documentation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonToolchainInvalidCriteriaIntegrationTest.groovy

            then:
            failureDescriptionContains("Option toolchainVendor doesn't accept value 'unexpectedVendor'. Possible values are " +
                "[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)
  6. src/main/java/org/codelibs/fess/suggest/converter/AnalyzerConverter.java

    import org.opensearch.action.admin.indices.analyze.AnalyzeAction.AnalyzeToken;
    import org.opensearch.client.Client;
    import org.opensearch.core.common.Strings;
    
    import com.ibm.icu.text.Transliterator;
    
    public class AnalyzerConverter implements ReadingConverter {
        protected final Client client;
        private final SuggestSettings settings;
        protected final AnalyzerSettings analyzerSettings;
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/s390x/condition_code.go

    )
    
    // CCMask represents a 4-bit condition code mask. Bits that
    // are not part of the mask should be 0.
    //
    // Condition code masks represent the 4 possible values of
    // the 2-bit condition code as individual bits. Since IBM Z
    // is a big-endian platform bits are numbered from left to
    // right. The lowest value, 0, is represented by 8 (0b1000)
    // and the highest value, 3, is represented by 1 (0b0001).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 08 01:46:31 UTC 2020
    - 3.2K bytes
    - Viewed (0)
  8. internal/logger/target/kafka/kafka_scram_client_contrib.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package kafka
    
    import (
    	"crypto/sha512"
    	"strings"
    
    	"github.com/IBM/sarama"
    	"github.com/xdg/scram"
    
    	"github.com/minio/minio/internal/hash/sha256"
    )
    
    func initScramClient(cfg Config, config *sarama.Config) {
    	switch strings.ToLower(cfg.SASL.Mechanism) {
    	case "sha512":
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Nov 09 04:04:01 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. platforms/jvm/toolchains-jvm-shared/src/test/groovy/org/gradle/jvm/toolchain/internal/JavaToolchainInputTest.groovy

            expect:
            base.languageVersion == diff.languageVersion
            base.vendor == diff.vendor
            base.implementation != diff.implementation
        }
    
        def newSpec(int languageVersion, String vendor = "ibm", JvmImplementation impl = JvmImplementation.VENDOR_SPECIFIC) {
            def spec = createSpec()
            spec.languageVersion.set(JavaLanguageVersion.of(languageVersion))
            spec.vendor.set(JvmVendorSpec.matching(vendor))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractSourceIncrementalCompilationIntegrationTest.groovy

                ${mavenCentralRepository()}
                dependencies { implementation 'com.ibm.icu:icu4j:2.6.1' }
            """
            expect:
            succeeds language.compileTaskName
        }
    
        @Issue("GRADLE-3426")
        def "fully recompiles when a non-analyzable jar is changed"() {
            def a = source """
                import com.ibm.icu.util.Calendar;
                class A {
                    Calendar cal;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 16.5K bytes
    - Viewed (0)
Back to top