repo stringlengths 7 64 | file_url stringlengths 81 338 | file_path stringlengths 5 257 | content stringlengths 0 32.8k | language stringclasses 1
value | license stringclasses 7
values | commit_sha stringlengths 40 40 | retrieved_at stringdate 2026-01-04 15:25:31 2026-01-05 01:50:38 | truncated bool 2
classes |
|---|---|---|---|---|---|---|---|---|
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/portal/data/models/route.tsx | frontend/src/routes/portal/data/models/route.tsx | import { Outlet, createFileRoute } from '@tanstack/react-router'
import { t } from 'i18next'
export const Route = createFileRoute('/portal/data/models')({
component: RouteComponent,
loader: () => {
return {
crumb: t('navigation.models'),
}
},
})
function RouteComponent() {
return <Outlet />
}
| typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/portal/data/models/$id.tsx | frontend/src/routes/portal/data/models/$id.tsx | import { createFileRoute } from '@tanstack/react-router'
/**
* Copyright 2025 RAIDS Lab
*
* 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... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/portal/data/models/downloads/index.tsx | frontend/src/routes/portal/data/models/downloads/index.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/portal/data/models/downloads/$id.tsx | frontend/src/routes/portal/data/models/downloads/$id.tsx | import { createFileRoute } from '@tanstack/react-router'
import { useState } from 'react'
import { DetailPageSearch, detailValidateSearch } from '@/components/layout/detail-page'
import { ModelDownloadDetail } from '@/components/model/model-download-detail'
export const Route = createFileRoute('/portal/data/models/do... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/portal/overview/$node.tsx | frontend/src/routes/portal/overview/$node.tsx | import { createFileRoute } from '@tanstack/react-router'
import { detailLinkOptions, detailValidateSearch } from '@/components/layout/detail-page'
import NodeDetail from '@/components/node/node-detail'
export const Route = createFileRoute('/portal/overview/$node')({
validateSearch: detailValidateSearch,
loader: (... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/portal/overview/index.tsx | frontend/src/routes/portal/overview/index.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/portal/overview/route.tsx | frontend/src/routes/portal/overview/route.tsx | import { Outlet, createFileRoute } from '@tanstack/react-router'
import { t } from 'i18next'
export const Route = createFileRoute('/portal/overview')({
component: RouteComponent,
loader: () => {
return {
crumb: t('navigation.platformFullName'),
}
},
})
function RouteComponent() {
return <Outlet ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/index.tsx | frontend/src/routes/admin/index.tsx | import { Navigate, createFileRoute } from '@tanstack/react-router'
export const Route = createFileRoute('/admin/')({
component: RouteComponent,
})
function RouteComponent() {
return <Navigate to="/admin/cluster/nodes" replace />
}
| typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/route.tsx | frontend/src/routes/admin/route.tsx | import { useQuery } from '@tanstack/react-query'
// [新增]
import { Outlet, createFileRoute, redirect, useLocation } from '@tanstack/react-router'
import {
AlarmClockIcon,
BarChartBigIcon,
BoxIcon,
ClipboardCheckIcon,
DatabaseIcon,
FlaskConicalIcon,
FolderIcon,
GpuIcon,
ServerIcon,
SettingsIcon,
Use... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/cronjobs/index.tsx | frontend/src/routes/admin/cronjobs/index.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | true |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/cronjobs/-components/cronjob-records-table.tsx | frontend/src/routes/admin/cronjobs/-components/cronjob-records-table.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/cronjobs/-components/cronjob-record-status.tsx | frontend/src/routes/admin/cronjobs/-components/cronjob-record-status.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/jobs/index.tsx | frontend/src/routes/admin/jobs/index.tsx | import { createFileRoute } from '@tanstack/react-router'
import AdminJobOverview from '../../../components/job/overview/admin-jobs'
export const Route = createFileRoute('/admin/jobs/')({
component: RouteComponent,
})
function RouteComponent() {
return <AdminJobOverview />
}
| typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/jobs/route.tsx | frontend/src/routes/admin/jobs/route.tsx | import { Outlet, createFileRoute } from '@tanstack/react-router'
import { t } from 'i18next'
export const Route = createFileRoute('/admin/jobs')({
component: RouteComponent,
loader: () => ({ crumb: t('navigation.jobManagement') }),
})
function RouteComponent() {
return <Outlet />
}
| typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/jobs/$name.tsx | frontend/src/routes/admin/jobs/$name.tsx | import { createFileRoute } from '@tanstack/react-router'
import BaseCore from '@/components/job/detail'
import { detailLinkOptions, detailValidateSearch } from '@/components/layout/detail-page'
export const Route = createFileRoute('/admin/jobs/$name')({
validateSearch: detailValidateSearch,
component: RouteCompon... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/jobs/-components/duration-dialog.tsx | frontend/src/routes/admin/jobs/-components/duration-dialog.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/env/images/index.tsx | frontend/src/routes/admin/env/images/index.tsx | import { createFileRoute } from '@tanstack/react-router'
import { t } from 'i18next'
/**
* Copyright 2025 RAIDS Lab
*
* 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... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/env/registry/index.tsx | frontend/src/routes/admin/env/registry/index.tsx | import { createFileRoute } from '@tanstack/react-router'
import { KanikoListTable } from '@/components/image/registry'
import { apiAdminDeleteKanikoList, apiAdminListKaniko } from '@/services/api/admin/imagepack'
export const Route = createFileRoute('/admin/env/registry/')({
component: RouteComponent,
})
function... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/env/registry/route.tsx | frontend/src/routes/admin/env/registry/route.tsx | import { Outlet, createFileRoute } from '@tanstack/react-router'
import { t } from 'i18next'
export const Route = createFileRoute('/admin/env/registry')({
component: RouteComponent,
loader: () => {
return {
crumb: t('navigation.imageCreation'),
back: true, // history back when clicking this breadcr... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/env/registry/$name.tsx | frontend/src/routes/admin/env/registry/$name.tsx | import { createFileRoute } from '@tanstack/react-router'
import RegistryDetail from '@/components/image/registry/registry-detail'
import { detailLinkOptions, detailValidateSearch } from '@/components/layout/detail-page'
import NotFound from '@/components/placeholder/not-found'
import { queryBuildDetail } from '@/serv... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/gpu-analysis/index.tsx | frontend/src/routes/admin/gpu-analysis/index.tsx | import { createFileRoute } from '@tanstack/react-router'
import GpuAnalysisOverview from './-components/gpu-analysis-table'
export const Route = createFileRoute('/admin/gpu-analysis/')({
component: Component,
})
function Component() {
return <GpuAnalysisOverview />
}
| typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/gpu-analysis/route.tsx | frontend/src/routes/admin/gpu-analysis/route.tsx | import { Outlet, createFileRoute } from '@tanstack/react-router'
import { t } from 'i18next'
export const Route = createFileRoute('/admin/gpu-analysis')({
component: RouteComponent,
// 设置面包屑导航名称,请确保在 i18n 文件中添加了 'navigation.gpuAnalysis'
loader: () => ({ crumb: t('navigation.gpuAnalysis') }),
})
function RouteCo... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/gpu-analysis/-components/gpu-analysis-table.tsx | frontend/src/routes/admin/gpu-analysis/-components/gpu-analysis-table.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/files/$.tsx | frontend/src/routes/admin/files/$.tsx | import { createFileRoute } from '@tanstack/react-router'
import FileSystem from '@/components/file/file-system-table'
import { apiGetAdminFiles } from '@/services/api/file'
export const Route = createFileRoute('/admin/files/$')({
component: RouteComponent,
})
function RouteComponent() {
const path = Route.usePa... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/more/version.tsx | frontend/src/routes/admin/more/version.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/more/index.tsx | frontend/src/routes/admin/more/index.tsx | import { zodResolver } from '@hookform/resolvers/zod'
import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query'
import { createFileRoute } from '@tanstack/react-router'
import { t } from 'i18next'
import { useEffect } from 'react'
import { useForm } from 'react-hook-form'
import { useTranslation } f... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/more/-components/llm-settings.tsx | frontend/src/routes/admin/more/-components/llm-settings.tsx | import { BotIcon, Loader2Icon, RotateCcwIcon, SaveIcon } from 'lucide-react'
import { UseFormReturn } from 'react-hook-form'
import { useTranslation } from 'react-i18next'
import { z } from 'zod'
// 引入 AlertDialog 组件
import {
AlertDialog,
AlertDialogAction,
AlertDialogCancel,
AlertDialogContent,
AlertDialogD... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/more/-components/gpu-analysis.tsx | frontend/src/routes/admin/more/-components/gpu-analysis.tsx | import { CheckCircle2Icon, GpuIcon, Loader2Icon, UnplugIcon } from 'lucide-react'
import { useTranslation } from 'react-i18next'
import { CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'
import { Label } from '@/components/ui/label'
import { Switch } from '@/components/ui/switch'
inte... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/more/-components/basic-settings.tsx | frontend/src/routes/admin/more/-components/basic-settings.tsx | import { zodResolver } from '@hookform/resolvers/zod'
import { useAtom } from 'jotai'
import { FileCogIcon } from 'lucide-react'
import { useForm } from 'react-hook-form'
import { useTranslation } from 'react-i18next'
import { toast } from 'sonner'
import { z } from 'zod'
import { Button } from '@/components/ui/button... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/more/orders/index.tsx | frontend/src/routes/admin/more/orders/index.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/more/orders/route.tsx | frontend/src/routes/admin/more/orders/route.tsx | import { Outlet, createFileRoute } from '@tanstack/react-router'
import { t } from 'i18next'
export const Route = createFileRoute('/admin/more/orders')({
component: RouteComponent,
loader: () => {
return {
crumb: t('navigation.approvalOrder'),
}
},
})
function RouteComponent() {
return <Outlet /... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/more/orders/$id.tsx | frontend/src/routes/admin/more/orders/$id.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/monitor/idle.tsx | frontend/src/routes/admin/monitor/idle.tsx | import { createFileRoute } from '@tanstack/react-router'
import { t } from 'i18next'
import ResourseOverview from '@/components/monitors/idle-monitor'
export const Route = createFileRoute('/admin/monitor/idle')({
component: RouteComponent,
loader: () => {
return {
crumb: t('navigation.freeResources'),
... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/monitor/network.tsx | frontend/src/routes/admin/monitor/network.tsx | import { createFileRoute } from '@tanstack/react-router'
import { t } from 'i18next'
import NetworkOverview from '@/components/monitors/network-monitor'
export const Route = createFileRoute('/admin/monitor/network')({
component: RouteComponent,
loader: () => {
return {
crumb: t('navigation.networkMonito... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/monitor/gpu.tsx | frontend/src/routes/admin/monitor/gpu.tsx | import { createFileRoute } from '@tanstack/react-router'
import { t } from 'i18next'
import NvidiaOverview from '@/components/monitors/nvidia-monitor'
export const Route = createFileRoute('/admin/monitor/gpu')({
component: RouteComponent,
loader: () => ({ crumb: t('navigation.gpuMonitoring') }),
})
function Rout... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/accounts/index.tsx | frontend/src/routes/admin/accounts/index.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/accounts/route.tsx | frontend/src/routes/admin/accounts/route.tsx | import { Outlet, createFileRoute } from '@tanstack/react-router'
import { t } from 'i18next'
export const Route = createFileRoute('/admin/accounts')({
component: RouteComponent,
loader: () => ({ crumb: t('navigation.accountManagement') }),
})
function RouteComponent() {
return <Outlet />
}
| typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/accounts/$id.tsx | frontend/src/routes/admin/accounts/$id.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/accounts/-components/account-form-component.tsx | frontend/src/routes/admin/accounts/-components/account-form-component.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/accounts/-components/account-quota.tsx | frontend/src/routes/admin/accounts/-components/account-quota.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/accounts/-components/account-table.tsx | frontend/src/routes/admin/accounts/-components/account-table.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/accounts/-components/account-form.ts | frontend/src/routes/admin/accounts/-components/account-form.ts | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/users/index.tsx | frontend/src/routes/admin/users/index.tsx | import { zodResolver } from '@hookform/resolvers/zod'
import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query'
import { createFileRoute } from '@tanstack/react-router'
import { ColumnDef } from '@tanstack/react-table'
import { useAtomValue } from 'jotai'
import { EllipsisVerticalIcon as DotsHorizon... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/users/route.tsx | frontend/src/routes/admin/users/route.tsx | import { Outlet, createFileRoute } from '@tanstack/react-router'
import { t } from 'i18next'
export const Route = createFileRoute('/admin/users')({
component: RouteComponent,
loader: () => {
return {
crumb: t('navigation.userManagement'),
}
},
})
function RouteComponent() {
return <Outlet />
}
| typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/users/$name.tsx | frontend/src/routes/admin/users/$name.tsx | import { createFileRoute } from '@tanstack/react-router'
import { detailLinkOptions, detailValidateSearch } from '@/components/layout/detail-page'
import UserDetail from '@/components/user'
export const Route = createFileRoute('/admin/users/$name')({
validateSearch: detailValidateSearch,
component: RouteComponent... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/cluster/nodes/$node.tsx | frontend/src/routes/admin/cluster/nodes/$node.tsx | import { createFileRoute } from '@tanstack/react-router'
import { detailLinkOptions, detailValidateSearch } from '@/components/layout/detail-page'
import NodeDetail from '@/components/node/node-detail'
export const Route = createFileRoute('/admin/cluster/nodes/$node')({
validateSearch: detailValidateSearch,
loade... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/cluster/nodes/index.tsx | frontend/src/routes/admin/cluster/nodes/index.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/cluster/nodes/route.tsx | frontend/src/routes/admin/cluster/nodes/route.tsx | import { Outlet, createFileRoute } from '@tanstack/react-router'
import { t } from 'i18next'
export const Route = createFileRoute('/admin/cluster/nodes')({
loader: () => ({ crumb: t('navigation.nodeManagement') }),
component: RouteComponent,
})
function RouteComponent() {
return <Outlet />
}
| typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/cluster/nodes/-components/account-list.tsx | frontend/src/routes/admin/cluster/nodes/-components/account-list.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/cluster/resources/index.tsx | frontend/src/routes/admin/cluster/resources/index.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/cluster/resources/route.tsx | frontend/src/routes/admin/cluster/resources/route.tsx | import { Outlet, createFileRoute } from '@tanstack/react-router'
import { t } from 'i18next'
export const Route = createFileRoute('/admin/cluster/resources')({
loader: () => ({ crumb: t('navigation.resourceManagement') }),
component: RouteComponent,
})
function RouteComponent() {
return <Outlet />
}
| typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/cluster/resources/-components/form.tsx | frontend/src/routes/admin/cluster/resources/-components/form.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/data/index.tsx | frontend/src/routes/admin/data/index.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/data/route.tsx | frontend/src/routes/admin/data/route.tsx | import { Outlet, createFileRoute } from '@tanstack/react-router'
import { t } from 'i18next'
export const Route = createFileRoute('/admin/data')({
component: RouteComponent,
loader: () => ({ crumb: t('navigation.dataManagement') }),
})
function RouteComponent() {
return <Outlet />
}
| typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/admin/data/$id.tsx | frontend/src/routes/admin/data/$id.tsx | import { createFileRoute } from '@tanstack/react-router'
/**
* Copyright 2025 RAIDS Lab
*
* 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... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/ingress/webide.$name.tsx | frontend/src/routes/ingress/webide.$name.tsx | import { useMutation, useQuery, useSuspenseQuery } from '@tanstack/react-query'
import { createFileRoute, useNavigate } from '@tanstack/react-router'
import { ExternalLink, RefreshCw } from 'lucide-react'
import { ReactNode, useEffect, useState } from 'react'
import { useTranslation } from 'react-i18next'
import { toas... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/ingress/jupyter.$name.tsx | frontend/src/routes/ingress/jupyter.$name.tsx | import { useMutation, useSuspenseQuery } from '@tanstack/react-query'
import { createFileRoute, useNavigate } from '@tanstack/react-router'
import ky, { HTTPError } from 'ky'
import { useEffect, useState } from 'react'
import { useTranslation } from 'react-i18next'
import { toast } from 'sonner'
import {
AlertDialog... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/routes/ingress/-components/floating-ball.tsx | frontend/src/routes/ingress/-components/floating-ball.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/custom/time-distance.tsx | frontend/src/components/custom/time-distance.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/custom/warning-alert.tsx | frontend/src/components/custom/warning-alert.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/custom/select-box.tsx | frontend/src/components/custom/select-box.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/icon/loading-circle-icon.tsx | frontend/src/components/icon/loading-circle-icon.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/icon/jupyter-icon.tsx | frontend/src/components/icon/jupyter-icon.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/icon/code-server-icon.tsx | frontend/src/components/icon/code-server-icon.tsx | import { SVGProps } from 'react'
const CodeServerIcon = (props: SVGProps<SVGSVGElement>) => (
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 192 192" fill="none" {...props}>
<path
d="M55.26 48c31.992 0 49.927 16.091 50.533 39.776l-27.63.9C77.436 75.548 66.47 66.923 55.26 67.18c-15.39.321-26.782 11.19... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/icon/crater-text.tsx | frontend/src/components/icon/crater-text.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/icon/crater-icon.tsx | frontend/src/components/icon/crater-icon.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/image/images/delete-dialog.tsx | frontend/src/components/image/images/delete-dialog.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/image/images/arch-dialog.tsx | frontend/src/components/image/images/arch-dialog.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/image/images/tags-dialog.tsx | frontend/src/components/image/images/tags-dialog.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/image/images/share-image-sheet.tsx | frontend/src/components/image/images/share-image-sheet.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/image/images/rename-dialog.tsx | frontend/src/components/image/images/rename-dialog.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/image/images/index.tsx | frontend/src/components/image/images/index.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/image/images/valid-dialog.tsx | frontend/src/components/image/images/valid-dialog.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/image/images/status-dialog.tsx | frontend/src/components/image/images/status-dialog.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/image/images/upload-form.tsx | frontend/src/components/image/images/upload-form.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/image/registry/dockerfile-editor.tsx | frontend/src/components/image/registry/dockerfile-editor.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/image/registry/pip-apt-sheet.tsx | frontend/src/components/image/registry/pip-apt-sheet.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/image/registry/project-detail.tsx | frontend/src/components/image/registry/project-detail.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/image/registry/envd-raw-sheet.tsx | frontend/src/components/image/registry/envd-raw-sheet.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/image/registry/index.tsx | frontend/src/components/image/registry/index.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/image/registry/envd-sheet.tsx | frontend/src/components/image/registry/envd-sheet.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/image/registry/dockerfile-sheet.tsx | frontend/src/components/image/registry/dockerfile-sheet.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/image/registry/user-harbor-credentials-dialog.tsx | frontend/src/components/image/registry/user-harbor-credentials-dialog.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/image/registry/cuda-base-image-sheet.tsx | frontend/src/components/image/registry/cuda-base-image-sheet.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/image/registry/registry-detail.tsx | frontend/src/components/image/registry/registry-detail.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/sheet/sandwich-sheet.tsx | frontend/src/components/sheet/sandwich-sheet.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/file/folder-navigation.tsx | frontend/src/components/file/folder-navigation.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/file/file-system-table.tsx | frontend/src/components/file/file-system-table.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/file/unselected-users.tsx | frontend/src/components/file/unselected-users.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/file/data-update-form.tsx | frontend/src/components/file/data-update-form.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/file/file-size.tsx | frontend/src/components/file/file-size.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/file/data-view.tsx | frontend/src/components/file/data-view.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/file/file-select-dialog.tsx | frontend/src/components/file/file-select-dialog.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/file/data-detail.tsx | frontend/src/components/file/data-detail.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/file/file-select.tsx | frontend/src/components/file/file-select.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/file/file-upload.tsx | frontend/src/components/file/file-upload.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/file/unselected-accounts.tsx | frontend/src/components/file/unselected-accounts.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/file/data-create-form.tsx | frontend/src/components/file/data-create-form.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/file/lazy-file-tree.tsx | frontend/src/components/file/lazy-file-tree.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
raids-lab/crater | https://github.com/raids-lab/crater/blob/15d5fd1a4c8474310b1cbe7e46c6b85af054e437/frontend/src/components/file/file-download-progress.tsx | frontend/src/components/file/file-download-progress.tsx | /**
* Copyright 2025 RAIDS Lab
*
* 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 ... | typescript | Apache-2.0 | 15d5fd1a4c8474310b1cbe7e46c6b85af054e437 | 2026-01-05T05:00:16.720559Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.