repo_id
stringclasses
875 values
size
int64
974
38.9k
file_path
stringlengths
10
308
content
stringlengths
974
38.9k
google/j2cl
1,071
benchmarking/java/com/google/j2cl/benchmarks/jre/ArrayObjectSetBenchmark.java
/* * Copyright 2015 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ package com.google.j2cl.benchmarks.jre; import com.google.j2cl.benchmarking.framework.AbstractBenchmark; /** Benchmark array set performance. */ public class ArrayObjectSetBenchmark extends AbstractBenchmark { private Object[] array; @Override public Object run() { var value = "String"; for (int i = 0; i < array.length; i++) { array[i] = value; } return array; } @Override public void setupOneTime() { array = new Object[1000]; } }
google/j2cl
1,081
benchmarking/java/com/google/j2cl/benchmarks/octane/RayTraceBenchmark.java
/* * Copyright 2014 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ package com.google.j2cl.benchmarks.octane; import com.google.j2cl.benchmarking.framework.AbstractBenchmark; import com.google.j2cl.benchmarks.octane.raytrace.RayTrace; import javax.annotation.Nullable; /** * This is the Java port of the JavaScript implementation of RayTrace benchmark from the V8 octane * benchmark suite. */ public class RayTraceBenchmark extends AbstractBenchmark { @Nullable @Override public Object run() { RayTrace.renderScene(); return null; } }
google/or-tools
1,112
ortools/sat/samples/LiteralSampleSat.java
// Copyright 2010-2025 Google LLC // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package com.google.ortools.sat.samples; import com.google.ortools.Loader; import com.google.ortools.sat.BoolVar; import com.google.ortools.sat.CpModel; import com.google.ortools.sat.Literal; /** Code sample to demonstrate Boolean variable and literals. */ public class LiteralSampleSat { public static void main(String[] args) throws Exception { Loader.loadNativeLibraries(); CpModel model = new CpModel(); BoolVar x = model.newBoolVar("x"); Literal notX = x.not(); System.out.println(notX); } }
googleads/google-ads-java
1,042
google-ads-stubs-v19/src/main/java/com/google/ads/googleads/v19/common/BrandListInfoOrBuilder.java
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/ads/googleads/v19/common/criteria.proto // Protobuf Java Version: 3.25.7 package com.google.ads.googleads.v19.common; public interface BrandListInfoOrBuilder extends // @@protoc_insertion_point(interface_extends:google.ads.googleads.v19.common.BrandListInfo) com.google.protobuf.MessageOrBuilder { /** * <pre> * Shared set resource name of the brand list. * </pre> * * <code>optional string shared_set = 1;</code> * @return Whether the sharedSet field is set. */ boolean hasSharedSet(); /** * <pre> * Shared set resource name of the brand list. * </pre> * * <code>optional string shared_set = 1;</code> * @return The sharedSet. */ java.lang.String getSharedSet(); /** * <pre> * Shared set resource name of the brand list. * </pre> * * <code>optional string shared_set = 1;</code> * @return The bytes for sharedSet. */ com.google.protobuf.ByteString getSharedSetBytes(); }
googleads/google-ads-java
1,042
google-ads-stubs-v20/src/main/java/com/google/ads/googleads/v20/common/BrandListInfoOrBuilder.java
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/ads/googleads/v20/common/criteria.proto // Protobuf Java Version: 3.25.7 package com.google.ads.googleads.v20.common; public interface BrandListInfoOrBuilder extends // @@protoc_insertion_point(interface_extends:google.ads.googleads.v20.common.BrandListInfo) com.google.protobuf.MessageOrBuilder { /** * <pre> * Shared set resource name of the brand list. * </pre> * * <code>optional string shared_set = 1;</code> * @return Whether the sharedSet field is set. */ boolean hasSharedSet(); /** * <pre> * Shared set resource name of the brand list. * </pre> * * <code>optional string shared_set = 1;</code> * @return The sharedSet. */ java.lang.String getSharedSet(); /** * <pre> * Shared set resource name of the brand list. * </pre> * * <code>optional string shared_set = 1;</code> * @return The bytes for sharedSet. */ com.google.protobuf.ByteString getSharedSetBytes(); }
googleads/google-ads-java
1,042
google-ads-stubs-v21/src/main/java/com/google/ads/googleads/v21/common/BrandListInfoOrBuilder.java
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/ads/googleads/v21/common/criteria.proto // Protobuf Java Version: 3.25.7 package com.google.ads.googleads.v21.common; public interface BrandListInfoOrBuilder extends // @@protoc_insertion_point(interface_extends:google.ads.googleads.v21.common.BrandListInfo) com.google.protobuf.MessageOrBuilder { /** * <pre> * Shared set resource name of the brand list. * </pre> * * <code>optional string shared_set = 1;</code> * @return Whether the sharedSet field is set. */ boolean hasSharedSet(); /** * <pre> * Shared set resource name of the brand list. * </pre> * * <code>optional string shared_set = 1;</code> * @return The sharedSet. */ java.lang.String getSharedSet(); /** * <pre> * Shared set resource name of the brand list. * </pre> * * <code>optional string shared_set = 1;</code> * @return The bytes for sharedSet. */ com.google.protobuf.ByteString getSharedSetBytes(); }
hibernate/hibernate-orm
1,024
hibernate-core/src/main/java/org/hibernate/query/sqm/internal/SqmCreationOptionsStandard.java
/* * SPDX-License-Identifier: Apache-2.0 * Copyright Red Hat Inc. and Hibernate Authors */ package org.hibernate.query.sqm.internal; import org.hibernate.query.hql.spi.SqmCreationOptions; import org.hibernate.query.spi.QueryEngineOptions; /** * @author Steve Ebersole */ public class SqmCreationOptionsStandard implements SqmCreationOptions { private final QueryEngineOptions queryEngineOptions; public SqmCreationOptionsStandard(QueryEngineOptions queryEngineOptions) { this.queryEngineOptions = queryEngineOptions; } @Override public boolean useStrictJpaCompliance() { return queryEngineOptions.getJpaCompliance().isJpaQueryComplianceEnabled(); } @Override public boolean isJsonFunctionsEnabled() { return queryEngineOptions.isJsonFunctionsEnabled(); } @Override public boolean isXmlFunctionsEnabled() { return queryEngineOptions.isXmlFunctionsEnabled(); } @Override public boolean isPortableIntegerDivisionEnabled() { return queryEngineOptions.isPortableIntegerDivisionEnabled(); } }
hibernate/hibernate-orm
1,037
hibernate-core/src/main/java/org/hibernate/query/sqm/DynamicInstantiationNature.java
/* * SPDX-License-Identifier: Apache-2.0 * Copyright Red Hat Inc. and Hibernate Authors */ package org.hibernate.query.sqm; import java.util.List; import java.util.Map; /** * Represents the type of instantiation to be performed. * * @see org.hibernate.query.sqm.tree.select.SqmDynamicInstantiationTarget#getNature * * @author Steve Ebersole */ public enum DynamicInstantiationNature { /** * The target names a Class to be instantiated. This is the only form * of dynamic instantiation that is JPA-compliant. */ CLASS, /** * The target identified a {@link Map} instantiation. The * result for each "row" will be a Map whose key is the alias (or name * of the selected attribute is no alias) and whose value is the * corresponding value read from the JDBC results. Similar to JPA's * named-Tuple support. */ MAP, /** * The target identified a {@link List} instantiation. The * result for each "row" will be a List rather than an array. Similar * to JPA's positional-Tuple support. */ LIST }
hibernate/hibernate-shards
1,073
src/test/java/org/hibernate/shards/session/ShardIdResolverDefaultMock.java
/** * Copyright (C) 2007 Google Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */ package org.hibernate.shards.session; import org.hibernate.shards.ShardId; /** * @author maxr@google.com (Max Ross) */ class ShardIdResolverDefaultMock implements ShardIdResolver { public ShardId getShardIdForObject(Object obj) { throw new UnsupportedOperationException(); } }
openjdk/jdk8
1,089
langtools/test/tools/javac/diags/examples/InaccessibleVarargsType/p1/A.java
/* * Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package p1; class A { A() { } }
openjdk/jdk8
1,109
langtools/test/tools/javac/depOverrides/annotation/A.java
/* /nodynamiccopyright/ */ // combinations of methods defined in an interface // and overridden in subtypes // class should compile with deprecation warnings as shown abstract class A implements I { @Deprecated public void iDep_aDep_bDep() { } @Deprecated public void iDep_aDep_bUnd() { } @Deprecated public void iDep_aDep_bInh() { } public void iDep_aUnd_bDep() { } // warn public void iDep_aUnd_bUnd() { } // warn public void iDep_aUnd_bInh() { } // warn // public void iDep_aInh_bDep() { } // public void iDep_aInh_bUnd() { } // public void iDep_aInh_bInh() { } @Deprecated public void iUnd_aDep_bDep() { } @Deprecated public void iUnd_aDep_bUnd() { } @Deprecated public void iUnd_aDep_bInh() { } public void iUnd_aUnd_bDep() { } public void iUnd_aUnd_bUnd() { } public void iUnd_aUnd_bInh() { } // public void iUnd_aInh_bDep() { } // public void iUnd_aInh_bUnd() { } // public void iUnd_aInh_bInh() { } }
openjdk/jdk8
1,110
langtools/test/tools/javac/synthesize/Serializable.java
/* * Copyright (c) 2007, 2008, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package java.io; public interface Serializable { }
openjdk/jdk8
1,111
langtools/test/tools/javadoc/parser/7091528/p/C1.java
/* * Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package p1; /** This is class C1. */ public class C1 { }
openjdk/jdk8
1,113
langtools/test/com/sun/javadoc/testHref/pkg/C4.java
/* * Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package pkg; public abstract class C4<E extends C4<E>> { }
openjdk/jdk8
1,114
jdk/test/sun/rmi/rmic/defaultStubVersion/G1Impl.java
/* * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ public class G1Impl implements G1 { public void m() { } }
openjdk/jdk8
1,114
langtools/test/tools/javac/ImportCycle/foo/Top2.java
/* * Copyright (c) 1997, 2000, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package foo; public interface Top2 extends Middle2 { }
openjdk/jdk8
1,121
langtools/test/tools/javac/abstract/U2.java
/* * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package p1; public abstract class U2 extends U1 { void f() {} }
openjdk/jtreg
1,138
test/ignoreTag/Pass.java
/* * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ /* * @test */ public class Pass { public static void main(String... args) { } }
oracle/coherence
1,073
prj/test/functional/extend/src/main/java/extend/Connectable.java
/* * Copyright (c) 2000, 2022, Oracle and/or its affiliates. * * Licensed under the Universal Permissive License v 1.0 as shown at * https://oss.oracle.com/licenses/upl. */ package extend; import java.io.IOException; import java.net.Socket; import java.util.concurrent.Callable; /** * A custom {@link java.util.concurrent.Callable} to represent * if it is possible to connect to a {@link java.net.Socket}. * * @author bo 2014.11.20 */ public class Connectable implements Callable<Boolean> { /** * Constructs a {@link Connectable}. * * @param sAddress * @param nPort */ public Connectable(String sAddress, int nPort) { m_sAddress = sAddress; m_nPort = nPort; } @Override public Boolean call() { try { new Socket(m_sAddress, m_nPort).close(); return true; } catch (IOException e) { return false; } } private String m_sAddress; private int m_nPort; }
oracle/oci-java-sdk
1,031
bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/ChecksumInfo.java
/** * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.internal; import com.oracle.bmc.objectstorage.model.ChecksumAlgorithm; /** * Encapsulates a checksum value and its corresponding algorithm. Stores a checksum along with the * {@link ChecksumAlgorithm}. */ public class ChecksumInfo { private final String checksum; private final ChecksumAlgorithm algorithm; public ChecksumInfo(String checksum, ChecksumAlgorithm algorithm) { this.checksum = checksum; this.algorithm = algorithm; // Algorithm can be null for MD5 } public String getChecksum() { return checksum; } public ChecksumAlgorithm getAlgorithm() { return algorithm; } }
apache/commons-vfs
1,071
commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/libcheck/package-info.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * Sample clients for commons-net.ftp and JSch libraries. * * <p> * The classes do not use the VFS library, but can be used to test the underlying libraries, if they can connect to a * specified service. * </p> */ package org.apache.commons.vfs2.libcheck;
apache/cxf
1,074
rt/rs/description/src/main/java/org/apache/cxf/jaxrs/model/wadl/ElementQNameResolver.java
/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.cxf.jaxrs.model.wadl; import java.lang.annotation.Annotation; import java.util.Map; import javax.xml.namespace.QName; public interface ElementQNameResolver { QName resolve(Class<?> type, Annotation[] annotations, Map<Class<?>, QName> clsMap); }
apache/doris-manager
1,033
manager/general/src/main/java/org/apache/doris/stack/exception/DorisIpErrorException.java
// Licensed to the Apache Software Foundation (ASF) under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. The ASF licenses this file // to you under the Apache License, Version 2.0 (the // "License"); you may not use this file except in compliance // with the License. You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, // software distributed under the License is distributed on an // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY // KIND, either express or implied. See the License for the // specific language governing permissions and limitations // under the License. package org.apache.doris.stack.exception; public class DorisIpErrorException extends Exception { public static final String MESSAGE = "IP地址无法访问,请检查后重新输入"; public DorisIpErrorException() { super(MESSAGE); } }
apache/doris-manager
1,033
manager/general/src/main/java/org/apache/doris/stack/exception/StudioNotInitException.java
// Licensed to the Apache Software Foundation (ASF) under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. The ASF licenses this file // to you under the Apache License, Version 2.0 (the // "License"); you may not use this file except in compliance // with the License. You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, // software distributed under the License is distributed on an // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY // KIND, either express or implied. See the License for the // specific language governing permissions and limitations // under the License. package org.apache.doris.stack.exception; public class StudioNotInitException extends Exception { public static final String MESSAGE = "初始化未完成,请完成后再操作"; public StudioNotInitException() { super(MESSAGE); } }
apache/doris-manager
1,037
manager/general/src/main/java/org/apache/doris/stack/exception/LdapConnectionException.java
// Licensed to the Apache Software Foundation (ASF) under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. The ASF licenses this file // to you under the Apache License, Version 2.0 (the // "License"); you may not use this file except in compliance // with the License. You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, // software distributed under the License is distributed on an // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY // KIND, either express or implied. See the License for the // specific language governing permissions and limitations // under the License. package org.apache.doris.stack.exception; public class LdapConnectionException extends Exception { public static final String MESSAGE = "LDAP配置信息有误,请修改后重试"; public LdapConnectionException() { super(MESSAGE); } }
apache/doris-manager
1,064
manager/general/src/main/java/org/apache/doris/stack/util/DorisMySQL5InnoDBDialect.java
// Licensed to the Apache Software Foundation (ASF) under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. The ASF licenses this file // to you under the Apache License, Version 2.0 (the // "License"); you may not use this file except in compliance // with the License. You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, // software distributed under the License is distributed on an // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY // KIND, either express or implied. See the License for the // specific language governing permissions and limitations // under the License. package org.apache.doris.stack.util; import org.hibernate.dialect.MySQL5InnoDBDialect; public class DorisMySQL5InnoDBDialect extends MySQL5InnoDBDialect { public String getTableTypeString() { return " ENGINE=InnoDB DEFAULT CHARSET=utf8"; } }
apache/dubbo-ai
1,078
java/dubbo-ai-core/src/main/java/org/apache/dubbo/ai/core/model/Parser.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.dubbo.ai.core.model; /** * parse obj from text */ public interface Parser<T> { T parse(String content); /** * Description of the text format. * @return the description of the text format. */ String formatDesc(); }
apache/eagle
1,056
eagle-jpm/eagle-jpm-mr-history/src/main/java/org/apache/eagle/jpm/mr/history/crawler/JHFCrawlerDriver.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.eagle.jpm.mr.history.crawler; public interface JHFCrawlerDriver { /** * return -1 if failed or there is no file to crawl. * return modified time of the file if succeed. */ long crawl() throws Exception; }
apache/felix-dev
1,026
ipojo/runtime/core-it/ipojo-compatibility-test/src/main/java/org/apache/felix/ipojo/test/compatibility/service/CheckService.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.felix.ipojo.test.compatibility.service; import java.util.Map; /** * A service used to check the correct invocation. */ public interface CheckService { public Map<String, Object> data(); }
apache/felix-dev
1,038
ipojo/runtime/core-it/ipojo-core-context-injection-test/src/test/java/org/apache/felix/ipojo/runtime/core/Common.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.felix.ipojo.runtime.core; import org.ow2.chameleon.testing.helpers.BaseTest; /** * Bootstrap the test from this project */ public class Common extends BaseTest { // No custom configuration required. }
apache/fineract
1,049
fineract-provider/src/main/java/org/apache/fineract/portfolio/self/pockets/service/AccountEntityService.java
/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.fineract.portfolio.self.pockets.service; public interface AccountEntityService { String getKey(); void validateSelfUserAccountMapping(Long accountId); String retrieveAccountNumberByAccountId(Long accountId); }
apache/flink
1,048
flink-table/flink-sql-gateway-api/src/test/java/org/apache/flink/table/gateway/api/utils/MockedEndpointVersion.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.flink.table.gateway.api.utils; import org.apache.flink.table.gateway.api.endpoint.EndpointVersion; /** Mocked {@link EndpointVersion} for test. */ public enum MockedEndpointVersion implements EndpointVersion { V1; }
apache/flink
1,071
flink-runtime/src/main/java/org/apache/flink/runtime/security/contexts/SecurityContext.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.flink.runtime.security.contexts; import java.util.concurrent.Callable; /** A security context with may be required to run a Callable. */ public interface SecurityContext { <T> T runSecured(Callable<T> securedCallable) throws Exception; }
apache/geaflow
1,039
geaflow/geaflow-dsl/geaflow-dsl-runtime/src/main/java/org/apache/geaflow/dsl/runtime/traversal/message/IMessage.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.geaflow.dsl.runtime.traversal.message; import java.io.Serializable; public interface IMessage extends Serializable { MessageType getType(); IMessage combine(IMessage other); IMessage copy(); }
apache/geaflow
1,051
geaflow-console/app/biz/shared/src/main/java/org/apache/geaflow/console/biz/shared/view/UserView.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.geaflow.console.biz.shared.view; import lombok.Getter; import lombok.Setter; @Getter @Setter public class UserView extends NameView { private String password; private String phone; private String email; }
apache/geaflow
1,060
geaflow-console/app/biz/shared/src/main/java/org/apache/geaflow/console/biz/shared/AuditManager.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.geaflow.console.biz.shared; import org.apache.geaflow.console.biz.shared.view.AuditView; import org.apache.geaflow.console.common.dal.model.AuditSearch; public interface AuditManager extends IdManager<AuditView, AuditSearch> { }
apache/geode
1,059
geode-common/src/test/java/org/apache/geode/annotations/experimentalpackage/ClassInExperimentalPackage.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more contributor license * agreements. See the NOTICE file distributed with this work for additional information regarding * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance with the License. You may obtain a * copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express * or implied. See the License for the specific language governing permissions and limitations under * the License. */ package org.apache.geode.annotations.experimentalpackage; /** * Used by <tt>ExperimentalJUnitTest</tt>. This is a class in an <tt>Experimental</tt> package. * * @see org.apache.geode.annotations.ExperimentalJUnitTest */ public class ClassInExperimentalPackage { }
apache/geode
1,065
geode-junit/src/main/java/org/apache/geode/test/junit/rules/serializable/SerializableStatement.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more contributor license * agreements. See the NOTICE file distributed with this work for additional information regarding * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance with the License. You may obtain a * copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express * or implied. See the License for the specific language governing permissions and limitations under * the License. */ package org.apache.geode.test.junit.rules.serializable; import java.io.Serializable; import org.junit.runners.model.Statement; /** * Serializable subclass of {@link Statement}. */ public abstract class SerializableStatement extends Statement implements Serializable { }
apache/geode
1,074
geode-lucene/src/main/java/org/apache/geode/cache/lucene/internal/repository/package-info.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more contributor license * agreements. See the NOTICE file distributed with this work for additional information regarding * copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance with the License. You may obtain a * copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express * or implied. See the License for the specific language governing permissions and limitations under * the License. */ /** * The repository package contains classes for managing a Lucene index in geode. * * All lucene index access should be through the * {@link org.apache.geode.cache.lucene.internal.repository.IndexRepository} class. */ package org.apache.geode.cache.lucene.internal.repository;
apache/giraph
1,078
giraph-core/src/main/java/org/apache/giraph/comm/netty/handler/AckSignalFlag.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.giraph.comm.netty.handler; /** * Flag used to differentiate acknowledgement flags. */ public enum AckSignalFlag { /** The request is/was new */ NEW_REQUEST, /** The request is/was not new, and is/was already processed */ DUPLICATE_REQUEST }
apache/groovy
1,053
subprojects/groovy-groovydoc/src/test/groovy/org/codehaus/groovy/tools/groovydoc/testfiles/alias/lib/Foo.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.codehaus.groovy.tools.groovydoc.testfiles.alias.lib; /** * A Foo type defined by some library, unrelated to the * {@link org.codehaus.groovy.tools.groovydoc.testfiles.alias.api.Foo API Foo}. */ public class Foo { }
apache/hadoop
1,053
hadoop-cloud-storage-project/hadoop-tos/src/main/java/org/apache/hadoop/fs/tosfs/util/UUIDUtils.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.hadoop.fs.tosfs.util; import java.util.UUID; public final class UUIDUtils { private UUIDUtils() { } public static String random() { UUID uuid = UUID.randomUUID(); return uuid.toString().replace("-", ""); } }
apache/harmony
1,092
classlib/modules/awt/src/test/impl/boot/java/awt/ColorRTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * @author Oleg V.Khaschansky */ package java.awt; import junit.framework.TestCase; public class ColorRTest extends TestCase { public void testBrighter() { Color c = new Color(200, 0, 200); assertEquals(c.brighter(), new Color(255, 0, 255)); } }
apache/hbase
1,052
hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift2/generated/TThriftServerType.java
/** * Autogenerated by Thrift Compiler (0.14.1) * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package org.apache.hadoop.hbase.thrift2.generated; /** * Specify type of thrift server: thrift and thrift2 */ @javax.annotation.Generated(value = "Autogenerated by Thrift Compiler (0.14.1)", date = "2025-08-16") public enum TThriftServerType implements org.apache.thrift.TEnum { ONE(1), TWO(2); private final int value; private TThriftServerType(int value) { this.value = value; } /** * Get the integer value of this enum value, as defined in the Thrift IDL. */ public int getValue() { return value; } /** * Find a the enum type by its integer value, as defined in the Thrift IDL. * @return null if the value is not found. */ @org.apache.thrift.annotation.Nullable public static TThriftServerType findByValue(int value) { switch (value) { case 1: return ONE; case 2: return TWO; default: return null; } } }
apache/hbase
1,075
hbase-hbtop/src/main/java/org/apache/hadoop/hbase/hbtop/field/FieldValueType.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.hadoop.hbase.hbtop.field; import org.apache.yetus.audience.InterfaceAudience; /** * Represents the type of a {@link FieldValue}. */ @InterfaceAudience.Private public enum FieldValueType { STRING, INTEGER, LONG, FLOAT, SIZE, PERCENT }
apache/hertzbeat
1,034
hertzbeat-warehouse/src/main/java/org/apache/hertzbeat/warehouse/store/history/tsdb/vm/VictoriaMetricsSelectProperties.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.hertzbeat.warehouse.store.history.tsdb.vm; /** * vmselect configuration information */ public record VictoriaMetricsSelectProperties( String url, String username, String password ) { }
apache/hive
1,090
ql/src/java/org/apache/hadoop/hive/ql/metadata/events/EventConsumer.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.hadoop.hive.ql.metadata.events; import java.util.function.Consumer; import org.apache.hadoop.conf.Configurable; import org.apache.hadoop.hive.metastore.api.NotificationEvent; public interface EventConsumer extends Configurable, Consumer<NotificationEvent> { }
apache/hop
1,084
ui/src/main/java/org/apache/hop/ui/hopgui/perspective/IHopPerspectiveListener.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.hop.ui.hopgui.perspective; /** Interface for listening to perspective activation. */ public interface IHopPerspectiveListener { /** Notifies this listener that a perspective has been activated. */ void perspectiveActivated(IHopPerspective perspective); }
apache/hudi
1,061
hudi-client/hudi-client-common/src/main/java/org/apache/hudi/exception/HoodieRollbackException.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.hudi.exception; public class HoodieRollbackException extends HoodieException { public HoodieRollbackException(String msg, Throwable e) { super(msg, e); } public HoodieRollbackException(String msg) { super(msg); } }
apache/ignite-3
1,047
modules/system-disaster-recovery/src/main/java/org/apache/ignite/internal/disaster/system/ServerRestarter.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.ignite.internal.disaster.system; /** * Knows how to initiate an Ignite node restart. */ @FunctionalInterface public interface ServerRestarter { /** * Initiates server restart. */ void initiateRestart(); }
apache/ignite-3
1,051
modules/sql-engine/src/main/java/org/apache/ignite/internal/sql/engine/statistic/StatisticUpdatesNotifier.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.ignite.internal.sql.engine.statistic; /** Statistic updates notifier. */ @FunctionalInterface public interface StatisticUpdatesNotifier { /** Changes callback. */ void changesNotifier(StatisticUpdatesSupplier updater); }
apache/ignite-3
1,068
modules/cli/src/main/java/org/apache/ignite/internal/cli/config/StateConfigProvider.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.ignite.internal.cli.config; /** * Provider for the application state config. */ public interface StateConfigProvider { /** * Gets the application state config. * * @return application state config */ Config get(); }
apache/impala
1,092
fe/src/main/java/org/apache/impala/common/InternalException.java
// Licensed to the Apache Software Foundation (ASF) under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. The ASF licenses this file // to you under the Apache License, Version 2.0 (the // "License"); you may not use this file except in compliance // with the License. You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, // software distributed under the License is distributed on an // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY // KIND, either express or implied. See the License for the // specific language governing permissions and limitations // under the License. package org.apache.impala.common; /** * Thrown for internal server errors. * */ public class InternalException extends ImpalaException { public InternalException(String msg, Throwable cause) { super(msg, cause); } public InternalException(String msg) { super(msg); } }
apache/incubator-atlas
1,070
repository/src/main/java/org/apache/atlas/repository/store/graph/EntityResolver.java
/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.atlas.repository.store.graph; import org.apache.atlas.exception.AtlasBaseException; public interface EntityResolver { EntityGraphDiscoveryContext resolveEntityReferences(EntityGraphDiscoveryContext entities) throws AtlasBaseException; }
apache/incubator-kie-drools
1,043
drools-verifier/drools-verifier-drl/src/main/java/org/drools/verifier/report/components/Reason.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.drools.verifier.report.components; import java.util.Collection; /** * * Reason why something is wrong. */ public interface Reason { public Collection<Cause> getCauses(); public ReasonType getReasonType(); }
apache/incubator-kie-drools
1,049
drools-model/drools-canonical-model/src/main/java/org/drools/model/view/QueryCallViewItem.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.drools.model.view; import org.drools.model.Argument; import org.drools.model.QueryDef; public interface QueryCallViewItem extends ViewItem { QueryDef getQuery(); Argument<?>[] getArguments(); boolean isOpen(); }
apache/incubator-kie-drools
1,062
drools-model/drools-canonical-model/src/main/java/org/drools/model/BetaIndex3.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.drools.model; import org.drools.model.functions.Function3; public interface BetaIndex3<A, B, C, D, V> extends BetaIndexN<A, V> { Function3<B, C, D, ?> getRightOperandExtractor(); default int getArity() { return 3; } }
apache/incubator-kie-kogito-runtimes
1,024
jbpm/process-serialization-protobuf/src/main/java/org/jbpm/flow/serialization/protobuf/ProtobufTypeProvider.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.jbpm.flow.serialization.protobuf; import java.util.Collection; import com.google.protobuf.Descriptors; public interface ProtobufTypeProvider { Collection<Descriptors.Descriptor> descriptors(); }
apache/incubator-kie-optaplanner
1,044
core/optaplanner-core-impl/src/main/java/org/optaplanner/core/impl/statistic/SolverStatistic.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.optaplanner.core.impl.statistic; import org.optaplanner.core.api.solver.Solver; public interface SolverStatistic<Solution_> { void unregister(Solver<Solution_> solver); void register(Solver<Solution_> solver); }
apache/inlong
1,062
inlong-sdk/dataproxy-sdk/src/main/java/org/apache/inlong/sdk/dataproxy/common/ReportProtocol.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.inlong.sdk.dataproxy.common; /** * Report Protocol enum * * This enumeration defines the protocol types allowed for the SDK to report data. * Currently only TCP and HTTP(S) are supported. */ public enum ReportProtocol { TCP, HTTP }
apache/inlong
1,073
inlong-agent/agent-common/src/main/java/org/apache/inlong/agent/plugin/Validator.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.inlong.agent.plugin; /** * For every message, there might be validators to filter required ones */ public interface Validator { /** * validate whether messageLine meets specified requirement */ boolean validate(String messageLine); }
apache/iotdb-web-workbench
1,078
backend/src/main/java/org/apache/iotdb/admin/mapper/DeviceMapper.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.iotdb.admin.mapper; import org.apache.iotdb.admin.model.entity.Device; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.springframework.stereotype.Component; @Component public interface DeviceMapper extends BaseMapper<Device> {}
apache/iotdb
1,076
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/protocol/mqtt/Message.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.iotdb.db.protocol.mqtt; /** Generic parsing of messages */ public class Message { protected Long timestamp; public Long getTimestamp() { return timestamp; } public void setTimestamp(Long timestamp) { this.timestamp = timestamp; } }
apache/jackrabbit-oak
1,095
oak-doc-railroad-macro/src/test/java/RailroadTest.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import org.apache.jackrabbit.oak.doc.doxia.jcr.Railroad; import org.junit.Test; public class RailroadTest { @Test public void main() throws Exception { String fileName = "src/test/grammar/test.csv"; System.out.println(new Railroad(fileName).render("Query")); } }
apache/jackrabbit
1,058
jackrabbit-webdav/src/main/java/org/apache/jackrabbit/webdav/property/DavPropertyNameIterator.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.jackrabbit.webdav.property; import java.util.Iterator; /** * <code>DavPropertyNameIterator</code>... */ public interface DavPropertyNameIterator extends Iterator<DavPropertyName> { public DavPropertyName nextPropertyName(); }
apache/jena
1,070
jena-db/jena-dboe-transaction/src/main/java/org/apache/jena/dboe/transaction/Transactional.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.jena.dboe.transaction; public interface Transactional extends org.apache.jena.sparql.core.Transactional { // Placeholder in case we need to add methods specific for DBOE/TDB2 // or before methods migrate to sparql.core.Transactional }
apache/jena
1,079
jena-tdb1/src/test/java/org/apache/jena/tdb1/store/nodetable/TS_NodeTable.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.jena.tdb1.store.nodetable; import org.junit.runner.RunWith ; import org.junit.runners.Suite ; @RunWith(Suite.class) @Suite.SuiteClasses( { TestNodec.class , TestNodeTableStored.class , TestNodeTable.class }) public class TS_NodeTable { }
apache/jena
1,084
jena-arq/src/main/java/org/apache/jena/riot/system/StreamRDFWriterFactory.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.jena.riot.system; import java.io.OutputStream ; import org.apache.jena.riot.RDFFormat ; import org.apache.jena.sparql.util.Context; public interface StreamRDFWriterFactory { StreamRDF create(OutputStream output, RDFFormat format, Context context) ; }
apache/jena
1,092
jena-arq/src/main/java/org/apache/jena/sparql/expr/aggregate/Args.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.jena.sparql.expr.aggregate; import org.apache.jena.sparql.expr.ExprList ; /** An Args is an ExprList with a flag for DISTINCT. * Only used for rule ArgList in the SPARQL grammar. */ public class Args extends ExprList { public boolean distinct = false ; }
apache/kafka
1,087
tools/tools-api/src/main/java/org/apache/kafka/tools/api/LongDecoder.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.kafka.tools.api; import java.nio.ByteBuffer; /** * The long decoder translates bytes into longs. */ public class LongDecoder implements Decoder<Long> { @Override public Long fromBytes(byte[] bytes) { return ByteBuffer.wrap(bytes).getLong(); } }
apache/kafka
1,100
clients/src/test/java/org/apache/kafka/test/TestCondition.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.kafka.test; /** * Interface to wrap actions that are required to wait until a condition is met * for testing purposes. Note that this is not intended to do any assertions. */ @FunctionalInterface public interface TestCondition { boolean conditionMet() throws Exception; }
apache/linkis
1,037
linkis-engineconn-plugins/spark/src/main/java/org/apache/linkis/engineplugin/spark/client/deployment/crds/ConfigMap.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.linkis.engineplugin.spark.client.deployment.crds; public class ConfigMap { private String name; public String getName() { return name; } public void setName(String name) { this.name = name; } }
apache/logging-log4j2
1,059
log4j-core/src/main/java/org/apache/logging/log4j/core/net/ssl/SslConfigurationException.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to you under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.logging.log4j.core.net.ssl; /** * */ public class SslConfigurationException extends Exception { private static final long serialVersionUID = 1L; public SslConfigurationException(final Exception e) { super(e); } }
apache/logging-log4j2
1,070
log4j-api-java9/src/main/java/org/apache/logging/log4j/message/ThreadDumpMessage.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to you under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.logging.log4j.message; /** * This is a dummy class and is only here to allow module-info.java to compile. It will not * be copied into the log4j-api module. */ public class ThreadDumpMessage { public static interface ThreadInfoFactory {} }
apache/maven-plugins
1,046
maven-compiler-plugin/src/it/includes-excludes/src/main/java/org/apache/maven/it0055/PersonTwo.java
package org.apache.maven.it0055; /* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ public class PersonTwo { private String name; public void setName( String name ) { this.name = name; } public String getName() { return name; } }
apache/maven-plugins
1,058
maven-compiler-plugin/src/it/automodules-application/src/main/java/org/maven/test/Main.java
package org.maven.test; /* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ import org.codehaus.plexus.util.StringUtils; public class Main { /** * @param args */ public static void main(String[] args) { System.out.println( StringUtils.concatenate( args ) ); } }
apache/maven-resolver
1,051
maven-resolver-spi/src/main/java/org/eclipse/aether/spi/connector/transport/http/HttpTransporter.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.eclipse.aether.spi.connector.transport.http; import org.eclipse.aether.spi.connector.transport.Transporter; /** * A transporter using HTTP protocol. * * @since 2.0.0 */ public interface HttpTransporter extends Transporter {}
apache/maven-scm
1,037
maven-scm-providers/maven-scm-provider-local/src/main/java/org/apache/maven/scm/provider/local/command/LocalCommand.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.maven.scm.provider.local.command; import org.apache.maven.scm.command.Command; /** * @author <a href="mailto:trygvis@inamo.no">Trygve Laugst&oslash;l</a> */ public interface LocalCommand extends Command {}
apache/myfaces
1,073
impl/src/main/java/org/apache/myfaces/config/element/FacesFlowMethodParameter.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.myfaces.config.element; import java.io.Serializable; /** * * @author lu4242 */ public abstract class FacesFlowMethodParameter implements Serializable { public abstract String getClassName(); public abstract String getValue(); }
apache/olingo-odata4
1,069
lib/client-api/src/main/java/org/apache/olingo/client/api/domain/ClientDelta.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.olingo.client.api.domain; import java.util.List; public interface ClientDelta extends ClientEntitySet { List<ClientDeletedEntity> getDeletedEntities(); List<ClientDeltaLink> getAddedLinks(); List<ClientDeltaLink> getDeletedLinks(); }
apache/oozie
1,082
core/src/main/java/org/apache/oozie/action/control/ForkActionExecutor.java
/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.oozie.action.control; /** * Action executor for FORK control node. */ public class ForkActionExecutor extends ControlNodeActionExecutor { public static final String TYPE = ":FORK:"; public ForkActionExecutor() { super(TYPE); } }
apache/oozie
1,082
core/src/main/java/org/apache/oozie/action/control/JoinActionExecutor.java
/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.oozie.action.control; /** * Action executor for JOIN control node. */ public class JoinActionExecutor extends ControlNodeActionExecutor { public static final String TYPE = ":JOIN:"; public JoinActionExecutor() { super(TYPE); } }
apache/oozie
1,082
core/src/main/java/org/apache/oozie/action/control/KillActionExecutor.java
/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.oozie.action.control; /** * Action executor for KILL control node. */ public class KillActionExecutor extends ControlNodeActionExecutor { public static final String TYPE = ":KILL:"; public KillActionExecutor() { super(TYPE); } }
apache/openjpa
1,046
openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/jdbc/common/apps/PlaceholderTypesA.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.openjpa.persistence.jdbc.common.apps; public class PlaceholderTypesA { private int intA; public int getIntA() { return intA; } public void setIntA(int intA) { this.intA = intA; } }
apache/openjpa
1,061
openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/criteria/Transaction_.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ /** * Generated by OpenJPA MetaModel Generator Tool. **/ package org.apache.openjpa.persistence.criteria; @jakarta.persistence.metamodel.StaticMetamodel (value=org.apache.openjpa.persistence.criteria.Transaction.class) public class Transaction_ { }
apache/openwebbeans
1,059
webbeans-impl/src/test/java/org/apache/webbeans/test/decorators/common/GarphlyDecorator.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.webbeans.test.decorators.common; import jakarta.decorator.Decorator; import jakarta.decorator.Delegate; import jakarta.inject.Inject; @Decorator public class GarphlyDecorator<T extends Animal> { private @Inject @Delegate Garphly<T> delegate; }
apache/paimon-webui
1,065
paimon-web-server/src/main/java/org/apache/paimon/web/server/service/UserTenantService.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.paimon.web.server.service; import org.apache.paimon.web.server.data.model.UserTenant; import com.baomidou.mybatisplus.extension.service.IService; /** Tenant Service. */ public interface UserTenantService extends IService<UserTenant> {}
apache/parquet-java
1,078
parquet-avro/src/main/java/org/apache/parquet/avro/ReflectDataSupplier.java
/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * <p> * http://www.apache.org/licenses/LICENSE-2.0 * <p> * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.parquet.avro; import org.apache.avro.generic.GenericData; import org.apache.avro.reflect.ReflectData; public class ReflectDataSupplier implements AvroDataSupplier { @Override public GenericData get() { return ReflectData.get(); } }
apache/poi
1,104
poi/src/main/java/org/apache/poi/hpsf/IndirectPropertyName.java
/* ==================================================================== Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==================================================================== */ package org.apache.poi.hpsf; import org.apache.poi.util.Internal; @Internal public class IndirectPropertyName extends CodePageString { IndirectPropertyName() {} }
apache/poi
1,104
poi/src/main/java/org/apache/poi/poifs/property/package-info.java
/* ==================================================================== Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==================================================================== */ /** * property package contains high and low level Property structures for POIFS. * * @see org.apache.poi.poifs.filesystem */ package org.apache.poi.poifs.property;
apache/poi
1,106
poi/src/main/java/org/apache/poi/poifs/storage/package-info.java
/* ==================================================================== Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==================================================================== */ /** * storage package contains low level binary structures for POIFS's implementation of the OLE 2 * Compound Document Format. */ package org.apache.poi.poifs.storage;
apache/polygene-java
1,032
libraries/sql-generator/src/main/java/org/apache/polygene/library/sql/generator/grammar/builders/modification/package-info.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * */ /** * Package to hold builders common for SQL modification clauses ({@code INSERT}, {@code UPDATE}, and {@code DELETE}). */ package org.apache.polygene.library.sql.generator.grammar.builders.modification;
apache/polygene-java
1,064
tutorials/cargo/src/main/java/org/apache/polygene/tutorials/cargo/step2/HasSequence.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * */ package org.apache.polygene.tutorials.cargo.step2; import org.apache.polygene.api.common.UseDefaults; import org.apache.polygene.api.property.Property; public interface HasSequence { @UseDefaults Property<Integer> sequence(); }
apache/polygene-java
1,070
libraries/rest/src/test/java/org/apache/polygene/library/rest/admin/Named.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * */ package org.apache.polygene.library.rest.admin; import org.apache.polygene.api.common.UseDefaults; import org.apache.polygene.api.property.Property; /** * JAVADOC */ public interface Named { @UseDefaults Property<String> name(); }
apache/pulsar
1,052
pulsar-functions/instance/src/main/java/org/apache/pulsar/functions/instance/state/StateStoreContextImpl.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.pulsar.functions.instance.state; import org.apache.pulsar.functions.api.StateStoreContext; /** * Default implementation of {@link StateStoreContext}. */ public class StateStoreContextImpl implements StateStoreContext { }
apache/rocketmq-eventbridge
1,034
domain/src/main/java/org/apache/rocketmq/eventbridge/domain/model/connection/parameter/QueryStringParameter.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.rocketmq.eventbridge.domain.model.connection.parameter; import lombok.Getter; import lombok.Setter; import lombok.ToString; @Getter @Setter @ToString public class QueryStringParameter extends BaseParameter { }
apache/shardingsphere
1,047
infra/common/src/main/java/org/apache/shardingsphere/infra/config/rule/scope/DatabaseRuleConfiguration.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.shardingsphere.infra.config.rule.scope; import org.apache.shardingsphere.infra.config.rule.RuleConfiguration; /** * Database rule configuration. */ public interface DatabaseRuleConfiguration extends RuleConfiguration { }
apache/shenyu
1,084
shenyu-spi/src/test/java/org/apache/shenyu/spi/fixture/JdbcSPI.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.shenyu.spi.fixture; import org.apache.shenyu.spi.SPI; /** * The interface Jdbc spi. */ @SPI public interface JdbcSPI { /** * Gets class name. * * @return the class name */ @SuppressWarnings("unused") String getClassName(); }
apache/skywalking-java
1,026
apm-sniffer/apm-sdk-plugin/rocketMQ-4.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/rocketMQ/v4/define/Constants.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ package org.apache.skywalking.apm.plugin.rocketMQ.v4.define; public class Constants { public static final String WITNESS_ROCKETMQ_4X_CLASS = "org.apache.rocketmq.common.protocol.header.SendMessageRequestHeader"; }
apache/skywalking
1,027
oap-server/server-query-plugin/logql-plugin/src/main/java/org/apache/skywalking/oap/query/logql/entity/response/QueryResponse.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ package org.apache.skywalking.oap.query.logql.entity.response; import lombok.Data; import org.apache.skywalking.oap.query.logql.entity.ResultStatus; @Data public class QueryResponse { private ResultStatus status; }