Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,168 for Equate (0.16 sec)

  1. src/cmd/go/testdata/script/mod_versions.txt

    env GO111MODULE=off
    ! go get rsc.io/quote@v1.5.1
    stderr '^go: modules disabled by GO111MODULE=off'
    ! go build rsc.io/quote@v1.5.1
    stderr '^package rsc.io/quote@v1.5.1: can only use path@version syntax with ''go get'' and ''go install'' in module-aware mode$'
    
    env GO111MODULE=on
    cd x
    ! go build rsc.io/quote@v1.5.1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 517 bytes
    - Viewed (0)
  2. manifests/charts/istio-cni/templates/configmap-cni.yaml

      CHAINED_CNI_PLUGIN: {{ .Values.cni.chained | quote }}
      EXCLUDED_NAMESPACES: "{{ range $idx, $ns := .Values.cni.excludeNamespaces }}{{ if $idx }},{{ end }}{{ $ns }}{{ end }}"
      REPAIR_ENABLED: {{ .Values.cni.chained | quote }}
      REPAIR_LABEL_PODS: {{ .Values.cni.repair.labelPods | quote }}
      REPAIR_DELETE_PODS: {{ .Values.cni.repair.deletePods | quote }}
      REPAIR_REPAIR_PODS: {{ .Values.cni.repair.repairPods | quote }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 16:52:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/modfile_flag.txt

    go mod edit -require rsc.io/quote@v1.5.2
    grep rsc.io/quote go.alt.mod
    
    # 'go list -m' should add sums to the alternate go.sum.
    go list -m -mod=mod all
    grep '^rsc.io/quote v1.5.2/go.mod ' go.alt.sum
    ! grep '^rsc.io/quote v1.5.2 ' go.alt.sum
    
    # other 'go mod' commands should work. 'go mod vendor' is tested later.
    go mod download rsc.io/quote
    go mod graph
    stdout rsc.io/quote
    go mod tidy
    grep rsc.io/quote go.alt.sum
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:16 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  4. internal/s3select/csv/reader_contrib_test.go

    3389233,2,2014-03-29 09:38:12,2014-03-29 09:44:16,N,1,-73.952728271484375,40.789501190185547,-73.950935363769531,40.775600433349609,1,1.10,6.5,0,0.5,1.3,0,,,8.3,1,1,75,263,green,1.81,0.0,0.0,59,43,10.74,1267,168,1,Manhattan,016800,1016800,E,MN33,East...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 38.5K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_cache_rw.txt

    # to MSDN, so there we disable testing whether the directory itself is
    # unwritable.
    go get rsc.io/quote@latest
    [!root] ! cp $WORK/extraneous.txt $GOPATH/pkg/mod/rsc.io/quote@v1.5.2/go.mod
    [!GOOS:windows] [!root] ! cp $WORK/extraneous.txt $GOPATH/pkg/mod/rsc.io/quote@v1.5.2/extraneous_file.go
    ! exists $GOPATH/pkg/mod/rsc.io/quote@v1.5.2/extraneous_file.go
    
    
    # Repeat part of the test with 'go mod download' instead of 'go get' to verify
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

    NODE_BINARY_TAR_HASH: $(yaml-quote "${NODE_BINARY_TAR_HASH}")
    CSI_PROXY_STORAGE_PATH: $(yaml-quote "${CSI_PROXY_STORAGE_PATH}")
    CSI_PROXY_VERSION: $(yaml-quote "${CSI_PROXY_VERSION}")
    CSI_PROXY_FLAGS: $(yaml-quote "${CSI_PROXY_FLAGS}")
    ENABLE_CSI_PROXY: $(yaml-quote "${ENABLE_CSI_PROXY}")
    K8S_DIR: $(yaml-quote "${WINDOWS_K8S_DIR}")
    NODE_DIR: $(yaml-quote "${WINDOWS_NODE_DIR}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_list_sums.txt

    # -versions or when all args are version queries.
    
    go mod init m
    go mod edit -require=rsc.io/quote@v1.5.1
    
    go list -m -mod=readonly rsc.io/quote@latest
    stdout '^rsc\.io/quote v1\.5\.2$'
    ! stderr .
    
    go list -m -mod=readonly -versions rsc.io/quote
    stdout 'rsc\.io/quote v1\.0\.0 .* v1\.5\.3-pre1$'
    ! stderr .
    
    # Incidentally fetching the required version of a module records its checksum,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 05 15:42:09 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_skip_write.txt

    -- use.go --
    package use
    
    import _ "rsc.io/quote"
    -- graph.want --
    m go@1.18
    m golang.org/x/text@v0.0.0-20170915032832-14c0d48ead0c
    m rsc.io/quote@v1.5.2
    m rsc.io/sampler@v1.3.0
    m rsc.io/testonly@v1.0.0
    rsc.io/quote@v1.5.2 rsc.io/sampler@v1.3.0
    rsc.io/sampler@v1.3.0 golang.org/x/text@v0.0.0-20170915032832-14c0d48ead0c
    -- why.want --
    # rsc.io/sampler
    m
    rsc.io/quote
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 23:07:08 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/ModuleVersionNotFoundExceptionTest.groovy

            def versions = [
                    rejectedByAttributes('1.1', [color: ['red', 'red', true], shape: ['square', 'circle', false]]),
                    rejectedByAttributes('1.0', [color: ['red', 'green', false], shape: ['square', 'circle', false]]),
            ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_sumdb_golang.txt

    go list -x -m all  # Download go.mod files.
    ! stderr github
    stderr proxy.golang.org/rsc.io/quote
    ! stderr sum.golang.org/tile
    ! stderr sum.golang.org/lookup/rsc.io/quote
    
    go list -x -deps rsc.io/quote  # Download module source.
    ! stderr github
    stderr proxy.golang.org/rsc.io/quote
    ! stderr sum.golang.org/tile
    ! stderr sum.golang.org/lookup/rsc.io/quote
    
    cmp go.sum saved.sum
    
    
    # Download again.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 17 18:25:37 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top