index int64 0 0 | repo_id stringlengths 9 205 | file_path stringlengths 31 246 | content stringlengths 1 12.2M | __index_level_0__ int64 0 10k |
|---|---|---|---|---|
0 | Create_ds/aries/subsystem/subsystem-scope-itests/src/test/java/org/apache/aries/subsystem/scope | Create_ds/aries/subsystem/subsystem-scope-itests/src/test/java/org/apache/aries/subsystem/scope/itests/ScopeProvider.java | package org.apache.aries.subsystem.scope.itests;
import org.apache.aries.subsystem.scope.Scope;
public interface ScopeProvider {
Scope getScope();
}
| 8,500 |
0 | Create_ds/aries/subsystem/subsystem-scope-itests/src/test/java/org/apache/aries/subsystem/scope | Create_ds/aries/subsystem/subsystem-scope-itests/src/test/java/org/apache/aries/subsystem/scope/itests/UninstallBundleTest.java | package org.apache.aries.subsystem.scope.itests;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
import java.util.Arrays;
import org.apache.aries.subsystem.scope.ScopeUpdate;
import org.jun... | 8,501 |
0 | Create_ds/aries/subsystem/subsystem-scope-itests/src/test/bundles/tb3/org/apache/aries/subsystem/scope/itests | Create_ds/aries/subsystem/subsystem-scope-itests/src/test/bundles/tb3/org/apache/aries/subsystem/scope/itests/tb3/Activator.java | package org.apache.aries.subsystem.scope.itests.tb3;
import org.apache.aries.subsystem.scope.Scope;
import org.apache.aries.subsystem.scope.itests.ScopeProvider;
import org.apache.aries.subsystem.scope.itests.Utils;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
import org.osgi.fra... | 8,502 |
0 | Create_ds/aries/subsystem/subsystem-scope-itests/src/test/bundles/tb4/org/apache/aries/subsystem/scope/itests | Create_ds/aries/subsystem/subsystem-scope-itests/src/test/bundles/tb4/org/apache/aries/subsystem/scope/itests/tb4/Activator.java | package org.apache.aries.subsystem.scope.itests.tb4;
import java.util.Arrays;
import java.util.Collection;
import org.apache.aries.subsystem.scope.itests.BundleProvider;
import org.apache.aries.subsystem.scope.itests.Utils;
import org.osgi.framework.Bundle;
import org.osgi.framework.BundleActivator;
import org.osgi.f... | 8,503 |
0 | Create_ds/aries/subsystem/subsystem-scope-itests/src/test/bundles/tb1/org/apache/aries/subsystem/scope/itests | Create_ds/aries/subsystem/subsystem-scope-itests/src/test/bundles/tb1/org/apache/aries/subsystem/scope/itests/tb1/Activator.java | package org.apache.aries.subsystem.scope.itests.tb1;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import org.apache.aries.subsystem.scope.Scope;
import org.apache.aries.subsystem.scope.SharePolicy;
import org.osgi.framework.Bundl... | 8,504 |
0 | Create_ds/aries/subsystem/subsystem-scope-itests/src/test/bundles/tb7/org/apache/aries/subsystem/scope/itests | Create_ds/aries/subsystem/subsystem-scope-itests/src/test/bundles/tb7/org/apache/aries/subsystem/scope/itests/tb7/Activator.java | package org.apache.aries.subsystem.scope.itests.tb7;
import org.apache.aries.subsystem.scope.itests.Service;
import org.apache.aries.subsystem.scope.itests.Utils;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
import org.osgi.framework.ServiceRegistration;
public class Activator i... | 8,505 |
0 | Create_ds/aries/subsystem/subsystem-scope-impl/src/main/java/org/apache/aries/subsystem/scope | Create_ds/aries/subsystem/subsystem-scope-impl/src/main/java/org/apache/aries/subsystem/scope/impl/IdGenerator.java | package org.apache.aries.subsystem.scope.impl;
public class IdGenerator {
private long lastId;
public IdGenerator() {
this(0);
}
public IdGenerator(long firstId) {
lastId = firstId;
}
public synchronized long nextId() {
return lastId++;
}
}
| 8,506 |
0 | Create_ds/aries/subsystem/subsystem-scope-impl/src/main/java/org/apache/aries/subsystem/scope | Create_ds/aries/subsystem/subsystem-scope-impl/src/main/java/org/apache/aries/subsystem/scope/impl/ScopeUpdateImpl.java | package org.apache.aries.subsystem.scope.impl;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.apache.aries.subsystem.scope.InstallInfo;
import org.apache.aries.subsystem.scop... | 8,507 |
0 | Create_ds/aries/subsystem/subsystem-scope-impl/src/main/java/org/apache/aries/subsystem/scope | Create_ds/aries/subsystem/subsystem-scope-impl/src/main/java/org/apache/aries/subsystem/scope/impl/ScopeImpl.java | package org.apache.aries.subsystem.scope.impl;
import java.util.Collection;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.apache.aries.subsystem.scope.Scope;
import org.apache.aries.subsystem.scope.ScopeUpdate;
import org.apache.a... | 8,508 |
0 | Create_ds/aries/subsystem/subsystem-scope-impl/src/main/java/org/apache/aries/subsystem/scope | Create_ds/aries/subsystem/subsystem-scope-impl/src/main/java/org/apache/aries/subsystem/scope/impl/SharePolicies.java | package org.apache.aries.subsystem.scope.impl;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.apache.aries.subsystem.scope.SharePolicy;
public class SharePolicies {
private final Map<String, Map<String, List<SharePolicy>>> ... | 8,509 |
0 | Create_ds/aries/subsystem/subsystem-scope-impl/src/main/java/org/apache/aries/subsystem/scope | Create_ds/aries/subsystem/subsystem-scope-impl/src/main/java/org/apache/aries/subsystem/scope/impl/ScopeManager.java | package org.apache.aries.subsystem.scope.impl;
import java.io.IOException;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import org.apache.aries.subsystem.scope.Scope;
import org.apache.aries.subsystem.scope... | 8,510 |
0 | Create_ds/aries/subsystem/subsystem-scope-impl/src/main/java/org/apache/aries/subsystem/scope | Create_ds/aries/subsystem/subsystem-scope-impl/src/main/java/org/apache/aries/subsystem/scope/impl/Scopes.java | package org.apache.aries.subsystem.scope.impl;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.EOFException;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.FilenameFilter;
import java.io.IOException;
import java.util.ArrayList;
impor... | 8,511 |
0 | Create_ds/aries/subsystem/subsystem-scope-impl/src/main/java/org/apache/aries/subsystem/scope | Create_ds/aries/subsystem/subsystem-scope-impl/src/main/java/org/apache/aries/subsystem/scope/internal/Activator.java | package org.apache.aries.subsystem.scope.internal;
import org.apache.aries.subsystem.scope.Scope;
import org.apache.aries.subsystem.scope.impl.ScopeManager;
import org.osgi.framework.Bundle;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
import org.osgi.framework.ServiceFactory;
im... | 8,512 |
0 | Create_ds/aries/subsystem/subsystem-scope-api/src/main/java/org/apache/aries/subsystem | Create_ds/aries/subsystem/subsystem-scope-api/src/main/java/org/apache/aries/subsystem/scope/SharePolicy.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 ... | 8,513 |
0 | Create_ds/aries/subsystem/subsystem-scope-api/src/main/java/org/apache/aries/subsystem | Create_ds/aries/subsystem/subsystem-scope-api/src/main/java/org/apache/aries/subsystem/scope/InstallInfo.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 ... | 8,514 |
0 | Create_ds/aries/subsystem/subsystem-scope-api/src/main/java/org/apache/aries/subsystem | Create_ds/aries/subsystem/subsystem-scope-api/src/main/java/org/apache/aries/subsystem/scope/ScopeUpdate.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 ... | 8,515 |
0 | Create_ds/aries/subsystem/subsystem-scope-api/src/main/java/org/apache/aries/subsystem | Create_ds/aries/subsystem/subsystem-scope-api/src/main/java/org/apache/aries/subsystem/scope/Scope.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 ... | 8,516 |
0 | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core/archive/AriesProvisionDependenciesHeaderTest.java | package org.apache.aries.subsystem.core.archive;
import static org.junit.Assert.assertTrue;
import org.junit.Test;
public class AriesProvisionDependenciesHeaderTest {
@Test
public void testClauseGetValue() {
assertTrue("resolve".equals(AriesProvisionDependenciesDirective.RESOLVE.getValue()));
... | 8,517 |
0 | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core/archive/GenericHeaderTest.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 ... | 8,518 |
0 | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core/archive/Aries1453Test.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
* distribu... | 8,519 |
0 | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core/archive/Aries1425Test.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
* distribu... | 8,520 |
0 | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core/archive/FragmentHostHeaderTest.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 ... | 8,521 |
0 | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core/archive/ImportPackageHeaderTest.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
* distribu... | 8,522 |
0 | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core/archive/BundleRequiredExecutionEnvironmentHeaderTest.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
* distribu... | 8,523 |
0 | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core/archive/Aries1427Test.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
* distribu... | 8,524 |
0 | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core/archive/SubsystemManifestEqualityTest.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
* distribu... | 8,525 |
0 | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core/internal/ResourceHelperTest.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
* distribu... | 8,526 |
0 | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core/internal/LocationTest.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
* distribu... | 8,527 |
0 | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core/internal/RepositoryServiceRepositoryTest.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
* distribu... | 8,528 |
0 | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core/internal/BundleRevisionResourceTest.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
* distribu... | 8,529 |
0 | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core/internal/ResolveContextTest.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
* distribu... | 8,530 |
0 | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core/internal/TestCapability.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
* distribu... | 8,531 |
0 | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core/internal | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core/internal/sub/SubTestRepository.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
* distribu... | 8,532 |
0 | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core/internal | Create_ds/aries/subsystem/subsystem-core/src/test/java/org/apache/aries/subsystem/core/internal/sub/Creator.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
* distribu... | 8,533 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/repository/RepositoryContent.java | /*
* Copyright (c) OSGi Alliance (2012). All Rights Reserved.
*
* 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... | 8,534 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/repository/Repository.java | /*
* Copyright (c) OSGi Alliance (2006, 2012). All Rights Reserved.
*
* 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 req... | 8,535 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/repository/ContentNamespace.java | /*
* Copyright (c) OSGi Alliance (2011, 2012). All Rights Reserved.
*
* 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 re... | 8,536 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/repository/package-info.java | /*
* Copyright (c) OSGi Alliance (2010, 2012). All Rights Reserved.
*
* 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 re... | 8,537 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/capabilityset/SimpleFilter.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 ... | 8,538 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/capabilityset/CapabilitySetRepository.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 ... | 8,539 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/capabilityset/SecureAction.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 ... | 8,540 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/capabilityset/CapabilitySet.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 ... | 8,541 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/capabilityset/StringComparator.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 ... | 8,542 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/AbstractDirective.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
* distribu... | 8,543 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/ImportPackageHeader.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 ... | 8,544 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/GenericHeader.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
* distribu... | 8,545 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/GenericClause.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
* distribu... | 8,546 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/AriesSubsystemParentsHeader.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
* distribu... | 8,547 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/ProvideCapabilityCapability.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
* distribu... | 8,548 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/ProvisionPolicyDirective.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
* distribu... | 8,549 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/Patterns.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 ... | 8,550 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/DeployedContentRequirement.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
* distribu... | 8,551 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/RequireBundleRequirement.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
* distribu... | 8,552 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/StartOrderDirective.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
* distribu... | 8,553 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/SubsystemImportServiceRequirement.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
* distribu... | 8,554 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/ClauseTokenizer.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
* distribu... | 8,555 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/SubsystemManifest.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
* distribu... | 8,556 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/BundleManifestVersionHeader.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
* distribu... | 8,557 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/VersionHeader.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
* distribu... | 8,558 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/Grammar.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
* distribu... | 8,559 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/PreferredProviderHeader.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
* distribu... | 8,560 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/DirectiveFactory.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
* distribu... | 8,561 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/Parameter.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
* distribu... | 8,562 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/ProvisionResourceHeader.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
* distribu... | 8,563 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/ExportPackageHeader.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
* distribu... | 8,564 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/CardinalityDirective.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
* distribu... | 8,565 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/ImportPackageRequirement.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
* distribu... | 8,566 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/SymbolicNameHeader.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
* distribu... | 8,567 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/RequirementHeader.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
* distribu... | 8,568 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/ResolutionDirective.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
* distribu... | 8,569 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/AbstractAttribute.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
* distribu... | 8,570 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/ProvideCapabilityHeader.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
* distribu... | 8,571 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/Manifest.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
* distribu... | 8,572 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/DeploymentManifest.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
* distribu... | 8,573 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/RequireCapabilityRequirement.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
* distribu... | 8,574 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/SubsystemLocalizationHeader.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
* distribu... | 8,575 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/ProvisionResourceRequirement.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
* distribu... | 8,576 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/EffectiveDirective.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
* distribu... | 8,577 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/DeployedVersionAttribute.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
* distribu... | 8,578 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/BundleRequiredExecutionEnvironmentHeader.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
* distribu... | 8,579 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/HeaderFactory.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 ... | 8,580 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/RequireCapabilityHeader.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
* distribu... | 8,581 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/DeployedContentHeader.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
* distribu... | 8,582 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/BundleManifest.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
* distribu... | 8,583 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/FragmentHostRequirement.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 ... | 8,584 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/TypeAttribute.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
* distribu... | 8,585 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/AriesSubsystemLocationHeader.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 ... | 8,586 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/VersionAttribute.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
* distribu... | 8,587 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/ManifestVersionHeader.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
* distribu... | 8,588 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/Directive.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
* distribu... | 8,589 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/AbstractClause.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
* distribu... | 8,590 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/ProvideBundleCapability.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
* distribu... | 8,591 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/AbstractHeader.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
* distribu... | 8,592 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/VersionRangeAttribute.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
* distribu... | 8,593 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/DynamicImportPackageRequirement.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
* distribu... | 8,594 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/BundleVersionHeader.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
* distribu... | 8,595 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/FragmentHostHeader.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 ... | 8,596 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/CapabilityHeader.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
* distribu... | 8,597 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/SubsystemExportServiceCapability.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
* distribu... | 8,598 |
0 | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core | Create_ds/aries/subsystem/subsystem-core/src/main/java/org/apache/aries/subsystem/core/archive/VisibilityDirective.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
* distribu... | 8,599 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.