repo_id
stringclasses
875 values
size
int64
974
38.9k
file_path
stringlengths
10
308
content
stringlengths
974
38.9k
apache/druid
1,138
processing/src/test/java/org/apache/druid/segment/TestDoubleColumnSelector.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.druid.segment; import org.apache.druid.query.monomorphicprocessing.RuntimeShapeInspector; public abstract class TestDoubleColumnSelector implements DoubleColumnSelector { @Override public void inspectRuntimeShape(RuntimeShapeInspector inspector) { // Don't care about runtime shape in tests } }
apache/dubbo
1,124
dubbo-common/src/test/java/org/apache/dubbo/common/extension/adaptive/impl/HasAdaptiveExtImpl1.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.common.extension.adaptive.impl; import org.apache.dubbo.common.URL; import org.apache.dubbo.common.extension.adaptive.HasAdaptiveExt; public class HasAdaptiveExtImpl1 implements HasAdaptiveExt { public String echo(URL url, String s) { return this.getClass().getSimpleName(); } }
apache/empire-db
1,143
empire-db/src/main/java/org/apache/empire/db/DBMaterializedView.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.empire.db; /** * DBMaterializedView * This interface should be used in conjunction with a DBView to indicate * that the view is materialized * @author doebele */ public interface DBMaterializedView { DBDatabase getDatabase(); String getFullName(); void refreshView(DBContext context); }
apache/falcon
1,138
common/src/main/java/org/apache/falcon/entity/EntityNotRegisteredException.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.falcon.entity; import org.apache.falcon.FalconException; /** * Exception thrown by falcon when entity is not registered already in config store. */ public class EntityNotRegisteredException extends FalconException { public EntityNotRegisteredException(String message) { super(message); } }
apache/fineract
1,102
fineract-provider/src/main/java/org/apache/fineract/infrastructure/campaigns/sms/data/dto/SmsCampaignPreviewDto.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.infrastructure.campaigns.sms.data.dto; import java.io.Serial; import java.io.Serializable; public record SmsCampaignPreviewDto(SmsCampaignParamReq paramValue, String message) implements Serializable { @Serial private static final long serialVersionUID = 1L; }
apache/fineract
1,109
fineract-core/src/main/java/org/apache/fineract/infrastructure/core/serialization/CommandSerializer.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.infrastructure.core.serialization; /** * Service for serializing commands into another format. * * <p> * Known implementations: * </p> * * @see CommandSerializerDefaultToJson */ public interface CommandSerializer { String serializeCommandToJson(Object command); }
apache/flex-blazeds
1,148
common/src/main/java/flex/messaging/config/ConfigurationParser.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 flex.messaging.config; /** * Configuration parser for Flex Data Services. The parser reads in * a configuration file and populates a ServicesConfiguration instance. */ public interface ConfigurationParser { void parse(String path, ConfigurationFileResolver fileResolver, ServicesConfiguration config); void reportTokens(); }
apache/flink-ml
1,132
flink-ml-lib/src/main/java/org/apache/flink/ml/feature/tokenizer/TokenizerParams.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.ml.feature.tokenizer; import org.apache.flink.ml.common.param.HasInputCol; import org.apache.flink.ml.common.param.HasOutputCol; /** * Params of {@link Tokenizer}. * * @param <T> The class type of this instance. */ public interface TokenizerParams<T> extends HasInputCol<T>, HasOutputCol<T> {}
apache/flink
1,122
flink-table/flink-table-api-java/src/main/java/org/apache/flink/table/api/internal/CachedPlan.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.api.internal; import org.apache.flink.annotation.Internal; import org.apache.flink.table.operations.Operation; /** SQL execution plan cache. */ @Internal public interface CachedPlan { /** Return the cached operation parsed from the statement. */ Operation getOperation(); }
apache/flink
1,133
flink-formats/flink-protobuf/src/main/java/com/google/protobuf/ProtobufInternalUtils.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 com.google.protobuf; /** This class is to access internal method in protobuf package. */ public class ProtobufInternalUtils { /** convert underscore name to camel name. */ public static String underScoreToCamelCase(String name, boolean capNext) { return SchemaUtil.toCamelCase(name, capNext); } }
apache/flink
1,140
flink-runtime/src/main/java/org/apache/flink/runtime/instance/InstanceID.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.instance; import org.apache.flink.util.AbstractID; /** Class for statistically unique instance IDs. */ public class InstanceID extends AbstractID { private static final long serialVersionUID = 1L; public InstanceID() {} public InstanceID(byte[] bytes) { super(bytes); } }
apache/fluss
1,139
fluss-common/src/test/java/org/apache/fluss/metrics/util/DummyCharacterFilter.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.fluss.metrics.util; import org.apache.fluss.metrics.CharacterFilter; /** A {@link CharacterFilter} that returns the given string without any modification. */ public class DummyCharacterFilter implements CharacterFilter { @Override public String filterCharacters(String input) { return input; } }
apache/freemarker
1,137
freemarker-core/src/main/java/freemarker/ext/beans/ClassChangeNotifier.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 freemarker.ext.beans; /** * Reports when the non-private interface of a class was changed to the subscribers. */ interface ClassChangeNotifier { /** * @param classIntrospector Should only be weak-referenced from the monitor object. */ void subscribe(ClassIntrospector classIntrospector); }
apache/geaflow
1,094
geaflow/geaflow-plugins/geaflow-file/geaflow-file-common/src/main/java/org/apache/geaflow/file/PersistentType.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.file; public enum PersistentType { /** * oss file schema. */ OSS, /** * hdfs or pangu file schema. */ DFS, /** * s3 file schema. */ S3, /** * local file schema, for testing. */ LOCAL }
apache/geode
1,124
geode-junit/src/main/java/org/apache/geode/test/junit/rules/serializable/SerializableTestWatcher.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 org.junit.rules.TestWatcher; /** * Serializable subclass of {@link org.junit.rules.TestWatcher TestWatcher}. There are no instance * variables to be serialized. */ public abstract class SerializableTestWatcher extends TestWatcher implements SerializableTestRule { }
apache/geode
1,130
geode-core/src/main/java/org/apache/geode/management/internal/ManagerLifecycle.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.management.internal; /** * Lifecycle operations for Geode JMX managers. */ public interface ManagerLifecycle { /** * Start the manager. */ void startManager(); /** * Stop the manager. */ void stopManager(); /** * Returns true if the manager is running. */ boolean isRunning(); }
apache/geode
1,133
geode-lucene/src/main/java/org/apache/geode/cache/lucene/internal/LuceneRawIndexFactory.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.cache.lucene.internal; import org.apache.geode.internal.cache.InternalCache; public class LuceneRawIndexFactory extends LuceneIndexImplFactory { @Override public LuceneIndexImpl create(String indexName, String regionPath, InternalCache cache) { return new LuceneRawIndex(indexName, regionPath, cache); } }
apache/geode
1,139
geode-core/src/main/java/org/apache/geode/internal/cache/TXEntryStateFactory.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.internal.cache; public interface TXEntryStateFactory { /** * Creates an instance of TXEntryState. * * @return the created entry */ TXEntryState createEntry(); TXEntryState createEntry(RegionEntry re, Object vId, Object pendingValue, Object entryKey, TXRegionState txrs, boolean isDistributed); }
apache/giraph
1,136
giraph-core/src/main/java/org/apache/giraph/types/ByteToByteWritableWrapper.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.types; import org.apache.hadoop.io.ByteWritable; /** * Converts Bytes to ByteWritables */ public class ByteToByteWritableWrapper implements WritableWrapper<ByteWritable, Byte> { @Override public void wrap(Byte javaValue, ByteWritable writableValue) { writableValue.set(javaValue); } }
apache/gobblin
1,108
gobblin-modules/gobblin-avro-json/src/main/java/org/apache/gobblin/converter/avro/AvroToJsonStringConverter.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.gobblin.converter.avro; import java.nio.charset.StandardCharsets; public class AvroToJsonStringConverter extends AvroToJsonStringConverterBase<String> { @Override protected String processUtf8Bytes(byte[] utf8Bytes) { return new String(utf8Bytes, StandardCharsets.UTF_8); } }
apache/gobblin
1,110
gobblin-config-management/gobblin-config-core/src/main/java/org/apache/gobblin/config/store/api/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. */ /** * This package contains the config stores API for gobblin configuration management. * * Configuration stores provide a low-level API for reading {@link com.typesafe.config.Config} objects. These * are generally accessed through the config client API. */ package org.apache.gobblin.config.store.api;
apache/gobblin
1,120
gobblin-runtime/src/main/java/org/apache/gobblin/runtime/listeners/AbstractCloseableJobListener.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.gobblin.runtime.listeners; /** * Extension of {@link AbstractJobListener} that also extends {@link CloseableJobListener}. * * @see AbstractJobListener * @author Joel Baranick */ public abstract class AbstractCloseableJobListener extends AbstractJobListener implements CloseableJobListener { }
apache/gravitino
1,145
core/src/main/java/org/apache/gravitino/listener/api/event/Event.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.gravitino.listener.api.event; import org.apache.gravitino.NameIdentifier; import org.apache.gravitino.annotation.DeveloperApi; /** Represents a post event. */ @DeveloperApi public abstract class Event extends BaseEvent { protected Event(String user, NameIdentifier identifier) { super(user, identifier); } }
apache/hadoop-common
1,107
hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/cli/util/SubstringComparator.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.cli.util; public class SubstringComparator extends ComparatorBase { @Override public boolean compare(String actual, String expected) { int compareOutput = actual.indexOf(expected); if (compareOutput == -1) { return false; } return true; } }
apache/hadoop
1,106
hadoop-hdfs-project/hadoop-hdfs-rbf/src/main/java/org/apache/hadoop/hdfs/server/federation/utils/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. */ /** * Assorted utility classes and helpers for HDFS Federation. */ @InterfaceAudience.Private @InterfaceStability.Evolving package org.apache.hadoop.hdfs.server.federation.utils; import org.apache.hadoop.classification.InterfaceAudience; import org.apache.hadoop.classification.InterfaceStability;
apache/hama
1,154
graph/src/main/java/org/apache/hama/graph/AverageAggregator.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.hama.graph; import org.apache.hadoop.io.DoubleWritable; /** * Averages the result of the {@link AbsDiffAggregator}. */ public class AverageAggregator extends AbsDiffAggregator { @Override public DoubleWritable finalizeAggregation() { return new DoubleWritable(getValue().get() / getTimesAggregated().get()); } }
apache/harmony
1,126
classlib/modules/logging/src/test/java-internal/java/util/logging/LoggerExtension.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 java.util.logging; import java.util.ResourceBundle; /** * Example of a type injected into logging to access package private members. */ public class LoggerExtension { public static ResourceBundle loadResourceBundle(String resourceBundleName) { return Logger.loadResourceBundle(resourceBundleName); } }
apache/helix
1,125
helix-core/src/main/java/org/apache/helix/monitoring/mbeans/ThreadPoolExecutorMonitorMBean.java
package org.apache.helix.monitoring.mbeans; /* * 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.helix.monitoring.SensorNameProvider; public interface ThreadPoolExecutorMonitorMBean extends SensorNameProvider { int getThreadPoolCoreSizeGauge(); int getThreadPoolMaxSizeGauge(); int getNumOfActiveThreadsGauge(); int getQueueSizeGauge(); }
apache/hive
1,137
llap-server/src/java/org/apache/hadoop/hive/llap/daemon/impl/LlapConstants.java
/* * 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 org.apache.hadoop.hive.llap.daemon.impl; import org.apache.hadoop.hive.common.classification.InterfaceAudience; @InterfaceAudience.Private public class LlapConstants { public static final String LOG4j2_PROPERTIES_FILE = "llap-daemon-log4j2.properties"; public static final String LLAP_LOG4J2_PROPERTIES_FILE_NAME_ENV = "LLAP_LOG4J2_PROPERTIES_FILE_NAME"; public static final String LLAP_HADOOP_METRICS2_PROPERTIES_FILE = "hadoop-metrics2-llapdaemon.properties"; public static final String HADOOP_METRICS2_PROPERTIES_FILE = "hadoop-metrics2.properties"; }
apache/hive
1,156
service/src/java/org/apache/hive/service/cli/RowSet.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.hive.service.cli; import org.apache.hive.service.rpc.thrift.TRowSet; public interface RowSet extends Iterable<Object[]> { RowSet addRow(Object[] fields); RowSet extractSubset(int maxRows); int numColumns(); int numRows(); long getStartOffset(); void setStartOffset(long startOffset); TRowSet toTRowSet(); }
apache/hop
1,136
engine/src/main/java/org/apache/hop/pipeline/transform/TransformMetaDataCombi.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.pipeline.transform; public class TransformMetaDataCombi { public TransformMeta transformMeta; public String transformName; public int copy; public ITransform transform; public ITransformMeta meta; public ITransformData data; public String toString() { return transform.toString(); } }
apache/hudi
1,141
hudi-hadoop-mr/src/main/java/org/apache/hudi/hadoop/HoodieHiveRecordMerger.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.hadoop; import org.apache.hudi.common.model.HoodieRecord; import org.apache.hudi.common.model.HoodieRecordMerger; abstract class HoodieHiveRecordMerger implements HoodieRecordMerger { @Override public HoodieRecord.HoodieRecordType getRecordType() { return HoodieRecord.HoodieRecordType.HIVE; } }
apache/iceberg
1,140
core/src/main/java/org/apache/iceberg/puffin/StandardPuffinProperties.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.iceberg.puffin; public final class StandardPuffinProperties { private StandardPuffinProperties() {} /** * human-readable identification of the application writing the file, along with its version. * Example "Trino version 381". */ public static final String CREATED_BY_PROPERTY = "created-by"; }
apache/ignite-3
1,102
modules/network/src/main/java/org/apache/ignite/internal/network/serialization/marshal/UncheckedMarshalException.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.network.serialization.marshal; /** * An unchecked variation of {@link MarshalException}. */ class UncheckedMarshalException extends RuntimeException { public UncheckedMarshalException(String message, Throwable cause) { super(message, cause); } }
apache/ignite-extensions
1,111
modules/ml-ext/ml/src/main/java/org/apache/ignite/ml/selection/paramgrid/BruteForceStrategy.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.ml.selection.paramgrid; /** * This strategy enables the brute-force search in hyper-parameter space. */ public class BruteForceStrategy extends HyperParameterTuningStrategy { /** {@inheritDoc} */ @Override public String getName() { return "Brute Force"; } }
apache/ignite
1,117
modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgniteGetAllOffHeapBenchmark.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.yardstick.cache; import org.apache.ignite.IgniteCache; /** * */ public class IgniteGetAllOffHeapBenchmark extends IgniteGetAllBenchmark { /** {@inheritDoc} */ @Override protected IgniteCache<Integer, Object> cache() { return ignite().cache("atomic-offheap"); } }
apache/ignite
1,117
modules/yardstick/src/main/java/org/apache/ignite/yardstick/cache/IgnitePutAllOffHeapBenchmark.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.yardstick.cache; import org.apache.ignite.IgniteCache; /** * */ public class IgnitePutAllOffHeapBenchmark extends IgnitePutAllBenchmark { /** {@inheritDoc} */ @Override protected IgniteCache<Integer, Object> cache() { return ignite().cache("atomic-offheap"); } }
apache/ignite
1,123
modules/core/src/main/java/org/apache/ignite/internal/client/thin/io/ClientMessageHandler.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.client.thin.io; import java.nio.ByteBuffer; /** * Handles thin client responses and server -> client notifications. */ public interface ClientMessageHandler { /** * Handles messages from the server. * @param buf Buffer. */ void onMessage(ByteBuffer buf); }
apache/ignite
1,135
modules/core/src/main/java/org/apache/ignite/spi/checkpoint/CheckpointListener.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.spi.checkpoint; /** * Listener for notifications of checkpoints removed by {@link CheckpointSpi}. */ public interface CheckpointListener { /** * Notification for removed checkpoint. * * @param key Key of removed checkpoint. */ public void onCheckpointRemoved(String key); }
apache/incubator-hivemall
1,139
core/src/test/java/hivemall/utils/hadoop/HadoopUtilsTest.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 hivemall.utils.hadoop; import org.junit.Test; import org.junit.Assert; public class HadoopUtilsTest { @Test public void testGetJobIdFromTaskId() { String actual = HadoopUtils.getJobIdFromTaskId("task1407733647643_0188_m_000000_0"); Assert.assertEquals("job_1407733647643_0188", actual); } }
apache/incubator-kie-drools
1,044
efesto/efesto-core/efesto-compilation-manager/efesto-compilation-manager-api/src/main/java/org/kie/efesto/compilationmanager/api/model/EfestoCompilationOutput.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.kie.efesto.compilationmanager.api.model; /** * This is the output of an engine-compilation. It could be a processed object (i.e. a final step) or an intermediate resource */ public interface EfestoCompilationOutput { }
apache/incubator-kie-drools
1,085
drools-test-coverage/test-compiler-integration/src/test/java/org/drools/mvel/integrationtests/facts/FactWithEnum.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.mvel.integrationtests.facts; public class FactWithEnum { private final AnEnum enumValue; public FactWithEnum(final AnEnum enumValue) { this.enumValue = enumValue; } public AnEnum getEnumValue() { return enumValue; } }
apache/incubator-kie-drools
1,092
drools-persistence/drools-persistence-api/src/main/java/org/drools/persistence/api/PersistentWorkItem.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.persistence.api; /** * Basic interface so that persisteces can avoid depending on * the JPA implementation of a work item. */ public interface PersistentWorkItem extends Transformable { Long getId(); void setId(Long id); String getProcessInstanceId(); }
apache/incubator-kie-drools
1,136
kie-api/src/main/java/org/kie/api/runtime/rule/AgendaFilter.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.kie.api.runtime.rule; public interface AgendaFilter { /** * Determine if a given match should be fired. * * @param match * The match that is requested to be fired * @return * boolean value of "true" accepts the match for firing. */ boolean accept(Match match); }
apache/incubator-kie-drools
1,139
kie-api/src/main/java/org/kie/api/definition/type/Timestamp.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.kie.api.definition.type; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Retention(value = RetentionPolicy.RUNTIME) @Target(value = ElementType.TYPE) public @interface Timestamp { String value(); }
apache/incubator-kie-kogito-runtimes
1,096
drools/kogito-pmml/src/main/java/org/kie/kogito/pmml/config/DefaultPredictionEventListenerConfig.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.kie.kogito.pmml.config; import org.kie.kogito.prediction.PredictionEventListenerConfig; public class DefaultPredictionEventListenerConfig implements PredictionEventListenerConfig { public DefaultPredictionEventListenerConfig() { // Not implemented, yet } }
apache/incubator-kie-kogito-runtimes
1,109
drools/kogito-dmn/src/main/java/org/kie/kogito/decision/DecisionModelResource.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.kie.kogito.decision; import java.util.function.Supplier; import org.kie.kogito.KogitoGAV; public interface DecisionModelResource extends Supplier<String> { KogitoGAV getGav(); String getNamespace(); String getModelName(); DecisionModelMetadata getModelMetadata(); }
apache/incubator-kie-optaplanner-quickstarts
1,068
use-cases/vaccination-scheduling/src/main/java/org/acme/vaccinationscheduler/domain/VaccinationCenter.java
package org.acme.vaccinationscheduler.domain; import com.fasterxml.jackson.annotation.JsonIdentityInfo; import com.fasterxml.jackson.annotation.ObjectIdGenerators; @JsonIdentityInfo(generator = ObjectIdGenerators.PropertyGenerator.class, property = "id") public class VaccinationCenter { private String id; private String name; private Location location; // No-arg constructor required for Jackson public VaccinationCenter() {} public VaccinationCenter(String id, String name, Location location) { this.id = id; this.name = name; this.location = location; } @Override public String toString() { return name; } // ************************************************************************ // Getters and setters // ************************************************************************ public String getId() { return id; } public String getName() { return name; } public Location getLocation() { return location; } }
apache/incubator-kie-optaplanner
1,073
core/optaplanner-core-impl/src/main/java/org/optaplanner/core/impl/domain/variable/listener/support/BasicVariableNotification.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.domain.variable.listener.support; import org.optaplanner.core.api.domain.variable.VariableListener; public interface BasicVariableNotification<Solution_> extends Notification<Solution_, VariableListener<Solution_, Object>> { }
apache/incubator-kie-optaplanner
1,094
core/optaplanner-core-impl/src/test/java/org/optaplanner/core/impl/solver/random/RandomUtilsTest.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.solver.random; import java.util.Random; import org.junit.jupiter.api.Test; class RandomUtilsTest { @Test void testNextLong() { Random random = new Random(37); RandomUtils.nextLong(random, 10L + Integer.MAX_VALUE); } }
apache/incubator-myriad
1,114
myriad-scheduler/src/main/java/org/apache/myriad/scheduler/event/SlaveLostEventFactory.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.myriad.scheduler.event; import com.lmax.disruptor.EventFactory; /** * mesos slave lost event factory */ public class SlaveLostEventFactory implements EventFactory<SlaveLostEvent> { @Override public SlaveLostEvent newInstance() { return new SlaveLostEvent(); } }
apache/incubator-pegasus
1,140
java-client/src/main/java/org/apache/pegasus/rpc/KeyHasher.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.pegasus.rpc; import org.apache.pegasus.tools.Tools; /** Created by weijiesun on 16-11-11. */ public interface KeyHasher { KeyHasher DEFAULT = new KeyHasher() { @Override public long hash(byte[] key) { return Tools.dsn_crc64(key); } }; long hash(byte[] key); }
apache/incubator-retired-gearpump
1,110
core/src/main/java/org/apache/gearpump/transport/netty/ITransportMessageSerializer.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.gearpump.transport.netty; import java.io.DataInput; import java.io.DataOutput; public interface ITransportMessageSerializer { int getLength(Object obj); void serialize(DataOutput dataOutput, Object transportMessage); Object deserialize(DataInput dataInput, int length); }
apache/incubator-weex
1,140
android/sdk/src/main/java/org/apache/weex/el/parse/Symbol.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.weex.el.parse; /** * Created by furture on 2017/8/29. */ public class Symbol { public final String op; public final int pos; public Symbol(String op, int pos) { this.op = op; this.pos = pos; } /** @Override public String toString() { return op; }*/ }
apache/inlong
1,106
inlong-tubemq/tubemq-manager/src/main/java/org/apache/inlong/tubemq/manager/service/tube/CleanOffsetResult.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.tubemq.manager.service.tube; import com.google.common.collect.Lists; import lombok.Data; import java.util.List; @Data public class CleanOffsetResult { private List<String> failBrokers = Lists.newArrayList(); private List<String> successBrokers = Lists.newArrayList(); }
apache/inlong
1,117
inlong-audit/audit-service/src/main/java/org/apache/inlong/audit/service/auditor/RequestInfo.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.audit.service.auditor; import lombok.Data; @Data public class RequestInfo { String startTime; String endTime; String inlongGroupId; String inlongStreamId; String srcAuditId; String srcAuditTag; String destAuditId; String destAuditTag; double diffRatio; }
apache/inlong
1,130
inlong-common/src/main/java/org/apache/inlong/common/heartbeat/GroupHeartbeat.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.common.heartbeat; import lombok.AllArgsConstructor; import lombok.Builder; import lombok.Data; import lombok.NoArgsConstructor; @Data @Builder @AllArgsConstructor @NoArgsConstructor public class GroupHeartbeat { private String inlongGroupId; private String status; private String metric; }
apache/jackrabbit-oak
1,115
oak-segment-tar/src/main/java/org/apache/jackrabbit/oak/segment/file/tar/TarConstants.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.oak.segment.file.tar; public class TarConstants { private TarConstants() { // Prevent instantiation. } static final String FILE_NAME_FORMAT = "data%05d%s.tar"; /** * The tar file block size. */ public static final int BLOCK_SIZE = 512; }
apache/jackrabbit-oak
1,135
oak-run/src/main/java/org/apache/jackrabbit/oak/run/IndexMergeCommand.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.oak.run; import org.apache.jackrabbit.oak.index.merge.IndexMerge; import org.apache.jackrabbit.oak.run.commons.Command; public class IndexMergeCommand implements Command { @Override public void execute(String... args) throws Exception { new IndexMerge().execute(args); } }
apache/jackrabbit
1,105
jackrabbit-jcr-server/src/main/java/org/apache/jackrabbit/server/remoting/davex/ProtectedItemRemoveHandler.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.server.remoting.davex; import javax.jcr.RepositoryException; import javax.jcr.Session; /** * ProtectedItemRemoveHandler... TODO */ public interface ProtectedItemRemoveHandler { public boolean remove(Session session, String itemPath) throws RepositoryException; }
apache/jackrabbit
1,127
jackrabbit-webdav/src/main/java/org/apache/jackrabbit/webdav/observation/EventBundle.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.observation; import org.apache.jackrabbit.webdav.xml.XmlSerializable; /** * <code>EventBundle</code> defines an empty interface used to represent a bundle * of events. * * @see EventDiscovery#addEventBundle(EventBundle) */ public interface EventBundle extends XmlSerializable { }
apache/james-project
1,118
protocols/managesieve/src/main/java/org/apache/james/managesieve/api/commands/StartTLS.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.james.managesieve.api.commands; import org.apache.james.managesieve.api.Session; /** * @see <a href=http://tools.ietf.org/html/rfc5804#section-2.2>RFC 5804 STARTTLS Command</a> */ public interface StartTLS { String startTLS(Session session); }
apache/jclouds
1,141
core/src/main/java/org/jclouds/location/suppliers/ImplicitRegionIdSupplier.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.jclouds.location.suppliers; import org.jclouds.location.suppliers.implicit.GetRegionIdMatchingProviderURIOrNull; import com.google.common.base.Supplier; import com.google.inject.ImplementedBy; @ImplementedBy(GetRegionIdMatchingProviderURIOrNull.class) public interface ImplicitRegionIdSupplier extends Supplier<String> { }
apache/jena
1,081
jena-extras/jena-serviceenhancer/src/test/java/org/apache/jena/sparql/service/enhancer/impl/TestServiceEnhancerResultSetLimitsWithCache.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.service.enhancer.impl; public class TestServiceEnhancerResultSetLimitsWithCache extends AbstractTestServiceEnhancerResultSetLimits { public TestServiceEnhancerResultSetLimitsWithCache() { super("bulk+10:loop:cache:"); } }
apache/jena
1,130
jena-permissions/src/main/java/org/apache/jena/permissions/model/SecuredStatementTerm.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.permissions.model; import org.apache.jena.rdf.model.*; /** * The interface for secured StatementTerm instances. * * Use a secured Model to create instances. * @deprecated To be removed. */ @Deprecated(forRemoval = true) public interface SecuredStatementTerm extends StatementTerm, SecuredRDFNode { }
apache/jmeter
1,114
src/protocol/jdbc/src/main/java/org/apache/jmeter/protocol/jdbc/processor/JDBCPreProcessorBeanInfo.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.jmeter.protocol.jdbc.processor; import org.apache.jmeter.protocol.jdbc.JDBCTestElementBeanInfoSupport; public class JDBCPreProcessorBeanInfo extends JDBCTestElementBeanInfoSupport { /** * */ public JDBCPreProcessorBeanInfo() { super(JDBCPreProcessor.class); } }
apache/kafka
1,128
streams/src/main/java/org/apache/kafka/streams/processor/internals/ProcessorNodePunctuator.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.streams.processor.internals; import org.apache.kafka.streams.processor.PunctuationType; import org.apache.kafka.streams.processor.Punctuator; public interface ProcessorNodePunctuator { void punctuate(ProcessorNode<?, ?, ?, ?> node, long timestamp, PunctuationType type, Punctuator punctuator); }
apache/kafka
1,136
storage/src/test/java/org/apache/kafka/tiered/storage/specs/FetchableSpec.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.tiered.storage.specs; public record FetchableSpec(int sourceBrokerId, RemoteFetchCount fetchCount) { @Override public String toString() { return "FetchableSpec{" + "sourceBrokerId=" + sourceBrokerId + ", fetchCount=" + fetchCount + '}'; } }
apache/kafka
1,140
clients/src/main/java/org/apache/kafka/common/errors/TopicExistsException.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.common.errors; public class TopicExistsException extends ApiException { private static final long serialVersionUID = 1L; public TopicExistsException(String message) { super(message); } public TopicExistsException(String message, Throwable cause) { super(message, cause); } }
apache/kafka
1,145
tools/tools-api/src/main/java/org/apache/kafka/tools/api/StringDecoder.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.charset.StandardCharsets; /** * The string decoder translates bytes into strings. It uses UTF8 by default. */ public class StringDecoder implements Decoder<String> { @Override public String fromBytes(byte[] bytes) { return new String(bytes, StandardCharsets.UTF_8); } }
apache/kafka
1,148
clients/src/main/java/org/apache/kafka/common/utils/Java.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.common.utils; public final class Java { private Java() { } public static boolean isIbmJdk() { return System.getProperty("java.vendor").contains("IBM"); } public static boolean isIbmJdkSemeru() { return isIbmJdk() && System.getProperty("java.runtime.name", "").contains("Semeru"); } }
apache/kylin
1,112
src/core-metadata/src/main/java/org/apache/kylin/cube/model/validation/SourceTableMetadataValidator.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.kylin.cube.model.validation; import org.apache.kylin.metadata.model.TableDesc; /** * Validate Table metadata from source. * <p/> */ public class SourceTableMetadataValidator { public static boolean validate(TableDesc table) { // table.get return true; } }
apache/kylin
1,118
src/data-loading-service/src/main/java/org/apache/kylin/rest/request/CubeRebuildRequest.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.kylin.rest.request; import lombok.Getter; import lombok.Setter; @Getter @Setter public class CubeRebuildRequest { private String mpValues; private long startTime; private long endTime; private String buildType; private boolean force; private String project; }
apache/kyuubi
1,110
kyuubi-hive-beeline/src/main/java/org/apache/hive/beeline/hs2connection/BeelineConfFileParseException.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.hive.beeline.hs2connection; @SuppressWarnings("serial") public class BeelineConfFileParseException extends Exception { BeelineConfFileParseException(String msg, Exception e) { super(msg, e); } public BeelineConfFileParseException(String msg) { super(msg); } }
apache/linkis
1,099
linkis-engineconn-plugins/spark/src/main/java/org/apache/linkis/engineplugin/spark/client/context/ExecutionContext.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.context; public class ExecutionContext { private SparkConfig sparkConfig; public SparkConfig getSparkConfig() { return sparkConfig; } public void setSparkConfig(SparkConfig sparkConfig) { this.sparkConfig = sparkConfig; } }
apache/maven-plugins
1,092
maven-compiler-plugin/src/it/MCOMPILER-203-processorpath/annotation-user/src/main/java/org/issue/SimpleAnnotation.java
package org.issue; /* * 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 java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Target(ElementType.TYPE) @Retention(RetentionPolicy.SOURCE) public @interface SimpleAnnotation { }
apache/maven-plugins
1,101
maven-assembly-plugin/src/main/java/org/apache/maven/plugins/assembly/filter/ContainerDescriptorHandler.java
package org.apache.maven.plugins.assembly.filter; /* * 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.archiver.ArchiveFinalizer; import org.codehaus.plexus.components.io.fileselectors.FileSelector; /** * @version $Id$ */ public interface ContainerDescriptorHandler extends ArchiveFinalizer, FileSelector { }
apache/maven-surefire
1,061
surefire-its/src/test/resources/surefire-1136-cwd-propagation-in-forked-mode/src/test/java/cwd/CurrentWorkingDirectoryInForkedModeTest.java
package cwd; import org.junit.Test; import java.io.File; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; public class CurrentWorkingDirectoryInForkedModeTest { @Test public void testCurrentWorkingDirectoryPropagation() throws Exception { File projectDirectory = new File( System.getProperty( "maven.project.base.directory" ) ); File forkDirectory = new File( projectDirectory, "cwd_1" ); forkDirectory.deleteOnExit(); // user.dir and current working directory must be aligned, base directory is not affected assertEquals( projectDirectory.getCanonicalPath(), System.getProperty( "basedir" ) ); assertEquals( forkDirectory.getCanonicalPath(), System.getProperty( "user.dir" ) ); assertEquals( forkDirectory.getCanonicalPath(), new File( "." ).getCanonicalPath() ); // original working directory (before variable expansion) should not be created assertFalse( new File( "cwd_${surefire.forkNumber}" ).exists() ); } }
apache/mina-sshd
1,129
sshd-core/src/main/java/org/apache/sshd/server/x11/X11ForwardingExceptionMarker.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.sshd.server.x11; /** * Special marker interface used to signal to the forwarding filter that an exception has been caught on the forwarded * channel * * @author <a href="mailto:dev@mina.apache.org">Apache MINA SSHD Project</a> */ public interface X11ForwardingExceptionMarker { // nothing extra }
apache/nifi
1,060
nifi-extension-bundles/nifi-extension-utils/nifi-record-utils/nifi-schema-inference-utils/src/main/java/org/apache/nifi/schema/inference/SchemaInferenceEngine.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.nifi.schema.inference; import org.apache.nifi.serialization.record.RecordSchema; import java.io.IOException; public interface SchemaInferenceEngine<T> { RecordSchema inferSchema(RecordSource<T> recordSource) throws IOException; }
apache/nifi
1,101
nifi-system-tests/nifi-system-test-suite/src/test/java/org/apache/nifi/tests/system/rpg/ClusteredRemoteProcessGroupIT.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.nifi.tests.system.rpg; import org.apache.nifi.tests.system.NiFiInstanceFactory; public class ClusteredRemoteProcessGroupIT extends RemoteProcessGroupIT { @Override public NiFiInstanceFactory getInstanceFactory() { return createTwoNodeInstanceFactory(); } }
apache/nifi
1,110
nifi-extension-bundles/nifi-poi-bundle/nifi-poi-services/src/main/java/org/apache/nifi/excel/ExcelUtils.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.nifi.excel; import org.apache.poi.ss.usermodel.Row; public class ExcelUtils { static final String FIELD_NAME_PREFIX = "column_"; private ExcelUtils() { } public static boolean hasCells(final Row row) { return row != null && row.getFirstCellNum() != -1; } }
apache/nifi
1,126
nifi-bootstrap/src/main/java/org/apache/nifi/bootstrap/command/UnknownBootstrapCommand.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.nifi.bootstrap.command; /** * Bootstrap Command to run for an unknown command requested */ class UnknownBootstrapCommand implements BootstrapCommand { @Override public CommandStatus getCommandStatus() { return CommandStatus.ERROR; } @Override public void run() { } }
apache/nifi
1,126
nifi-commons/nifi-flowfile-packager/src/main/java/org/apache/nifi/util/FlowFileUnpackager.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.nifi.util; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.util.Map; public interface FlowFileUnpackager { Map<String, String> unpackageFlowFile(InputStream in, OutputStream out) throws IOException; boolean hasMoreData() throws IOException; }
apache/olingo-odata4
1,122
lib/server-api/src/main/java/org/apache/olingo/server/api/uri/queryoption/IdOption.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.server.api.uri.queryoption; /** * Represents the system query option $id when using a entity-id to resolve the entity * For example: http://.../$entity?$id=Products(0) */ public interface IdOption extends SystemQueryOption { /** * @return Value of $id */ String getValue(); }
apache/openjpa
1,120
openjpa-persistence/src/main/java/org/apache/openjpa/persistence/query/KeyExpression.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.query; /** * Denotes KEY(e) Expression. * * @author Pinaki Poddar * */ public class KeyExpression extends OperatorPath { private static final long serialVersionUID = 1L; public KeyExpression(AbstractDomainObject expr) { super(expr, PathOperator.KEY); } }
apache/openjpa
1,135
openjpa-kernel/src/main/java/org/apache/openjpa/kernel/exps/Parameter.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.kernel.exps; /** * A query parameter. * * @author Abe White */ public interface Parameter extends Value, Constant { /** * Set the index of this parameter. */ void setIndex(int index); /** * Returns the key of the parameter. */ Object getParameterKey(); }
apache/openwebbeans
1,096
webbeans-impl/src/test/java/org/apache/webbeans/test/component/exception/stero/ComponentWithDifferentScopeSteros.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.component.exception.stero; import org.apache.webbeans.test.sterotype.StereoWithRequestScope; import org.apache.webbeans.test.sterotype.StereoWithSessionScope; @StereoWithRequestScope @StereoWithSessionScope public class ComponentWithDifferentScopeSteros { }
apache/ozhera
1,079
ozhera-prometheus-agent/ozhera-prometheus-agent-common/src/main/java/org/apache/ozhera/prometheus/agent/result/alertManager/Annotations.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.ozhera.prometheus.agent.result.alertManager; import com.fasterxml.jackson.annotation.JsonInclude; import lombok.Data; @Data @JsonInclude(JsonInclude.Include.NON_NULL) public class Annotations { private String summary; private String title; }
apache/paimon
1,141
paimon-common/src/main/java/org/apache/paimon/format/SupportsDirectWrite.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.format; import org.apache.paimon.fs.FileIO; import org.apache.paimon.fs.Path; import java.io.IOException; /** Create a FormatWriter which has full control abort file io. */ public interface SupportsDirectWrite { FormatWriter create(FileIO fileIO, Path path, String compression) throws IOException; }
apache/pekko
1,137
actor/src/main/java/org/apache/pekko/pattern/AbstractPromiseActorRef.java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * license agreements; and to You under the Apache License, version 2.0: * * https://www.apache.org/licenses/LICENSE-2.0 * * This file is part of the Apache Pekko project, which was derived from Akka. */ /* * Copyright (C) 2009-2022 Lightbend Inc. <https://www.lightbend.com> */ package org.apache.pekko.pattern; import java.lang.invoke.MethodHandles; import java.lang.invoke.VarHandle; final class AbstractPromiseActorRef { static final VarHandle stateHandle; static final VarHandle watchedByHandle; static { try { MethodHandles.Lookup lookup = MethodHandles.privateLookupIn(PromiseActorRef.class, MethodHandles.lookup()); stateHandle = lookup.findVarHandle(PromiseActorRef.class, "_stateDoNotCallMeDirectly", Object.class); watchedByHandle = lookup.findVarHandle( PromiseActorRef.class, "_watchedByDoNotCallMeDirectly", scala.collection.immutable.Set.class); } catch (Throwable t) { throw new ExceptionInInitializerError(t); } } }
apache/pinot
1,110
pinot-controller/src/main/java/org/apache/pinot/controller/api/resources/InvalidControllerConfigException.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.pinot.controller.api.resources; public class InvalidControllerConfigException extends Exception { public InvalidControllerConfigException(final String s) { super(s); } public InvalidControllerConfigException(final String s, final Exception ex) { super(s, ex); } }
apache/pinot
1,124
pinot-controller/src/main/java/org/apache/pinot/controller/api/events/MetadataEventNotifier.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.pinot.controller.api.events; import org.apache.pinot.spi.config.table.TableConfig; import org.apache.pinot.spi.data.Schema; public interface MetadataEventNotifier { void notifyOnSchemaEvents(Schema schema, SchemaEventType eventType); void notifyOnSegmentFlush(TableConfig tableConfig); }
apache/plc4x
1,122
plc4j/drivers/canopen/src/main/java/org/apache/plc4x/java/canopen/context/CANOpenDriverContext.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. */ package org.apache.plc4x.java.canopen.context; import org.apache.plc4x.java.canopen.listener.CompositeCallback; import org.apache.plc4x.java.spi.context.DriverContext; public class CANOpenDriverContext implements DriverContext { public final static CompositeCallback CALLBACK = new CompositeCallback(); }
apache/plc4x
1,142
plc4j/api/src/main/java/org/apache/plc4x/java/api/metadata/Option.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. */ package org.apache.plc4x.java.api.metadata; import org.apache.plc4x.java.api.types.OptionType; import java.util.Optional; public interface Option { String getKey(); OptionType getType(); String getDescription(); boolean isRequired(); Optional<Object> getDefaultValue(); Optional<String> getSince(); }
apache/poi
1,155
poi-ooxml/src/main/java/org/apache/poi/xwpf/usermodel/ISDTContents.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.xwpf.usermodel; /** * Interface for anything that can be within an SDT: * {@link XWPFRun}, {@link XWPFTable}, {@link XWPFParagraph}, * {@link XWPFSDT} etc */ public interface ISDTContents { }
apache/polygene-java
1,090
libraries/sql-generator/src/main/java/org/apache/polygene/library/sql/generator/grammar/booleans/NotEqualsPredicate.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.sql.generator.grammar.booleans; /** * The interface for syntax element representing inequality test (x {@code <>} y). * * @author Stanislav Muhametsin */ public interface NotEqualsPredicate extends BinaryPredicate { }
apache/qpid-broker-j
1,099
broker-plugins/amqp-0-8-protocol/src/main/java/org/apache/qpid/server/protocol/v0_8/FlowCreditManager_0_8.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.qpid.server.protocol.v0_8; import org.apache.qpid.server.flow.FlowCreditManager; public interface FlowCreditManager_0_8 extends FlowCreditManager { boolean isNotBytesLimitedAndHighPrefetch(); boolean isBytesLimited(); boolean isCreditOverBatchLimit(); }
apache/qpid-broker-j
1,123
perftests/src/main/java/org/apache/qpid/disttest/results/aggregation/ITestResult.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.qpid.disttest.results.aggregation; import java.util.List; import org.apache.qpid.disttest.message.ParticipantResult; public interface ITestResult { // TODO should weaken to Collection List<ParticipantResult> getParticipantResults(); boolean hasErrors(); String getName(); }
apache/ranger
1,126
agents-common/src/main/java/org/apache/ranger/plugin/policyengine/RangerMutableResource.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.ranger.plugin.policyengine; import org.apache.ranger.plugin.model.RangerServiceDef; public interface RangerMutableResource extends RangerAccessResource { void setOwnerUser(String ownerUser); void setValue(String type, Object value); void setServiceDef(RangerServiceDef serviceDef); }