Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 109 for ibm (0.02 sec)

  1. subprojects/core-api/src/main/java/org/gradle/model/internal/type/ClassTypeWrapper.java

        }
    
        @Override
        public String getRepresentation(boolean full) {
            try {
                return tryToGetRepresentation(full);
            } catch (NoClassDefFoundError ignore) {
                // This happens for IBM JDK 6 for nested interfaces -- see https://issues.apache.org/jira/browse/GROOVY-7010
                // Let's try to return something as close as possible to the intended value
                Class<?> clazz = unwrap();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 11 21:42:04 UTC 2018
    - 4.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/jvm/JvmTest.groovy

            def jvm = Jvm.forHome(new File(System.getProperty("java.home")))
    
            jvm.is(current)
        }
    
        def "uses system property to determine if IBM JVM"() {
            when:
            System.properties[vendorProperty] = 'IBM Corporation'
            def jvm = Jvm.current()
    
            then:
            jvm.isIbmJvm()
    
            where:
            vendorProperty << ['java.vendor', 'java.vm.vendor']
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. internal/event/target/kafka_scram_client_contrib.go

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package target
    
    import (
    	"crypto/sha512"
    	"strings"
    
    	"github.com/IBM/sarama"
    	"github.com/xdg/scram"
    
    	"github.com/minio/minio/internal/hash/sha256"
    )
    
    func initScramClient(args KafkaArgs, config *sarama.Config) {
    	switch strings.ToLower(args.SASL.Mechanism) {
    	case "sha512":
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Nov 09 04:04:01 UTC 2023
    - 3.2K bytes
    - Viewed (1)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/method/WeaklyTypeReferencingMethod.java

            return modifiers;
        }
    
        public Annotation[] getAnnotations() {
            //we could retrieve annotations at construction time and hold references to them but unfortunately
            //in IBM JDK strong references are held from annotation instance to class in which it is used so we have to reflect
            return getMethod().getAnnotations();
        }
    
        public List<ModelType<?>> getGenericParameterTypes() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/converter/KatakanaConverter.java

    import org.apache.lucene.analysis.TokenStream;
    import org.apache.lucene.analysis.TokenizerFactory;
    import org.apache.lucene.analysis.tokenattributes.CharTermAttribute;
    import org.opensearch.core.common.Strings;
    
    import com.ibm.icu.text.Transliterator;
    
    public class KatakanaConverter implements ReadingConverter {
    
        protected final Transliterator transliterator = Transliterator.getInstance("Hiragana-Katakana");
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/jpms/test/JavaModuleBackboxTestExcutionIntegrationTest.groovy

            executer.withStackTraceChecksDisabled()
    
            when:
            testModuleInfo('requires junit')
            testModuleClass('')
    
            then:
            fails "test"
            // Oracle JDK or IBM JDK
            failure.assertHasErrorOutput('Unrecognized option: --module') || failure.assertHasErrorOutput('Command-line option unrecognised: --module')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/sys/cpu/cpu.go

    	IsPOWER8 bool // ISA v2.07 (POWER8)
    	IsPOWER9 bool // ISA v3.00 (POWER9), implies IsPOWER8
    	_        CacheLinePad
    }
    
    // S390X contains the supported CPU features of the current IBM Z
    // (s390x) platform. If the current platform is not IBM Z then all
    // feature flags are false.
    //
    // S390X is padded to avoid false sharing. Further HasVX is only set
    // if the OS supports vector registers in addition to the STFLE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolutionIssuesIntegrationTest.groovy

                    implementation 'org.hibernate:hibernate-entitymanager:5.4.18.Final'
    
                    implementation ('jaxen:jaxen:1.1.1') {
                        exclude group: 'com.ibm.icu', module: 'icu4j'
                    }
    
                    implementation 'org.unitils:unitils-database:3.3'
                }
            """
    
            expect:
            succeeds(":resolve", "--stacktrace")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 04:02:23 UTC 2024
    - 30K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbTree.java

                 * established.
                 */
        
                session.transport.connect();
    
                unc = "\\\\" + session.transport.tconHostName + '\\' + share;
        
                /* IBM iSeries doesn't like specifying a service. Always reset
                 * the service to whatever was determined in the constructor.
                 */
                service = service0;
        
                /*
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 8K bytes
    - Viewed (0)
  10. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/install/internal/DefaultJavaToolchainProvisioningServiceTest.groovy

    import spock.lang.TempDir
    
    import java.util.stream.Collectors
    import java.util.stream.IntStream
    
    class DefaultJavaToolchainProvisioningServiceTest extends Specification {
    
        private static final String ARCHIVE_NAME = 'ibm-11-x64-hotspot-linux.zip'
    
        private static final JavaToolchainDownload DOWNLOAD = JavaToolchainDownload.fromUri(URI.create('https://server/whatever'))
    
        @TempDir
        public File temporaryFolder
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 23:01:05 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top