Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 241 for cat1 (0.06 sec)

  1. docs/distributed/distributed-from-config-file.sh

    ./mc ready minio1
    ./mc ready minio3
    
    ./mc mb minio1/testbucket
    # copy large upload to newbucket on minio1
    truncate -s 17M lrgfile
    expected_checksum=$(cat ./lrgfile | md5sum)
    
    ./mc cp ./lrgfile minio1/testbucket
    
    actual_checksum=$(./mc cat minio3/testbucket/lrgfile | md5sum)
    
    if [ "${expected_checksum}" != "${actual_checksum}" ]; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/tests/control_flow.mlir

    // CHECK-NEXT: %[[CAST1:.*]] = "tfr.cast"(%arg1) : (tensor<2x3xf32>) -> !tfr.tensor
    // CHECK-NEXT: %[[CAST2:.*]] = "tfr.cast"(%arg2) : (tensor<2x3xf32>) -> !tfr.tensor
    // CHECK-NEXT: %[[EX0:.*]] = tfr.call @tf__expand_dims(%[[CAST0]], %[[AXIS]]) : (!tfr.tensor, i32) -> !tfr.tensor
    // CHECK-NEXT: %[[EX1:.*]] = tfr.call @tf__expand_dims(%[[CAST1]], %[[AXIS]]) : (!tfr.tensor, i32) -> !tfr.tensor
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 10:58:25 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  3. hack/verify-govulncheck.sh

    govulncheck -scan module ./... > "${KUBE_TEMP}/head.txt"
    pushd "${WORKTREE}" >/dev/null
      govulncheck -scan module ./... > "${KUBE_TEMP}/pr-base.txt"
    popd >/dev/null
    
    echo -e "\n HEAD: $(cat "${KUBE_TEMP}"/head.txt)" 
    echo -e "\n PR_BASE: $(cat "${KUBE_TEMP}/pr-base.txt")" 
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/idn/PunycodeTest.kt

        )
      }
    
      @Test fun nonBasicCodePointInPrefix() {
        assertNull(Punycode.decode("xn--cåt-n3h"))
      }
    
      @Test fun nonBasicCodePointInInsertionCoding() {
        assertNull(Punycode.decode("xn--cat-ñ3h"))
      }
    
      @Test fun unterminatedCodePoint() {
        assertNull(Punycode.decode("xn--cat-n"))
      }
    
      @Test fun overflowI() {
        assertNull(Punycode.decode("xn--99999999"))
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. security/pkg/pki/testdata/multilevelpki/certs.sh

    openssl x509 -req -days 3650 -in int2-cert.csr -sha256 -CA int-cert.pem -CAkey int-key.pem -CAcreateserial -out int2-cert.pem -extensions v3_req -extfile int2-cert.cfg
    
    
    
    cat root-cert.pem > int-cert-chain.pem
    cat int-cert.pem >> int-cert-chain.pem
    cp int-cert-chain.pem int2-cert-chain.pem
    cat int2-cert.pem >> int2-cert-chain.pem
    
    rm ./*csr
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  6. build/build-image/rsyncd.sh

    if [[ -f "${PIDFILE}" ]]; then
      PID=$(cat "${PIDFILE}")
      echo "Cleaning up old PID file: ${PIDFILE}"
      kill "${PID}" &> /dev/null || true
      rm "${PIDFILE}"
    fi
    
    PASSWORD=$(</rsyncd.password)
    
    cat <<EOF >"${SECRETS}"
    k8s:${PASSWORD}
    EOF
    chmod go= "${SECRETS}"
    
    USER_CONFIG=
    if [[ "$(id -u)" == "0" ]]; then
      USER_CONFIG="  uid = 0"$'\n'"  gid = 0"
    fi
    
    cat <<EOF >"${CONFFILE}"
    pid file = ${PIDFILE}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 04 15:58:52 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/internal/progress/SimpleProgressFormatterTest.groovy

            f.incrementAndGetProgress() == "2/10 things"
            f.progress == "2/10 things"
        }
    
        def "does not allow overflow"() {
            def f = new SimpleProgressFormatter(2, "cats");
            f.incrementAndGetProgress()
            f.incrementAndGetProgress()
    
            when:
            f.incrementAndGetProgress()
    
            then:
            thrown(IllegalStateException)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 17 00:14:35 UTC 2013
    - 1.3K bytes
    - Viewed (0)
  8. samples/kind-lb/setupkind.sh

      exit 1
    fi
    
    if [[ "${MODE}" == "ambient" ]]; then
      NUMNODES=${NUMNODES:-2}
    fi
    
    NODES=$(cat <<-EOM
    nodes:
    - role: control-plane
    EOM
    )
    
    if [[ -n "${NUMNODES}" ]]; then
    for _ in $(seq 1 "${NUMNODES}"); do
      NODES+=$(printf "\n%s" "- role: worker")
    done
    fi
    
    CONFIG=$(cat <<-EOM
    kind: Cluster
    apiVersion: kind.x-k8s.io/v1alpha4
    ${FEATURES}
    name: ${CLUSTERNAME}
    ${NODES}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 02 19:08:19 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. docs/site-replication/run-multi-site-oidc.sh

    #!/usr/bin/env bash
    
    # shellcheck disable=SC2120
    exit_1() {
    	cleanup
    
    	echo "minio1 ============"
    	cat /tmp/minio1_1.log
    	echo "minio2 ============"
    	cat /tmp/minio2_1.log
    	echo "minio3 ============"
    	cat /tmp/minio3_1.log
    
    	exit 1
    }
    
    cleanup() {
    	echo "Cleaning up instances of MinIO"
    	pkill minio
    	pkill -9 minio
    	rm -rf /tmp/minio{1,2,3}
    }
    
    cleanup
    
    unset MINIO_KMS_KES_CERT_FILE
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/analyze-variables.mlir

          "tfl.yield"(%3) : (tensor<i1>) -> ()
      },  {
        ^bb0(%arg3: tensor<*xi32>, %arg4: tensor<*x!tf_type.resource<tensor<*xi32>>>):
          %cst1 = arith.constant dense<2> : tensor<4xi32>
          "tf.AssignAddVariableOp"(%arg4, %cst1) {} : (tensor<*x!tf_type.resource<tensor<*xi32>>>, tensor<4xi32>) -> ()
          %4 = "tf.ReadVariableOp"(%arg4) {dtype = i32} : (tensor<*x!tf_type.resource<tensor<*xi32>>>) -> tensor<*xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 09 11:49:28 UTC 2022
    - 5.6K bytes
    - Viewed (0)
Back to top