Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,759 for Forked (0.15 sec)

  1. hack/update-netparse-cve.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script replace "net" stdlib IP and CIDR parsers
    # with the ones forked in k8s.io/utils/net to parse IP addresses
    # because of the compatibility break introduced in golang 1.17
    # Reference: #100895
    # Usage: `hack/update-netparse-cve.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. manifests/addons/dashboards/lib/lib-grid.libsonnet

    local d = import 'github.com/jsonnet-libs/docsonnet/doc-util/main.libsonnet';
    
    local panelUtil = import 'github.com/grafana/grafonnet/gen/grafonnet-v11.0.0/custom/util/panel.libsonnet';
    
    // This is forked from https://grafana.github.io/grafonnet/API/util.html#obj-grid
    // to allow automatic width to fill the grid
    {
      local root = self,
    
      local gridWidth = 24,
    
      '#makeGrid':: d.func.new(
        |||
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/worker/MultiRequestWorkerProcessBuilder.java

     * limitations under the License.
     */
    
    package org.gradle.process.internal.worker;
    
    import org.gradle.internal.serialize.Serializer;
    
    /**
     * Configures and builds multi-request workers. A multi-request worker runs zero or more requests in a forked worker process.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 14:39:33 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/worker/ForkedTestClasspath.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.testing.worker;
    
    import com.google.common.collect.ImmutableList;
    import org.gradle.process.internal.worker.WorkerProcessBuilder;
    
    import java.io.File;
    import java.net.URL;
    
    /**
     * The classpath of a forked test process, which includes both the application and implementation classpaths.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. .github/workflows/maven_build_itself.yml

    # under the License.
    
    name: Can Maven build itself
    
    on: [push, pull_request]
    
    # clear all permissions for GITHUB_TOKEN
    permissions: {}
    
    jobs:
      build:
    
        # execute on any push or pull request from forked repo
        if: github.event_name == 'push' || ( github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork )
    
        strategy:
          matrix:
            os: [ubuntu-latest, windows-latest]
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 03 17:58:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/SingleUseDaemonClient.java

    import java.io.InputStream;
    import java.util.UUID;
    
    public class SingleUseDaemonClient extends DaemonClient {
        public static final String MESSAGE = "To honour the JVM settings for this build a single-use Daemon process will be forked.";
        private static final Logger LOGGER = Logging.getLogger(SingleUseDaemonClient.class);
        private final DocumentationRegistry documentationRegistry;
    
        public SingleUseDaemonClient(
            DaemonConnector connector,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/IntegrationTestTimeout.java

     * be used together with {@link spock.lang.Timeout}. It should be annotated on
     * {@link org.gradle.integtests.fixtures.AbstractIntegrationSpec}. Upon timeout,
     * all threads' stack traces of current JVM (embedded executer) or forked JVM (forking executer)
     * are printed to help us debug deadlock issues.
     */
    
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.TYPE, ElementType.METHOD})
    @ExtensionAnnotation(IntegrationTestTimeoutExtension.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. hack/verify-netparse-cve.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script checks if the "net" stdlib IP and CIDR parsers are used
    # instead of the ones forked in k8s.io/utils/net to parse IP addresses
    # because of the compatibility break introduced in golang 1.17
    # Reference: #100895
    # Usage: `hack/verify-netparse-cve.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:31 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. cmd/kubeadm/test/cmd/util.go

    limitations under the License.
    */
    
    package kubeadm
    
    import (
    	"bytes"
    	"io"
    	"os"
    	"os/exec"
    	"testing"
    
    	"github.com/pkg/errors"
    	"github.com/spf13/cobra"
    )
    
    // Forked from test/e2e/framework because the e2e framework is quite bloated
    // for our purposes here, and modified to remove undesired logging.
    
    func runCmdNoWrap(command string, args ...string) (string, string, int, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 01 12:47:03 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/process/JavaDebugOptions.java

     *
     * @since 5.6
     */
    public interface JavaDebugOptions {
    
        /**
         * Should the debug agent start in the forked process? By default, this is false.
         */
        @Input
        Property<Boolean> getEnabled();
    
        /**
         * Host address to listen on or connect to when debug is enabled. By default, no host is set.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 16 14:16:38 UTC 2022
    - 2.6K bytes
    - Viewed (0)
Back to top