Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 291 for cat2 (0.06 sec)

  1. src/syscall/mksysnum_plan9.sh

    # license that can be found in the LICENSE file.
    
    COMMAND="mksysnum_plan9.sh $@"
    
    cat <<EOF
    // $COMMAND
    // Code generated by the command above; DO NOT EDIT.
    
    package syscall
    
    const(
    EOF
    
    SP='[ 	]' # space or tab
    sed "s/^#define${SP}\\([A-Z0-9_][A-Z0-9_]*\\)${SP}${SP}*\\([0-9][0-9]*\\)/SYS_\\1=\\2/g" \
    	< $1 | grep -v SYS__
    
    cat <<EOF
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 459 bytes
    - Viewed (0)
  2. src/net/http/routing_tree_test.go

    		{"GET", "", "/a/b/c/d", "", nil},
    	})
    
    	// A pattern ending in a single wildcard should not match a trailing slash URL.
    	pat2 := "/a/b/{w}"
    	test(buildTree(pat2), []testCase{
    		{"GET", "", "/a/b", "", nil},
    		{"GET", "", "/a/b/", "", nil},
    		{"GET", "", "/a/b/c", pat2, []string{"c"}},
    		{"GET", "", "/a/b/c/d", "", nil},
    	})
    
    	// A pattern ending in a multi wildcard should match both URLs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. test/fixedbugs/issue12006.go

    			println("is string")
    		}
    	}
    	return nil
    }
    
    func TFooJ1() {
    	a := int32(1)
    	b := "cat"
    	c := &a
    	FooJ(a, b, c) // ERROR "a does not escape" "b does not escape" "... argument does not escape"
    }
    
    func TFooJ2() {
    	a := int32(1) // ERROR "moved to heap: a"
    	b := "cat"
    	c := &a
    	isink = FooJ(a, b, c) // ERROR "a escapes to heap" "b escapes to heap" "... argument does not escape"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 26 23:50:32 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  4. pkg/testcerts/generate-certs.sh

    # Generates the a CA cert, a server key/cert, client key/cert signed by
    # the CA.
    #
    # reference: https://github.com/kubernetes/kubernetes/blob/master/plugin/pkg/admission/webhook/gencerts.sh
    
    set -e
    
    cat > client.conf <<EOF
    [req]
    req_extensions = v3_req
    distinguished_name = req_distinguished_name
    [req_distinguished_name]
    [ v3_req ]
    basicConstraints = CA:FALSE
    keyUsage = nonRepudiation, digitalSignature, keyEncipherment
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. samples/certs/generate-workload.sh

    cp "$FINAL_DIR/leaf-workload-$sa-cert.pem" "$FINAL_DIR/workload-$sa-cert.pem"
    cat "$certchain" >> "$FINAL_DIR/workload-$sa-cert.pem"
    cp "$certchain" "$FINAL_DIR/workload-$sa-root-certs.pem"
    cat "$rootcert" >> "$FINAL_DIR/workload-$sa-root-certs.pem"
    
    echo "Generated workload-$sa-[cert|key].pem with URI SAN $san"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 07 23:57:35 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. buildscripts/rewrite-old-new.sh

    	if ! ps -p ${pid} 1>&2 >/dev/null; then
    		echo "server1 log:"
    		cat "${WORK_DIR}/server1.log"
    		echo "FAILED"
    		purge "$WORK_DIR"
    		exit 1
    	fi
    
    	if ! ./s3-check-md5 \
    		-debug \
    		-versions \
    		-access-key minio \
    		-secret-key minio123 \
    		-endpoint "http://127.0.0.1:${start_port}/" 2>&1 | grep INTACT; then
    		echo "server1 log:"
    		cat "${WORK_DIR}/server1.log"
    		echo "FAILED"
    		mkdir -p inspects
    		(
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. cluster/gce/windows/smoke-test.sh

    }
    
    linux_webserver_deployment=linux-nginx
    linux_webserver_pod_label=nginx
    linux_webserver_replicas=1
    
    function deploy_linux_webserver_pod {
      echo "Writing example deployment to $linux_webserver_deployment.yaml"
      cat <<EOF > $linux_webserver_deployment.yaml
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: $linux_webserver_deployment
      labels:
        app: $linux_webserver_pod_label
    spec:
      replicas: $linux_webserver_replicas
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/gencerts.sh

    # exists for documentation purposes.
    
    cat > server.conf << EOF
    [req]
    req_extensions = v3_req
    distinguished_name = req_distinguished_name
    [req_distinguished_name]
    [ v3_req ]
    basicConstraints = CA:FALSE
    keyUsage = nonRepudiation, digitalSignature, keyEncipherment
    extendedKeyUsage = serverAuth
    subjectAltName = @alt_names
    [alt_names]
    IP.1 = 127.0.0.1
    EOF
    
    cat > client.conf << EOF
    [req]
    req_extensions = v3_req
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 23 02:28:04 UTC 2019
    - 3.4K bytes
    - Viewed (0)
  9. tests/testdata/certs/generate.sh

    # Generates certificates used for testing
    # We generate a cert for a workload (ns=default, sa=default) and control plane
    WD=$(dirname "$0")
    WD=$(cd "$WD"; pwd)
    
    set -ex
    
    touch "${WD}/index.txt"
    
    cat > "${WD}/client.conf" <<EOF
    [req]
    req_extensions = v3_req
    distinguished_name = req_distinguished_name
    [req_distinguished_name]
    [ v3_req ]
    basicConstraints = CA:FALSE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 19:49:21 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  10. tools/certs/Makefile.k8s.mk

    		kubectl get secret istio-ca-secret -n $(ISTIO_NAMESPACE) -o "jsonpath={.data['ca-key\.pem']}" | base64 -d > $(cluster)/k8s-root-key.pem; \
    	fi
    
    k8s-root-cert.pem:
    	@cat $(cluster)/k8s-root-cert.pem > $@
    
    k8s-root-key.pem:
    	@cat $(cluster)/k8s-root-key.pem > $@
    #------------------------------------------------------------------------
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 27 13:15:29 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top