Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 81 for execIO (0.25 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.json

                      {
                        "name": "nameValue",
                        "devicePath": "devicePathValue"
                      }
                    ],
                    "livenessProbe": {
                      "exec": {
                        "command": [
                          "commandValue"
                        ]
                      },
                      "httpGet": {
                        "path": "pathValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            PomTestWrapper pom = buildPom("plugin-exec-merging-wo-version/sub");
            assertEquals(4, ((List<?>) pom.getValue("build/plugins[1]/executions")).size());
        }
    
        /* MNG-3943*/
        @Test
        void testMergeOfPluginExecutionsWhenChildAndParentUseDifferentPluginVersions() throws Exception {
            PomTestWrapper pom = buildPom("plugin-exec-merging-version-insensitive/sub");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  3. src/cmd/dist/test.go

    // run. testFlags is the list of flags to pass to the test package.
    //
    // The caller must call setupCmd on the resulting exec.Cmd to set its directory
    // and environment.
    func (opts *goTest) buildArgs(t *tester) (build, run, pkgs, testFlags []string, setupCmd func(*exec.Cmd)) {
    	run = append(run, "-count=1") // Disallow caching
    	if opts.timeout != 0 {
    		d := opts.timeout * time.Duration(t.timeoutScale)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    	if syscallExecSupported && !ownTmpDir {
    		runAtExitFuncs()
    		ctxt.execArchive(argv)
    		panic("should not get here")
    	}
    
    	// Otherwise invoke 'ar' in the usual way (fork + exec).
    	if out, err := exec.Command(argv[0], argv[1:]...).CombinedOutput(); err != nil {
    		Exitf("running %s failed: %v\n%s", argv[0], err, out)
    	}
    }
    
    func (ctxt *Link) hostlink() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

            return getProcessOperations().javaexec(action);
        }
    
        @Override
        public ExecResult exec(Closure closure) {
            return exec(configureUsing(closure));
        }
    
        @Override
        public ExecResult exec(Action<? super ExecSpec> action) {
            return getProcessOperations().exec(action);
        }
    
        @Override
        public ServiceRegistry getServices() {
            return services;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  6. src/cmd/internal/testdir/testdir_test.go

    package testdir_test
    
    import (
    	"bytes"
    	"encoding/json"
    	"errors"
    	"flag"
    	"fmt"
    	"go/build"
    	"go/build/constraint"
    	"hash/fnv"
    	"internal/testenv"
    	"io"
    	"io/fs"
    	"log"
    	"os"
    	"os/exec"
    	"path"
    	"path/filepath"
    	"regexp"
    	"runtime"
    	"slices"
    	"sort"
    	"strconv"
    	"strings"
    	"sync"
    	"testing"
    	"time"
    	"unicode"
    )
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. pkg/proxy/iptables/proxier.go

    	proxyutil "k8s.io/kubernetes/pkg/proxy/util"
    	"k8s.io/kubernetes/pkg/proxy/util/nfacct"
    	"k8s.io/kubernetes/pkg/util/async"
    	utiliptables "k8s.io/kubernetes/pkg/util/iptables"
    	utilexec "k8s.io/utils/exec"
    )
    
    const (
    	// the services chain
    	kubeServicesChain utiliptables.Chain = "KUBE-SERVICES"
    
    	// the external services chain
    	kubeExternalServicesChain utiliptables.Chain = "KUBE-EXTERNAL-SERVICES"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    | `project.mkdir(path)`
    | The Kotlin, Groovy or Java API available to your build logic.
    
    | `project.exec {}`
    | link:{javadocPath}/org/gradle/process/ExecOperations.html#exec-org.gradle.api.Action-[ExecOperations.exec {}]
    
    | `project.javaexec {}`
    | link:{javadocPath}/org/gradle/process/ExecOperations.html#javaexec-org.gradle.api.Action-[ExecOperations.javaexec {}]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                } else {
                    index.put(key, plugin);
                }
    
                Set<String> executionIds = new HashSet<>();
    
                for (PluginExecution exec : plugin.getExecutions()) {
                    if (!executionIds.add(exec.getId())) {
                        addViolation(
                                problems,
                                Severity.ERROR,
                                Version.V20,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/proxier.go

    package ipvs
    
    import (
    	"bytes"
    	"context"
    	"errors"
    	"fmt"
    	"io"
    	"net"
    	"reflect"
    	"strconv"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"time"
    
    	"k8s.io/klog/v2"
    	utilexec "k8s.io/utils/exec"
    	netutils "k8s.io/utils/net"
    
    	v1 "k8s.io/api/core/v1"
    	discovery "k8s.io/api/discovery/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/version"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
Back to top