Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 494 for dstname (0.15 sec)

  1. bin/init.sh

    #   $2: The full path of the output binary.
    #   $3: Non-versioned name to use
    function download_envoy_if_necessary () {
      if [[ ! -f "$2" ]] ; then
        # Enter the output directory.
        mkdir -p "$(dirname "$2")"
        pushd "$(dirname "$2")"
    
        # Download and extract the binary to the output directory.
        echo "Downloading ${SIDECAR}: $1 to $2"
        time ${DOWNLOAD_COMMAND} --header "${AUTH_HEADER:-}" "$1" |\
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 19:11:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. security/pkg/k8s/chiron/utils.go

    // 1. Generate a CSR
    // 2. Call SignCSRK8s to finish rest of the flow
    func GenKeyCertK8sCA(client clientset.Interface, dnsName,
    	caFilePath string, signerName string, approveCsr bool, requestedLifetime time.Duration,
    ) ([]byte, []byte, []byte, error) {
    	// 1. Generate a CSR
    	options := util.CertOptions{
    		Host:       dnsName,
    		RSAKeySize: keySize,
    		IsDualUse:  false,
    		PKCS8Key:   false,
    	}
    	csrPEM, keyPEM, err := util.GenCSR(options)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 18:11:22 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. pkg/kubelet/container/os.go

    // an error.
    func (RealOS) Chmod(path string, perm os.FileMode) error {
    	return os.Chmod(path, perm)
    }
    
    // Hostname will call os.Hostname to return the hostname.
    func (RealOS) Hostname() (name string, err error) {
    	return os.Hostname()
    }
    
    // Chtimes will call os.Chtimes to change the atime and mtime of the path
    func (RealOS) Chtimes(path string, atime time.Time, mtime time.Time) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 30 03:35:26 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  4. operator/scripts/run_update_branch.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    set -x
    set -e
    
    WD=$(dirname "$0")
    WD=$(cd "$WD"; pwd)
    ROOT=$(dirname "$WD")
    
    MANIFESTS_DIR="${ROOT}/../manifests"
    
    function update_branch() {
        local FROM="${1}"
        local TO="${2}"
    
        if [ "${FROM}" != "${TO}" ]; then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 14 23:24:30 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  5. pkg/config/schema/kind/resources.gen.go

    	case CertificateSigningRequest:
    		return "CertificateSigningRequest"
    	case ConfigMap:
    		return "ConfigMap"
    	case CustomResourceDefinition:
    		return "CustomResourceDefinition"
    	case DNSName:
    		return "DNSName"
    	case DaemonSet:
    		return "DaemonSet"
    	case Deployment:
    		return "Deployment"
    	case DestinationRule:
    		return "DestinationRule"
    	case EndpointSlice:
    		return "EndpointSlice"
    	case Endpoints:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 07:19:38 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/platform/BinaryNativePlatformIntegrationTest.groovy

            if (OperatingSystem.current().windows || Native.get(SystemInfo).architecture == SystemInfo.Architecture.i386) {
                return [name: "x86", altName: "i386"]
            }
            return [name: "x86-64", altName: "amd64"]
        }
    
        @ToBeFixedForConfigurationCache
        def "build binary for a default target platform"() {
            given:
            def arch = currentArch()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  7. src/main/assemblies/files/fess

      ls=`ls -ld "$SCRIPT"`
      # Drop everything prior to ->
      link=`expr "$ls" : '.*-> \(.*\)$'`
      if expr "$link" : '/.*' > /dev/null; then
        SCRIPT="$link"
      else
        SCRIPT=`dirname "$SCRIPT"`/"$link"
      fi
    done
    
    # determine fess home
    FESS_HOME=`dirname "$SCRIPT"`/..
    
    # make FESS_HOME absolute
    FESS_HOME=`cd "$FESS_HOME"; pwd`
    
    
    # If an include wasn't specified in the environment, then search for one...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. tensorflow/cc/framework/fuzzing/op_fuzzing.bzl

                "//tensorflow/cc/framework/fuzzing:cc_op_fuzz_gen_main",
                op_def_src,
            ] + kernel_deps,
        )
    
        # Add relevant locations to look for api_defs.
        api_def_src_locations = ",".join(["$$(dirname $$(echo $(locations " + api_def_src + ") | cut -d\" \" -f1))" for api_def_src in api_def_srcs])
    
        out_fuzz_files = [op_name + "_fuzz.cc" for op_name in op_names]
        native.genrule(
            name = name + "_genrule",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 07 19:14:57 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  9. dbflute_fess/manage.sh

    #!/bin/bash
    
    cd `dirname $0`
    . ./_project.sh
    
    FIRST_ARG=$1
    SECOND_ARG=$2
    
    sh $DBFLUTE_HOME/etc/cmd/_df-manage.sh $MY_PROPERTIES_PATH $FIRST_ARG $SECOND_ARG
    taskReturnCode=$?
    
    if [ $taskReturnCode -ne 0 ];then
      exit $taskReturnCode;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 04 22:46:31 UTC 2015
    - 236 bytes
    - Viewed (0)
  10. .travis/run.sh

    #!/bin/bash
    
    cd `dirname $0`
    cd ..
    BASE_DIR=`pwd`
    LOG_FILE=$BASE_DIR/test.log
    
    mvn test > $LOG_FILE 2>&1
    ret=$?
    
    if [ $ret != 0 ] ; then
      for f in `find $BASE_DIR -type f | grep surefire-reports | grep -v /TEST-` ; do
        cat $f
      done
    fi
    
    tail -n1000 $LOG_FILE
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Feb 02 08:45:33 UTC 2019
    - 273 bytes
    - Viewed (0)
Back to top