Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,069 for dev2 (0.04 sec)

  1. prow/lib.sh

    # If we need to call it from a context without xtrace we can just make a new function.
    function trace() {
      { set +x; } 2>/dev/null
      log "Running '${1}'"
      start="$(date_cmd -u +%s.%N)"
      { set -x; } 2>/dev/null
    
      tracing::run "$1" "${@:2}"
    
      { set +x; } 2>/dev/null
      elapsed=$(date_cmd +%s.%N --date="$start seconds ago" )
      log "Command '${1}' complete in ${elapsed}s"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. docker/iptables.yaml

    contents:
      repositories:
        - https://packages.wolfi.dev/os
      keyring:
        - https://packages.wolfi.dev/os/wolfi-signing.rsa.pub
      packages:
        - ca-certificates-bundle
        - wolfi-baselayout
        - glibc
        - iptables
        - ip6tables
        - libnetfilter_conntrack
        - libnfnetlink
        - libmnl
        - libgcc
    archs:
      - x86_64
      - aarch64
    paths:
    - path: /run
      type: directory
      permissions: 0o755
    accounts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 17:24:41 UTC 2024
    - 541 bytes
    - Viewed (0)
  3. tests/tests_all.sh

          SQLCMDPASSWORD=LoremIpsum86 sqlcmd -U sa -S localhost:9930 -Q "IF SUSER_ID (N'gorm') IS NULL CREATE LOGIN gorm WITH PASSWORD = 'LoremIpsum86';" > /dev/null || true
          SQLCMDPASSWORD=LoremIpsum86 sqlcmd -U sa -S localhost:9930 -Q "IF USER_ID (N'gorm') IS NULL CREATE USER gorm FROM LOGIN gorm; ALTER SERVER ROLE sysadmin ADD MEMBER [gorm];" > /dev/null || true
        else
          docker-compose start
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Feb 08 08:29:09 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. tools/bug-report/pkg/bugreport/bugreport.go

    Proxy logs can be filtered using:
      --include|--exclude ns1,ns2.../dep1,dep2.../pod1,pod2.../lbl1=val1,lbl2=val2.../ann1=val1,ann2=val2.../cntr1,cntr...
    where ns=namespace, dep=deployment, lbl=label, ann=annotation, cntr=container
    
    The filter spec is interpreted as 'must be in (ns1 OR ns2) AND (dep1 OR dep2) AND (cntr1 OR cntr2)...'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. pkg/kubelet/util/swap/swap_util_test.go

    			procSwapsContent: `
    Filename				Type		Size		Used		Priority
    /dev/dm-1               partition	33554428	0		-2
    `,
    			expectedEnabled: true,
    		},
    		{
    			name: "with swap enabled, 2 partitions",
    			procSwapsContent: `
    Filename				Type		Size		Used		Priority
    /dev/dm-1               partition	33554428	0		-2
    /dev/zram0              partition	8388604		0		100
    `,
    			expectedEnabled: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. docs/pt/docs/tutorial/body.md

    Para declarar um corpo da **requisição**, você utiliza os modelos do <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic</a> com todos os seus poderes e benefícios.
    
    !!! info "Informação"
        Para enviar dados, você deve usar utilizar um dos métodos: `POST` (Mais comum), `PUT`, `DELETE` ou `PATCH`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. src/cmp.bash

    	echo $pkg
    	DIR=$GOROOT/src/$pkg
    	go build -gcflags "$FLAGS1 -S" -o /dev/null $pkg &> $DIR/old.txt
    done
    
    echo
    echo
    echo "2a) clean build using $FLAGS2"
    (export GO_GCFLAGS="$FLAGS2"; sh make.bash)
    
    echo
    echo
    echo "2b) save go build output for all packages"
    for pkg in `go list std`; do
    	echo $pkg
    	DIR=$GOROOT/src/$pkg
    	go build -gcflags "$FLAGS2 -S" -o /dev/null $pkg &> $DIR/new.txt
    done
    
    echo
    echo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:03:31 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. common/config/.hadolint.yml

    # "make update-common".
    
    ignored:
      - DL3008
      - DL3059
    
    trustedRegistries:
      - gcr.io
      - docker.io
      - quay.io
      - "*.pkg.dev"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 22:55:57 UTC 2024
    - 489 bytes
    - Viewed (0)
  9. operator/pkg/version/version_test.go

    		},
    		{
    			name: "release branch dev",
    			ver:  "1.4-dev",
    			want: true,
    		},
    		{
    			name: "release",
    			ver:  "1.4.5",
    			want: true,
    		},
    		{
    			name: "incorrect",
    			ver:  "1.4.xxx",
    			want: false,
    		},
    		{
    			name: "dev sha",
    			ver:  "a3703b76cf4745f3d56bf653ed751509be116351",
    			want: false,
    		},
    		{
    			name: "dev sha digit prefix",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  10. src/runtime/badlinkname.go

    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    
    // Notable members of the hall of shame include:
    //   - github.com/dgraph-io/ristretto
    //   - github.com/outcaste-io/ristretto
    //   - github.com/clubpay/ronykit
    //go:linkname cputicks
    
    // Notable members of the hall of shame include:
    //   - gvisor.dev/gvisor (from assembly)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 661 bytes
    - Viewed (0)
Back to top