Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 241 for cat1 (0.04 sec)

  1. samples/health-check/liveness-command.yaml

            image: registry.k8s.io/busybox
            args:
            - /bin/sh
            - -c
            - touch /tmp/healthy; sleep 3600
            livenessProbe:
              exec:
                command:
                - cat
                - /tmp/healthy
              initialDelaySeconds: 5
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 26 14:35:29 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/ReadelfBinaryInfoTest.groovy

    Symbol table '.symtab' contains 53 entries:
       Num:    Value          Size Type    Bind   Vis      Ndx Name
         0: 0000000000000000     0 NOTYPE  LOCAL  DEFAULT  UND
         1: 0000000000000000     0 FILE    LOCAL  DEFAULT  ABS crt1.o
         2: 000000000040037c    32 OBJECT  LOCAL  DEFAULT    4 __abi_tag
         3: 0000000000000000     0 FILE    LOCAL  DEFAULT  ABS greeter.cpp
         4: 00000000004010e0    11 FUNC    LOCAL  DEFAULT   15 _GLOBAL__sub_I_g[...]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. hack/print-workspace-status.sh

    # instead of volatile-status.txt.
    # Stamped rules will be retriggered by changes to stable-status.txt, but not by
    # changes to volatile-status.txt.
    # IMPORTANT: the camelCase vars should match the lists in hack/lib/version.sh
    cat <<EOF
    STABLE_BUILD_GIT_COMMIT ${KUBE_GIT_COMMIT-}
    STABLE_BUILD_SCM_STATUS ${KUBE_GIT_TREE_STATE-}
    STABLE_BUILD_SCM_REVISION ${KUBE_GIT_VERSION-}
    STABLE_BUILD_MAJOR_VERSION ${KUBE_GIT_MAJOR-}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 06 11:19:29 UTC 2022
    - 2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/work_init_toolchain.txt

    stderr '^go: m1_22_0'${/}'go.mod requires go >= 1.22.0 \(running go 1.21; GOTOOLCHAIN=local\)$'
    env GOTOOLCHAIN=auto
    go work init ./m1_22_0
    stderr '^go: m1_22_0'${/}'go.mod requires go >= 1.22.0; switching to go1.22.9$'
    cat go.work
    grep '^go 1.22.9$' go.work
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. src/packaging/deb/init.d/fess

    	return=$?
    	if [ $return -eq 0 ]; then
    		i=0
    		timeout=10
    		# Wait for the process to be properly started before exiting
    		until { kill -0 `cat "$PID_FILE"`; } >/dev/null 2>&1
    		do
    			sleep 1
    			i=$(($i + 1))
    			if [ $i -gt $timeout ]; then
    				log_end_msg 1
    				exit 1
    			fi
    		done
    	fi
    	log_end_msg $return
    	exit $return
    	;;		
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/tls/HostnameVerifierTest.kt

        assertThat(verifier.verify("\u82b1\u5b50.bar.com", session)).isFalse()
        assertThat(verifier.verify("a.b.bar.com", session)).isFalse()
      }
    
      @Test fun subjectAltUsesLocalDomainAndIp() {
        // cat cert.cnf
        // [req]
        // distinguished_name=distinguished_name
        // req_extensions=req_extensions
        // x509_extensions=x509_extensions
        // [distinguished_name]
        // [req_extensions]
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  7. src/math/big/rat_test.go

    		if !ok {
    			continue
    		}
    		s := x.Sign()
    		e := x.Cmp(zero)
    		if s != e {
    			t.Errorf("got %d; want %d for z = %v", s, e, &x)
    		}
    	}
    }
    
    var ratCmpTests = []struct {
    	rat1, rat2 string
    	out        int
    }{
    	{"0", "0/1", 0},
    	{"1/1", "1", 0},
    	{"-1", "-2/2", 0},
    	{"1", "0", 1},
    	{"0/1", "1/1", -1},
    	{"-5/1434770811533343057144", "-5/1434770811533343057145", -1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 07 00:15:59 UTC 2022
    - 18.9K bytes
    - Viewed (0)
  8. samples/open-telemetry/als/README.md

    ```bash
    istioctl install --set profile=demo -y
    ```
    
    Next, add a Telemetry resource that tells Istio to send access logs to the OpenTelemetry collector.
    
    ```bash
    cat <<EOF | kubectl apply -n istio-system -f -
    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: mesh-default
      namespace: istio-system
    spec:
      accessLogging:
        - providers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 18 16:38:12 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. common/scripts/fix_copyright_banner.sh

    set -e
    
    WD=$(dirname "$0")
    WD=$(cd "$WD"; pwd)
    
    for fn in "$@"; do
      if ! grep -L -q -e "Apache License, Version 2" -e "Copyright" "${fn}"; then
        if [[ "${fn}" == *.go || "${fn}" == *.rs ]]; then
          newfile=$(cat "${WD}/copyright-banner-go.txt" "${fn}")
          echo "${newfile}" > "${fn}"
          echo "Fixing license: ${fn}"
        else
          echo "Cannot fix license: ${fn}. Unknown file type"
        fi
      fi
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 17 04:35:57 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/ReadelfBinaryInfo.groovy

                if (line.length > 7 && line[3] == "FILE") {
                    def name = line[7]
                    // These are objects added by GCC or Swift toolchains
                    if (!(name in ["crt1.o", "crtstuff.c", "SwiftRT-ELF.cpp"])) {
                        def type = 'F' as char
                        symbols.add(new Symbol(name, type, false))
                    }
                }
            }
            return symbols
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 15:17:55 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top