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/camel-k/e2e/common/config
Create_ds/camel-k/e2e/common/config/files/TimerKameletIntegrationNamedConfiguration.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 ...
9,100
0
Create_ds/camel-k/e2e/common/cli
Create_ds/camel-k/e2e/common/cli/files/JavaDuplicateParams.java
// camel-k: language=java trait=telemetry.enabled=false trait=affinity.enabled=true property=prop1=false property=foo=bar /* * 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 c...
9,101
0
Create_ds/camel-k/e2e/common/cli
Create_ds/camel-k/e2e/common/cli/files/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 ...
9,102
0
Create_ds/camel-k/e2e/common/languages
Create_ds/camel-k/e2e/common/languages/files/Prop.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 ...
9,103
0
Create_ds/camel-k/e2e/common/languages
Create_ds/camel-k/e2e/common/languages/files/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 ...
9,104
0
Create_ds/camel-k/e2e/commonwithcustominstall
Create_ds/camel-k/e2e/commonwithcustominstall/files/TimerCustomKameletIntegration.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 ...
9,105
0
Create_ds/camel-k/e2e/commonwithcustominstall
Create_ds/camel-k/e2e/commonwithcustominstall/files/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 ...
9,106
0
Create_ds/camel-k/e2e/yaks/common
Create_ds/camel-k/e2e/yaks/common/knative-sinkbinding-http/Rest2Channel.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 ...
9,107
0
Create_ds/camel-k/e2e/yaks/openshift
Create_ds/camel-k/e2e/yaks/openshift/monitoring/Metrics.java
// camel-k: language=java trait=prometheus.enabled=true /* * 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...
9,108
0
Create_ds/camel-k/e2e/yaks/openshift/monitoring/app/src/main/java/org/apache/camel
Create_ds/camel-k/e2e/yaks/openshift/monitoring/app/src/main/java/org/apache/camel/integration/Service.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 ...
9,109
0
Create_ds/airavata-data-catalog/data-catalog-api/server/core/src/main/java/org/apache/airavata/datacatalog/api
Create_ds/airavata-data-catalog/data-catalog-api/server/core/src/main/java/org/apache/airavata/datacatalog/api/repository/DataProductRepository.java
package org.apache.airavata.datacatalog.api.repository; import org.apache.airavata.datacatalog.api.model.DataProductEntity; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.transaction.annotation.Transactional; import java.util.Optional; @Transactional(readOnly = true) public ...
9,110
0
Create_ds/airavata-data-catalog/data-catalog-api/server/core/src/main/java/org/apache/airavata/datacatalog/api
Create_ds/airavata-data-catalog/data-catalog-api/server/core/src/main/java/org/apache/airavata/datacatalog/api/repository/MetadataSchemaRepository.java
package org.apache.airavata.datacatalog.api.repository; import org.apache.airavata.datacatalog.api.model.MetadataSchemaEntity; import org.springframework.data.jpa.repository.JpaRepository; public interface MetadataSchemaRepository extends JpaRepository<MetadataSchemaEntity, Long> { MetadataSchemaEntity findBySch...
9,111
0
Create_ds/airavata-data-catalog/data-catalog-api/server/core/src/main/java/org/apache/airavata/datacatalog/api
Create_ds/airavata-data-catalog/data-catalog-api/server/core/src/main/java/org/apache/airavata/datacatalog/api/repository/MetadataSchemaFieldRepository.java
package org.apache.airavata.datacatalog.api.repository; import java.util.List; import org.apache.airavata.datacatalog.api.model.MetadataSchemaFieldEntity; import org.springframework.data.jpa.repository.JpaRepository; public interface MetadataSchemaFieldRepository extends JpaRepository<MetadataSchemaFieldEntity, Long...
9,112
0
Create_ds/airavata-data-catalog/data-catalog-api/server/core/src/main/java/org/apache/airavata/datacatalog/api
Create_ds/airavata-data-catalog/data-catalog-api/server/core/src/main/java/org/apache/airavata/datacatalog/api/repository/TenantRepository.java
package org.apache.airavata.datacatalog.api.repository; import java.util.Optional; import org.apache.airavata.datacatalog.api.model.TenantEntity; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.transaction.annotation.Transactional; @Transactional public interface TenantReposi...
9,113
0
Create_ds/airavata-data-catalog/data-catalog-api/server/core/src/main/java/org/apache/airavata/datacatalog/api
Create_ds/airavata-data-catalog/data-catalog-api/server/core/src/main/java/org/apache/airavata/datacatalog/api/repository/UserRepository.java
package org.apache.airavata.datacatalog.api.repository; import java.util.Optional; import org.apache.airavata.datacatalog.api.model.TenantEntity; import org.apache.airavata.datacatalog.api.model.UserEntity; import org.springframework.data.jpa.repository.JpaRepository; public interface UserRepository extends JpaRepos...
9,114
0
Create_ds/airavata-data-catalog/data-catalog-api/server/core/src/main/java/org/apache/airavata/datacatalog/api
Create_ds/airavata-data-catalog/data-catalog-api/server/core/src/main/java/org/apache/airavata/datacatalog/api/sharing/SharingManager.java
package org.apache.airavata.datacatalog.api.sharing; import org.apache.airavata.datacatalog.api.DataProduct; import org.apache.airavata.datacatalog.api.GroupInfo; import org.apache.airavata.datacatalog.api.Permission; import org.apache.airavata.datacatalog.api.UserInfo; import org.apache.airavata.datacatalog.api.model...
9,115
0
Create_ds/airavata-data-catalog/data-catalog-api/server/core/src/main/java/org/apache/airavata/datacatalog/api/sharing
Create_ds/airavata-data-catalog/data-catalog-api/server/core/src/main/java/org/apache/airavata/datacatalog/api/sharing/exception/SharingException.java
package org.apache.airavata.datacatalog.api.sharing.exception; public class SharingException extends Exception { public SharingException() { } public SharingException(String message) { super(message); } public SharingException(Throwable cause) { super(cause); } public Sh...
9,116
0
Create_ds/airavata-data-catalog/data-catalog-api/server/core/src/main/java/org/apache/airavata/datacatalog/api
Create_ds/airavata-data-catalog/data-catalog-api/server/core/src/main/java/org/apache/airavata/datacatalog/api/model/TenantEntity.java
package org.apache.airavata.datacatalog.api.model; import jakarta.persistence.Basic; import jakarta.persistence.Column; import jakarta.persistence.Entity; import jakarta.persistence.GeneratedValue; import jakarta.persistence.GenerationType; import jakarta.persistence.Id; import jakarta.persistence.SequenceGenerator; i...
9,117
0
Create_ds/airavata-data-catalog/data-catalog-api/server/core/src/main/java/org/apache/airavata/datacatalog/api
Create_ds/airavata-data-catalog/data-catalog-api/server/core/src/main/java/org/apache/airavata/datacatalog/api/model/UserEntity.java
package org.apache.airavata.datacatalog.api.model; import jakarta.persistence.Basic; import jakarta.persistence.Column; import jakarta.persistence.Entity; import jakarta.persistence.GeneratedValue; import jakarta.persistence.GenerationType; import jakarta.persistence.Id; import jakarta.persistence.JoinColumn; import j...
9,118
0
Create_ds/airavata-data-catalog/data-catalog-api/server/core/src/main/java/org/apache/airavata/datacatalog/api
Create_ds/airavata-data-catalog/data-catalog-api/server/core/src/main/java/org/apache/airavata/datacatalog/api/model/DataProductEntity.java
package org.apache.airavata.datacatalog.api.model; import java.util.HashSet; import java.util.Set; import org.hibernate.annotations.Type; import com.fasterxml.jackson.databind.JsonNode; import io.hypersistence.utils.hibernate.type.json.JsonType; import jakarta.persistence.Basic; import jakarta.persistence.Column; i...
9,119
0
Create_ds/airavata-data-catalog/data-catalog-api/server/core/src/main/java/org/apache/airavata/datacatalog/api
Create_ds/airavata-data-catalog/data-catalog-api/server/core/src/main/java/org/apache/airavata/datacatalog/api/model/MetadataSchemaEntity.java
package org.apache.airavata.datacatalog.api.model; import java.util.Set; import jakarta.persistence.Basic; import jakarta.persistence.Column; import jakarta.persistence.Entity; import jakarta.persistence.GeneratedValue; import jakarta.persistence.GenerationType; import jakarta.persistence.Id; import jakarta.persisten...
9,120
0
Create_ds/airavata-data-catalog/data-catalog-api/server/core/src/main/java/org/apache/airavata/datacatalog/api
Create_ds/airavata-data-catalog/data-catalog-api/server/core/src/main/java/org/apache/airavata/datacatalog/api/model/MetadataSchemaFieldEntity.java
package org.apache.airavata.datacatalog.api.model; import org.apache.airavata.datacatalog.api.FieldValueType; import jakarta.persistence.Basic; import jakarta.persistence.Column; import jakarta.persistence.Entity; import jakarta.persistence.EnumType; import jakarta.persistence.Enumerated; import jakarta.persistence.G...
9,121
0
Create_ds/airavata-data-catalog/data-catalog-api/server/custos-sharing/src/main/java/org/apache/airavata/datacatalog/api
Create_ds/airavata-data-catalog/data-catalog-api/server/custos-sharing/src/main/java/org/apache/airavata/datacatalog/api/sharing/CustosTestDataBootstrap.java
package org.apache.airavata.datacatalog.api.sharing; import java.io.IOException; import org.apache.custos.clients.CustosClientProvider; import org.apache.custos.iam.service.FindUsersResponse; import org.apache.custos.user.management.client.UserManagementClient; public class CustosTestDataBootstrap { public stati...
9,122
0
Create_ds/airavata-data-catalog/data-catalog-api/server/custos-sharing/src/main/java/org/apache/airavata/datacatalog/api
Create_ds/airavata-data-catalog/data-catalog-api/server/custos-sharing/src/main/java/org/apache/airavata/datacatalog/api/sharing/SharingManagerImpl.java
package org.apache.airavata.datacatalog.api.sharing; import java.io.IOException; import java.util.ArrayList; import java.util.Arrays; import java.util.HashSet; import java.util.List; import java.util.Optional; import java.util.Set; import org.apache.airavata.datacatalog.api.DataProduct; import org.apache.airavata.dat...
9,123
0
Create_ds/airavata-data-catalog/data-catalog-api/server/simple-sharing/src/test/java/org/apache/airavata/datacatalog/api
Create_ds/airavata-data-catalog/data-catalog-api/server/simple-sharing/src/test/java/org/apache/airavata/datacatalog/api/sharing/SimpleSharingManagerImplTest.java
package org.apache.airavata.datacatalog.api.sharing; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertTrue; import java.util.Arrays; import java.util.HashSet; import java.util.Optional; import ...
9,124
0
Create_ds/airavata-data-catalog/data-catalog-api/server/simple-sharing/src/main/java/org/apache/airavata/datacatalog/api/repository/sharing
Create_ds/airavata-data-catalog/data-catalog-api/server/simple-sharing/src/main/java/org/apache/airavata/datacatalog/api/repository/sharing/simple/SimpleGroupSharingRepository.java
package org.apache.airavata.datacatalog.api.repository.sharing.simple; import java.util.Optional; import org.apache.airavata.datacatalog.api.Permission; import org.apache.airavata.datacatalog.api.model.sharing.simple.SimpleGroupSharingEntity; import org.springframework.data.jpa.repository.JpaRepository; public inter...
9,125
0
Create_ds/airavata-data-catalog/data-catalog-api/server/simple-sharing/src/main/java/org/apache/airavata/datacatalog/api/repository/sharing
Create_ds/airavata-data-catalog/data-catalog-api/server/simple-sharing/src/main/java/org/apache/airavata/datacatalog/api/repository/sharing/simple/SimpleUserSharingRepository.java
package org.apache.airavata.datacatalog.api.repository.sharing.simple; import java.util.Optional; import org.apache.airavata.datacatalog.api.Permission; import org.apache.airavata.datacatalog.api.model.sharing.simple.SimpleUserSharingEntity; import org.springframework.data.jpa.repository.JpaRepository; public interf...
9,126
0
Create_ds/airavata-data-catalog/data-catalog-api/server/simple-sharing/src/main/java/org/apache/airavata/datacatalog/api/repository/sharing
Create_ds/airavata-data-catalog/data-catalog-api/server/simple-sharing/src/main/java/org/apache/airavata/datacatalog/api/repository/sharing/simple/SimpleGroupRepository.java
package org.apache.airavata.datacatalog.api.repository.sharing.simple; import java.util.Optional; import org.apache.airavata.datacatalog.api.model.sharing.simple.SimpleGroupEntity; import org.apache.airavata.datacatalog.api.model.sharing.simple.SimpleTenantEntity; import org.springframework.data.jpa.repository.JpaRep...
9,127
0
Create_ds/airavata-data-catalog/data-catalog-api/server/simple-sharing/src/main/java/org/apache/airavata/datacatalog/api/repository/sharing
Create_ds/airavata-data-catalog/data-catalog-api/server/simple-sharing/src/main/java/org/apache/airavata/datacatalog/api/repository/sharing/simple/SimpleUserRepository.java
package org.apache.airavata.datacatalog.api.repository.sharing.simple; import java.util.Optional; import org.apache.airavata.datacatalog.api.model.UserEntity; import org.apache.airavata.datacatalog.api.model.sharing.simple.SimpleTenantEntity; import org.apache.airavata.datacatalog.api.model.sharing.simple.SimpleUserE...
9,128
0
Create_ds/airavata-data-catalog/data-catalog-api/server/simple-sharing/src/main/java/org/apache/airavata/datacatalog/api/repository/sharing
Create_ds/airavata-data-catalog/data-catalog-api/server/simple-sharing/src/main/java/org/apache/airavata/datacatalog/api/repository/sharing/simple/SimpleTenantRepository.java
package org.apache.airavata.datacatalog.api.repository.sharing.simple; import java.util.Optional; import org.apache.airavata.datacatalog.api.model.sharing.simple.SimpleTenantEntity; import org.springframework.data.jpa.repository.JpaRepository; public interface SimpleTenantRepository extends JpaRepository<SimpleTenan...
9,129
0
Create_ds/airavata-data-catalog/data-catalog-api/server/simple-sharing/src/main/java/org/apache/airavata/datacatalog/api/repository/sharing
Create_ds/airavata-data-catalog/data-catalog-api/server/simple-sharing/src/main/java/org/apache/airavata/datacatalog/api/repository/sharing/simple/SimplePublicSharingRepository.java
package org.apache.airavata.datacatalog.api.repository.sharing.simple; import java.util.Optional; import org.apache.airavata.datacatalog.api.Permission; import org.apache.airavata.datacatalog.api.model.sharing.simple.SimplePublicSharingEntity; import org.apache.airavata.datacatalog.api.model.sharing.simple.SimpleTena...
9,130
0
Create_ds/airavata-data-catalog/data-catalog-api/server/simple-sharing/src/main/java/org/apache/airavata/datacatalog/api
Create_ds/airavata-data-catalog/data-catalog-api/server/simple-sharing/src/main/java/org/apache/airavata/datacatalog/api/sharing/SimpleSharingManagerImpl.java
package org.apache.airavata.datacatalog.api.sharing; import java.util.Arrays; import java.util.Optional; import org.apache.airavata.datacatalog.api.DataProduct; import org.apache.airavata.datacatalog.api.GroupInfo; import org.apache.airavata.datacatalog.api.Permission; import org.apache.airavata.datacatalog.api.UserI...
9,131
0
Create_ds/airavata-data-catalog/data-catalog-api/server/simple-sharing/src/main/java/org/apache/airavata/datacatalog/api/model/sharing
Create_ds/airavata-data-catalog/data-catalog-api/server/simple-sharing/src/main/java/org/apache/airavata/datacatalog/api/model/sharing/simple/SimpleUserSharingEntity.java
package org.apache.airavata.datacatalog.api.model.sharing.simple; import org.apache.airavata.datacatalog.api.Permission; import org.apache.airavata.datacatalog.api.model.DataProductEntity; import jakarta.persistence.Column; import jakarta.persistence.Entity; import jakarta.persistence.EnumType; import jakarta.persist...
9,132
0
Create_ds/airavata-data-catalog/data-catalog-api/server/simple-sharing/src/main/java/org/apache/airavata/datacatalog/api/model/sharing
Create_ds/airavata-data-catalog/data-catalog-api/server/simple-sharing/src/main/java/org/apache/airavata/datacatalog/api/model/sharing/simple/SimplePublicSharingEntity.java
package org.apache.airavata.datacatalog.api.model.sharing.simple; import org.apache.airavata.datacatalog.api.Permission; import org.apache.airavata.datacatalog.api.model.DataProductEntity; import jakarta.persistence.Column; import jakarta.persistence.Entity; import jakarta.persistence.EnumType; import jakarta.persist...
9,133
0
Create_ds/airavata-data-catalog/data-catalog-api/server/simple-sharing/src/main/java/org/apache/airavata/datacatalog/api/model/sharing
Create_ds/airavata-data-catalog/data-catalog-api/server/simple-sharing/src/main/java/org/apache/airavata/datacatalog/api/model/sharing/simple/SimpleTenantEntity.java
package org.apache.airavata.datacatalog.api.model.sharing.simple; import org.apache.airavata.datacatalog.api.model.TenantEntity; import jakarta.persistence.Basic; import jakarta.persistence.Column; import jakarta.persistence.Entity; import jakarta.persistence.GeneratedValue; import jakarta.persistence.GenerationType;...
9,134
0
Create_ds/airavata-data-catalog/data-catalog-api/server/simple-sharing/src/main/java/org/apache/airavata/datacatalog/api/model/sharing
Create_ds/airavata-data-catalog/data-catalog-api/server/simple-sharing/src/main/java/org/apache/airavata/datacatalog/api/model/sharing/simple/SimpleUserEntity.java
package org.apache.airavata.datacatalog.api.model.sharing.simple; import org.apache.airavata.datacatalog.api.model.UserEntity; import jakarta.persistence.Basic; import jakarta.persistence.Column; import jakarta.persistence.Entity; import jakarta.persistence.GeneratedValue; import jakarta.persistence.GenerationType; i...
9,135
0
Create_ds/airavata-data-catalog/data-catalog-api/server/simple-sharing/src/main/java/org/apache/airavata/datacatalog/api/model/sharing
Create_ds/airavata-data-catalog/data-catalog-api/server/simple-sharing/src/main/java/org/apache/airavata/datacatalog/api/model/sharing/simple/SimpleGroupSharingEntity.java
package org.apache.airavata.datacatalog.api.model.sharing.simple; import org.apache.airavata.datacatalog.api.Permission; import org.apache.airavata.datacatalog.api.model.DataProductEntity; import jakarta.persistence.Column; import jakarta.persistence.Entity; import jakarta.persistence.EnumType; import jakarta.persist...
9,136
0
Create_ds/airavata-data-catalog/data-catalog-api/server/simple-sharing/src/main/java/org/apache/airavata/datacatalog/api/model/sharing
Create_ds/airavata-data-catalog/data-catalog-api/server/simple-sharing/src/main/java/org/apache/airavata/datacatalog/api/model/sharing/simple/SimpleGroupEntity.java
package org.apache.airavata.datacatalog.api.model.sharing.simple; import java.util.HashSet; import java.util.Set; import jakarta.persistence.Basic; import jakarta.persistence.Column; import jakarta.persistence.Entity; import jakarta.persistence.GeneratedValue; import jakarta.persistence.GenerationType; import jakarta...
9,137
0
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/test/java/org/apache/airavata/datacatalog
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/test/java/org/apache/airavata/datacatalog/api/DataCatalogApiServerApplicationTests.java
package org.apache.airavata.datacatalog.api; import org.junit.jupiter.api.Test; import org.springframework.boot.test.context.SpringBootTest; @SpringBootTest class DataCatalogApiServerApplicationTests { @Test void contextLoads() { } }
9,138
0
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/main/java/org/apache/airavata/datacatalog
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/main/java/org/apache/airavata/datacatalog/api/DataCatalogApiServiceApplication.java
package org.apache.airavata.datacatalog.api; import java.lang.reflect.Constructor; import java.lang.reflect.InvocationTargetException; import org.apache.airavata.datacatalog.api.sharing.SharingManager; import org.springframework.beans.factory.annotation.Value; import org.springframework.boot.WebApplicationType; impor...
9,139
0
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/main/java/org/apache/airavata/datacatalog/api
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/main/java/org/apache/airavata/datacatalog/api/mapper/MetadataSchemaFieldMapper.java
package org.apache.airavata.datacatalog.api.mapper; import org.apache.airavata.datacatalog.api.MetadataSchemaField; import org.apache.airavata.datacatalog.api.model.MetadataSchemaEntity; import org.apache.airavata.datacatalog.api.model.MetadataSchemaFieldEntity; import org.apache.airavata.datacatalog.api.repository.Me...
9,140
0
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/main/java/org/apache/airavata/datacatalog/api
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/main/java/org/apache/airavata/datacatalog/api/mapper/MetadataSchemaMapper.java
package org.apache.airavata.datacatalog.api.mapper; import org.apache.airavata.datacatalog.api.MetadataSchema; import org.apache.airavata.datacatalog.api.model.MetadataSchemaEntity; import org.springframework.stereotype.Component; @Component public class MetadataSchemaMapper { public void mapModelToEntity(Metada...
9,141
0
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/main/java/org/apache/airavata/datacatalog/api
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/main/java/org/apache/airavata/datacatalog/api/mapper/DataProductMapper.java
package org.apache.airavata.datacatalog.api.mapper; import org.apache.airavata.datacatalog.api.DataProduct; import org.apache.airavata.datacatalog.api.exception.EntityNotFoundException; import org.apache.airavata.datacatalog.api.model.DataProductEntity; import org.apache.airavata.datacatalog.api.model.MetadataSchemaEn...
9,142
0
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/main/java/org/apache/airavata/datacatalog/api
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/main/java/org/apache/airavata/datacatalog/api/mapper/UserInfoMapper.java
package org.apache.airavata.datacatalog.api.mapper; import org.apache.airavata.datacatalog.api.UserInfo; import org.apache.airavata.datacatalog.api.model.UserEntity; import org.springframework.stereotype.Component; /** * Map from {@link org.apache.airavata.datacatalog.api.model.UserEntity} to * {@link org.apache.ai...
9,143
0
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/main/java/org/apache/airavata/datacatalog/api
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/main/java/org/apache/airavata/datacatalog/api/service/DataCatalogAPIService.java
package org.apache.airavata.datacatalog.api.service; import java.util.List; import org.apache.airavata.datacatalog.api.DataCatalogAPIServiceGrpc; import org.apache.airavata.datacatalog.api.DataProduct; import org.apache.airavata.datacatalog.api.DataProductAddToMetadataSchemaRequest; import org.apache.airavata.datacat...
9,144
0
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/main/java/org/apache/airavata/datacatalog/api
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/main/java/org/apache/airavata/datacatalog/api/service/DataCatalogService.java
package org.apache.airavata.datacatalog.api.service; import java.util.List; import org.apache.airavata.datacatalog.api.DataProduct; import org.apache.airavata.datacatalog.api.MetadataSchema; import org.apache.airavata.datacatalog.api.MetadataSchemaField; import org.apache.airavata.datacatalog.api.UserInfo; import org...
9,145
0
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/main/java/org/apache/airavata/datacatalog/api/service
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/main/java/org/apache/airavata/datacatalog/api/service/impl/DataCatalogServiceImpl.java
package org.apache.airavata.datacatalog.api.service.impl; import java.util.ArrayList; import java.util.List; import java.util.UUID; import org.apache.airavata.datacatalog.api.DataProduct; import org.apache.airavata.datacatalog.api.MetadataSchema; import org.apache.airavata.datacatalog.api.MetadataSchemaField; import ...
9,146
0
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/main/java/org/apache/airavata/datacatalog/api
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/main/java/org/apache/airavata/datacatalog/api/query/MetadataSchemaQueryResult.java
package org.apache.airavata.datacatalog.api.query; import java.util.List; import org.apache.airavata.datacatalog.api.DataProduct; public record MetadataSchemaQueryResult(List<DataProduct> dataProducts) { }
9,147
0
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/main/java/org/apache/airavata/datacatalog/api
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/main/java/org/apache/airavata/datacatalog/api/query/MetadataSchemaQueryExecutor.java
package org.apache.airavata.datacatalog.api.query; import org.apache.airavata.datacatalog.api.exception.MetadataSchemaSqlParseException; import org.apache.airavata.datacatalog.api.exception.MetadataSchemaSqlValidateException; import org.apache.airavata.datacatalog.api.model.UserEntity; public interface MetadataSchema...
9,148
0
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/main/java/org/apache/airavata/datacatalog/api
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/main/java/org/apache/airavata/datacatalog/api/query/MetadataSchemaQueryWriter.java
package org.apache.airavata.datacatalog.api.query; import java.util.Collection; import java.util.Map; import org.apache.airavata.datacatalog.api.model.MetadataSchemaEntity; import org.apache.airavata.datacatalog.api.model.UserEntity; import org.apache.calcite.sql.SqlNode; public interface MetadataSchemaQueryWriter {...
9,149
0
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/main/java/org/apache/airavata/datacatalog/api/query
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/main/java/org/apache/airavata/datacatalog/api/query/impl/MetadataSchemaQueryExecutorImpl.java
package org.apache.airavata.datacatalog.api.query.impl; import java.util.ArrayList; import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.Map; import org.apache.airavata.datacatalog.api.DataProduct; import org.apache.airavata.datacatalog.api.FieldValueType; import org.apache....
9,150
0
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/main/java/org/apache/airavata/datacatalog/api/query
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/main/java/org/apache/airavata/datacatalog/api/query/impl/PostgresqlMetadataSchemaQueryWriterImpl.java
package org.apache.airavata.datacatalog.api.query.impl; import java.util.ArrayDeque; import java.util.ArrayList; import java.util.Collection; import java.util.Deque; import java.util.List; import java.util.Map; import java.util.Set; import org.apache.airavata.datacatalog.api.Permission; import org.apache.airavata.dat...
9,151
0
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/main/java/org/apache/airavata/datacatalog/api
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/main/java/org/apache/airavata/datacatalog/api/exception/MetadataSchemaSqlValidateException.java
package org.apache.airavata.datacatalog.api.exception; public class MetadataSchemaSqlValidateException extends Exception { public MetadataSchemaSqlValidateException() { } public MetadataSchemaSqlValidateException(String message) { super(message); } public MetadataSchemaSqlValidateExcepti...
9,152
0
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/main/java/org/apache/airavata/datacatalog/api
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/main/java/org/apache/airavata/datacatalog/api/exception/MetadataSchemaSqlParseException.java
package org.apache.airavata.datacatalog.api.exception; public class MetadataSchemaSqlParseException extends Exception { public MetadataSchemaSqlParseException() { } public MetadataSchemaSqlParseException(String message) { super(message); } public MetadataSchemaSqlParseException(Throwable...
9,153
0
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/main/java/org/apache/airavata/datacatalog/api
Create_ds/airavata-data-catalog/data-catalog-api/server/service/src/main/java/org/apache/airavata/datacatalog/api/exception/EntityNotFoundException.java
package org.apache.airavata.datacatalog.api.exception; public class EntityNotFoundException extends RuntimeException { public EntityNotFoundException() { } public EntityNotFoundException(String message) { super(message); } public EntityNotFoundException(Throwable cause) { super(c...
9,154
0
Create_ds/airavata-data-catalog/data-catalog-api/client/src/main/java/org/apache/airavata/datacatalog/api
Create_ds/airavata-data-catalog/data-catalog-api/client/src/main/java/org/apache/airavata/datacatalog/api/client/DataCatalogAPIClient.java
package org.apache.airavata.datacatalog.api.client; import java.text.MessageFormat; import java.util.List; import java.util.concurrent.TimeUnit; import org.apache.airavata.datacatalog.api.DataCatalogAPIServiceGrpc; import org.apache.airavata.datacatalog.api.DataCatalogAPIServiceGrpc.DataCatalogAPIServiceBlockingStub;...
9,155
0
Create_ds/helix/helix-common/src/main/java/org/apache
Create_ds/helix/helix-common/src/main/java/org/apache/helix/ZNRecord.java
package org.apache.helix; /* * 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...
9,156
0
Create_ds/helix/helix-common/src/main/java/org/apache
Create_ds/helix/helix-common/src/main/java/org/apache/helix/ZNRecordDelta.java
package org.apache.helix; /* * 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...
9,157
0
Create_ds/helix/helix-common/src/main/java/org/apache
Create_ds/helix/helix-common/src/main/java/org/apache/helix/HelixException.java
package org.apache.helix; /* * 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...
9,158
0
Create_ds/helix/helix-common/src/main/java/org/apache
Create_ds/helix/helix-common/src/main/java/org/apache/helix/SystemPropertyKeys.java
package org.apache.helix; /* * 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...
9,159
0
Create_ds/helix/helix-common/src/main/java/org/apache/helix
Create_ds/helix/helix-common/src/main/java/org/apache/helix/constants/InstanceConstants.java
package org.apache.helix.constants; public class InstanceConstants { public static final String INSTANCE_NOT_DISABLED = "INSTANCE_NOT_DISABLED"; public enum InstanceDisabledType { CLOUD_EVENT, USER_OPERATION, DEFAULT_INSTANCE_DISABLE_TYPE } public enum InstanceOperation { EVACUATE, // Node wi...
9,160
0
Create_ds/helix/helix-common/src/main/java/org/apache/helix/manager/zk
Create_ds/helix/helix-common/src/main/java/org/apache/helix/manager/zk/serializer/PayloadSerializer.java
package org.apache.helix.manager.zk.serializer; /* * 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 Apa...
9,161
0
Create_ds/helix/helix-common/src/main/java/org/apache/helix/manager/zk
Create_ds/helix/helix-common/src/main/java/org/apache/helix/manager/zk/serializer/JacksonPayloadSerializer.java
package org.apache.helix.manager.zk.serializer; /* * 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 Apa...
9,162
0
Create_ds/helix/helix-common/src/main/java/org/apache/helix
Create_ds/helix/helix-common/src/main/java/org/apache/helix/datamodel/Snapshot.java
package org.apache.helix.datamodel; import java.util.HashMap; import java.util.Map; public abstract class Snapshot<K, V> { protected Map<K, V> _valueCache; public Snapshot() { _valueCache = new HashMap<>(); } public V getValue(K key) { return _valueCache.get(key); } public void updateValue(K k...
9,163
0
Create_ds/helix/metadata-store-directory-common/src/test/java/org/apache/helix/msdcommon
Create_ds/helix/metadata-store-directory-common/src/test/java/org/apache/helix/msdcommon/mock/TestMockMetadataStoreDirectoryServer.java
package org.apache.helix.msdcommon.mock; /* * 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 Lic...
9,164
0
Create_ds/helix/metadata-store-directory-common/src/test/java/org/apache/helix/msdcommon
Create_ds/helix/metadata-store-directory-common/src/test/java/org/apache/helix/msdcommon/constant/TestConstants.java
package org.apache.helix.msdcommon.constant; /* * 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...
9,165
0
Create_ds/helix/metadata-store-directory-common/src/test/java/org/apache/helix/msdcommon
Create_ds/helix/metadata-store-directory-common/src/test/java/org/apache/helix/msdcommon/datamodel/TestTrieRoutingData.java
package org.apache.helix.msdcommon.datamodel; /* * 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 Apach...
9,166
0
Create_ds/helix/metadata-store-directory-common/src/main/java/org/apache/helix/msdcommon
Create_ds/helix/metadata-store-directory-common/src/main/java/org/apache/helix/msdcommon/util/ZkValidationUtil.java
package org.apache.helix.msdcommon.util; /* * 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 Lic...
9,167
0
Create_ds/helix/metadata-store-directory-common/src/main/java/org/apache/helix/msdcommon
Create_ds/helix/metadata-store-directory-common/src/main/java/org/apache/helix/msdcommon/mock/MockMetadataStoreDirectoryServer.java
package org.apache.helix.msdcommon.mock; /* * 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 Lic...
9,168
0
Create_ds/helix/metadata-store-directory-common/src/main/java/org/apache/helix/msdcommon
Create_ds/helix/metadata-store-directory-common/src/main/java/org/apache/helix/msdcommon/constant/MetadataStoreRoutingConstants.java
package org.apache.helix.msdcommon.constant; /* * 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...
9,169
0
Create_ds/helix/metadata-store-directory-common/src/main/java/org/apache/helix/msdcommon
Create_ds/helix/metadata-store-directory-common/src/main/java/org/apache/helix/msdcommon/callback/RoutingDataListener.java
package org.apache.helix.msdcommon.callback; /* * 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...
9,170
0
Create_ds/helix/metadata-store-directory-common/src/main/java/org/apache/helix/msdcommon
Create_ds/helix/metadata-store-directory-common/src/main/java/org/apache/helix/msdcommon/datamodel/MetadataStoreRoutingData.java
package org.apache.helix.msdcommon.datamodel; /* * 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 Apach...
9,171
0
Create_ds/helix/metadata-store-directory-common/src/main/java/org/apache/helix/msdcommon
Create_ds/helix/metadata-store-directory-common/src/main/java/org/apache/helix/msdcommon/datamodel/TrieRoutingData.java
package org.apache.helix.msdcommon.datamodel; /* * 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 Apach...
9,172
0
Create_ds/helix/metadata-store-directory-common/src/main/java/org/apache/helix/msdcommon
Create_ds/helix/metadata-store-directory-common/src/main/java/org/apache/helix/msdcommon/exception/InvalidRoutingDataException.java
package org.apache.helix.msdcommon.exception; /* * 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 Apach...
9,173
0
Create_ds/helix/helix-admin-webapp/src/test/java/org/apache/helix
Create_ds/helix/helix-admin-webapp/src/test/java/org/apache/helix/webapp/TestHelixAdminScenariosRest.java
package org.apache.helix.webapp; /* * 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, Ve...
9,174
0
Create_ds/helix/helix-admin-webapp/src/test/java/org/apache/helix
Create_ds/helix/helix-admin-webapp/src/test/java/org/apache/helix/webapp/AdminTestBase.java
package org.apache.helix.webapp; /* * 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, Ve...
9,175
0
Create_ds/helix/helix-admin-webapp/src/test/java/org/apache/helix
Create_ds/helix/helix-admin-webapp/src/test/java/org/apache/helix/webapp/TestResetResource.java
package org.apache.helix.webapp; /* * 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, Ve...
9,176
0
Create_ds/helix/helix-admin-webapp/src/test/java/org/apache/helix
Create_ds/helix/helix-admin-webapp/src/test/java/org/apache/helix/webapp/TestResetPartitionState.java
package org.apache.helix.webapp; /* * 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, Ve...
9,177
0
Create_ds/helix/helix-admin-webapp/src/test/java/org/apache/helix
Create_ds/helix/helix-admin-webapp/src/test/java/org/apache/helix/webapp/AdminTestHelper.java
package org.apache.helix.webapp; /* * 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, Ve...
9,178
0
Create_ds/helix/helix-admin-webapp/src/test/java/org/apache/helix
Create_ds/helix/helix-admin-webapp/src/test/java/org/apache/helix/webapp/TestClusterManagementWebapp.java
package org.apache.helix.webapp; /* * 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, Ve...
9,179
0
Create_ds/helix/helix-admin-webapp/src/test/java/org/apache/helix
Create_ds/helix/helix-admin-webapp/src/test/java/org/apache/helix/webapp/TestResetInstance.java
package org.apache.helix.webapp; /* * 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, Ve...
9,180
0
Create_ds/helix/helix-admin-webapp/src/test/java/org/apache/helix
Create_ds/helix/helix-admin-webapp/src/test/java/org/apache/helix/webapp/TestDisableResource.java
package org.apache.helix.webapp; /* * 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, Ve...
9,181
0
Create_ds/helix/helix-admin-webapp/src/test/java/org/apache/helix/webapp
Create_ds/helix/helix-admin-webapp/src/test/java/org/apache/helix/webapp/resources/TestJsonParameters.java
package org.apache.helix.webapp.resources; /* * 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 L...
9,182
0
Create_ds/helix/helix-admin-webapp/src/test/java/org/apache/helix/webapp
Create_ds/helix/helix-admin-webapp/src/test/java/org/apache/helix/webapp/resources/TestResourceUtil.java
package org.apache.helix.webapp.resources; /* * 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 ...
9,183
0
Create_ds/helix/helix-admin-webapp/src/test/java/org/apache/helix/webapp
Create_ds/helix/helix-admin-webapp/src/test/java/org/apache/helix/webapp/resources/TestJobQueuesResource.java
package org.apache.helix.webapp.resources; /* * 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 L...
9,184
0
Create_ds/helix/helix-admin-webapp/src/main/java/org/apache/helix
Create_ds/helix/helix-admin-webapp/src/main/java/org/apache/helix/webapp/HelixAdminWebApp.java
package org.apache.helix.webapp; /* * 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, Ve...
9,185
0
Create_ds/helix/helix-admin-webapp/src/main/java/org/apache/helix
Create_ds/helix/helix-admin-webapp/src/main/java/org/apache/helix/webapp/RestAdminApplication.java
package org.apache.helix.webapp; /* * 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, Ve...
9,186
0
Create_ds/helix/helix-admin-webapp/src/main/java/org/apache/helix/webapp
Create_ds/helix/helix-admin-webapp/src/main/java/org/apache/helix/webapp/resources/IdealStateResource.java
package org.apache.helix.webapp.resources; /* * 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 L...
9,187
0
Create_ds/helix/helix-admin-webapp/src/main/java/org/apache/helix/webapp
Create_ds/helix/helix-admin-webapp/src/main/java/org/apache/helix/webapp/resources/ControllerResource.java
package org.apache.helix.webapp.resources; /* * 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 L...
9,188
0
Create_ds/helix/helix-admin-webapp/src/main/java/org/apache/helix/webapp
Create_ds/helix/helix-admin-webapp/src/main/java/org/apache/helix/webapp/resources/ClusterResource.java
package org.apache.helix.webapp.resources; /* * 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 L...
9,189
0
Create_ds/helix/helix-admin-webapp/src/main/java/org/apache/helix/webapp
Create_ds/helix/helix-admin-webapp/src/main/java/org/apache/helix/webapp/resources/SchedulerTasksResource.java
package org.apache.helix.webapp.resources; /* * 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 L...
9,190
0
Create_ds/helix/helix-admin-webapp/src/main/java/org/apache/helix/webapp
Create_ds/helix/helix-admin-webapp/src/main/java/org/apache/helix/webapp/resources/StateModelResource.java
package org.apache.helix.webapp.resources; /* * 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 L...
9,191
0
Create_ds/helix/helix-admin-webapp/src/main/java/org/apache/helix/webapp
Create_ds/helix/helix-admin-webapp/src/main/java/org/apache/helix/webapp/resources/ControllerStatusUpdateResource.java
package org.apache.helix.webapp.resources; /* * 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 L...
9,192
0
Create_ds/helix/helix-admin-webapp/src/main/java/org/apache/helix/webapp
Create_ds/helix/helix-admin-webapp/src/main/java/org/apache/helix/webapp/resources/ConfigResource.java
package org.apache.helix.webapp.resources; /* * 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 L...
9,193
0
Create_ds/helix/helix-admin-webapp/src/main/java/org/apache/helix/webapp
Create_ds/helix/helix-admin-webapp/src/main/java/org/apache/helix/webapp/resources/InstanceResource.java
package org.apache.helix.webapp.resources; /* * 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 L...
9,194
0
Create_ds/helix/helix-admin-webapp/src/main/java/org/apache/helix/webapp
Create_ds/helix/helix-admin-webapp/src/main/java/org/apache/helix/webapp/resources/JobQueueResource.java
package org.apache.helix.webapp.resources; /* * 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 L...
9,195
0
Create_ds/helix/helix-admin-webapp/src/main/java/org/apache/helix/webapp
Create_ds/helix/helix-admin-webapp/src/main/java/org/apache/helix/webapp/resources/JobResource.java
package org.apache.helix.webapp.resources; /* * 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 L...
9,196
0
Create_ds/helix/helix-admin-webapp/src/main/java/org/apache/helix/webapp
Create_ds/helix/helix-admin-webapp/src/main/java/org/apache/helix/webapp/resources/StatusUpdatesResource.java
package org.apache.helix.webapp.resources; /* * 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 L...
9,197
0
Create_ds/helix/helix-admin-webapp/src/main/java/org/apache/helix/webapp
Create_ds/helix/helix-admin-webapp/src/main/java/org/apache/helix/webapp/resources/ConstraintResource.java
package org.apache.helix.webapp.resources; /* * 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 L...
9,198
0
Create_ds/helix/helix-admin-webapp/src/main/java/org/apache/helix/webapp
Create_ds/helix/helix-admin-webapp/src/main/java/org/apache/helix/webapp/resources/StateModelsResource.java
package org.apache.helix.webapp.resources; /* * 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 L...
9,199