Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 206 for regexec (0.31 sec)

  1. tests/testdata/config/rule-regex-route.yaml

    kind: DestinationRule
    metadata:
      name: regex
      namespace: testns
    spec:
      host: regex.extsvc.com
      subsets:
        - name: v1
          labels:
            version: v1
        - name: v2
          labels:
            version: v2
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: regex-route
      namespace: testns
    spec:
      hosts:
        - regex.extsvc.com
      http:
        - match:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 28 21:38:06 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/KillProcessAvailability.groovy

                //On some windowses, taskkill does not seem to work when triggered from java
                //On our CIs this works fine
                def e = TestFiles.execHandleFactory().newExec()
                        .commandLine("taskkill.exe", "/?")
                        .redirectErrorStream()
                        .workingDir(new File(".").absoluteFile) //does not matter
                        .build()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ScriptExecuter.groovy

    import org.gradle.process.internal.ExecHandle
    import org.gradle.process.internal.ExecHandleBuilder
    
    class ScriptExecuter {
        @Delegate
        ExecHandleBuilder builder = TestFiles.execHandleFactory().newExec()
    
        @Override
        ExecHandle build() {
            if (OperatingSystem.current().isWindows()) {
                def theArgs = ['/d', '/c', executable.replace('/', File.separator)] + getArgs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/DefaultOsXJavaHomeCommand.java

    import java.io.ByteArrayOutputStream;
    import java.io.File;
    import java.io.InputStreamReader;
    import java.io.Reader;
    import java.util.Collections;
    import java.util.Set;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    import java.util.stream.Collectors;
    import java.util.stream.Stream;
    
    public class DefaultOsXJavaHomeCommand implements OsXJavaHomeCommand {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. pkg/volume/flexvolume/attacher-defaults.go

    	options := make([]string, 0)
    
    	if readOnly {
    		options = append(options, "ro")
    	} else {
    		options = append(options, "rw")
    	}
    
    	diskMounter := &mount.SafeFormatAndMount{Interface: mounter, Exec: a.plugin.host.GetExec(a.plugin.GetPluginName())}
    
    	return diskMounter.FormatAndMount(devicePath, deviceMountPath, volSourceFSType, options)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 17 04:51:24 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  6. pkg/volume/fc/attacher.go

    	}
    	if mountArgs.SELinuxLabel != "" {
    		options = volumeutil.AddSELinuxMountOption(options, mountArgs.SELinuxLabel)
    	}
    	if notMnt {
    		diskMounter := &mount.SafeFormatAndMount{Interface: mounter, Exec: attacher.host.GetExec(fcPluginName)}
    		mountOptions := volumeutil.MountOptionFromSpec(spec, options...)
    		err = diskMounter.FormatAndMount(devicePath, deviceMountPath, volumeSource.FSType, mountOptions)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 31 12:02:51 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  7. callbacks/callbacks.go

    	rowCallback := db.Callback().Row()
    	rowCallback.Register("gorm:row", RowQuery)
    	rowCallback.Clauses = config.QueryClauses
    
    	rawCallback := db.Callback().Raw()
    	rawCallback.Register("gorm:raw", RawExec)
    	rawCallback.Clauses = config.QueryClauses
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Oct 27 23:56:55 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  8. hack/verify-description.sh

        \)
    }
    
    if [[ $# -eq 0 ]]; then
      versioned_api_files=$(find_files) || true
    else
      versioned_api_files="${*}"
    fi
    
    # find_files had incorrect regexes which led to genswaggertypedocs never being invoked.
    # This led to many types.go have missing descriptions.
    # These types.go files are listed in hack/.descriptions_failures
    # Check that the file is in alphabetical order
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. cni/pkg/util/executil.go

    package util
    
    import (
    	"bytes"
    	"errors"
    	"os/exec"
    	"strings"
    
    	"istio.io/istio/pkg/log"
    )
    
    type ExecList struct {
    	Cmd  string
    	Args []string
    }
    
    func NewExec(cmd string, args []string) *ExecList {
    	return &ExecList{
    		Cmd:  cmd,
    		Args: args,
    	}
    }
    
    func ExecuteOutput(cmd string, args ...string) (string, error) {
    	externalCommand := exec.Command(cmd, args...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/jpms/execution/JavaModuleExecutionIntegrationTest.groovy

            given:
            buildFile << """
                interface Services {
                    @javax.inject.Inject ExecOperations getExec()
                }
    
                task run {
                    dependsOn jar
                    def execOperations = project.objects.newInstance(Services).exec
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 8.6K bytes
    - Viewed (0)
Back to top