This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| You are Manus, an AI agent created by the Manus team. | |
| You excel at the following tasks: | |
| 1. Information gathering, fact-checking, and documentation | |
| 2. Data processing, analysis, and visualization | |
| 3. Writing multi-chapter articles and in-depth research reports | |
| 4. Creating websites, applications, and tools | |
| 5. Using programming to solve various problems beyond development | |
| 6. Various tasks that can be accomplished using computers and the internet |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/core/src/main/scala/org/apache/spark/serializer/KryoSerializer.scala b/core/src/main/scala/org/apache/spark/serializer/KryoSerializer.scala | |
| index 7271004..cdaab59 100644 | |
| --- a/core/src/main/scala/org/apache/spark/serializer/KryoSerializer.scala | |
| +++ b/core/src/main/scala/org/apache/spark/serializer/KryoSerializer.scala | |
| @@ -30,6 +30,7 @@ import scala.util.control.NonFatal | |
| import com.esotericsoftware.kryo.{Kryo, KryoException, Serializer => KryoClassSerializer} | |
| import com.esotericsoftware.kryo.io.{Input => KryoInput, Output => KryoOutput} | |
| import com.esotericsoftware.kryo.io.{UnsafeInput => KryoUnsafeInput, UnsafeOutput => KryoUnsafeOutput} | |
| +import com.esotericsoftware.kryo.pool.{KryoCallback, KryoFactory, KryoPool} | |
| import com.esotericsoftware.kryo.serializers.{JavaSerializer => KryoJavaSerializer} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: consul | |
| # Required-Start: $local_fs $remote_fs | |
| # Required-Stop: $local_fs $remote_fs | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: S 0 1 6 | |
| # Short-Description: Consul service discovery framework | |
| # Description: Healthchecks local services and registers | |
| # them in a central consul database. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Black 0;30 Dark Gray 1;30 | |
| # Red 0;31 Light Red 1;31 | |
| # Green 0;32 Light Green 1;32 | |
| # Brown/Orange 0;33 Yellow 1;33 | |
| # Blue 0;34 Light Blue 1;34 | |
| # Purple 0;35 Light Purple 1;35 | |
| # Cyan 0;36 Light Cyan 1;36 | |
| # Light Gray 0;37 White 1;37 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| singleuser: | |
| profileList: | |
| - display_name: "Default" | |
| description: | | |
| Tubi Data Runtime | |
| default: True | |
| kubespawner_override: | |
| image: <private-docker-registry>/tubi-data-runtime | |
| node_affinity_preferred: | |
| - weight: 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/tensorboard/notebook.py b/tensorboard/notebook.py | |
| index fe0e13aa..ab774377 100644 | |
| --- a/tensorboard/notebook.py | |
| +++ b/tensorboard/notebook.py | |
| @@ -378,8 +378,17 @@ def _display_ipython(port, height, display_handle): | |
| <script> | |
| (function() { | |
| const frame = document.getElementById(%JSON_ID%); | |
| - const url = new URL("/", window.location); | |
| - url.port = %PORT%; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| singleuser: | |
| profileList: | |
| - display_name: "Default" | |
| description: | | |
| Tubi Data Runtime | |
| default: True | |
| kubespawner_override: | |
| image: <private-docker-registry>/tubi-data-runtime | |
| extra_resource_limits: | |
| nvidia.com/gpu: "0" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Volumes: | |
| home: | |
| Type: PersistentVolumeClaim (a reference to a PersistentVolumeClaim in the same namespace) | |
| ClaimName: efs-persist | |
| ReadOnly: false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| singleuser: | |
| storage: | |
| homeMountPath: '/home/tubi/notebooks/{username}' | |
| type: "static" | |
| static: | |
| pvcName: "efs-persist" | |
| subPath: 'home/{username}' | |
| extraVolumeMounts: | |
| - name: home | |
| mountPath: /home/tubi/notebooks/shared |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| auth: | |
| type: custom | |
| custom: | |
| className: oauthenticator.generic.GenericOAuthenticator | |
| config: | |
| login_service: "Okta" | |
| client_id: "{{ okta_client_id }}" | |
| client_secret: "{{ okta_client_secret }}" | |
| token_url: https://{{ tubi_okta_domain }}/oauth2/v1/token | |
| userdata_url: https://{{ tubi_okta_domain }}/oauth2/v1/userinfo |