Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,365 for replaced (0.16 sec)

  1. hack/testdata/recursive/pod-modify/pod/busybox.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: busybox1
      labels:
        app: busybox1
        status: replaced
    spec:
      containers:
      - image: busybox
        command:
          - sleep
          - "3600"
        imagePullPolicy: IfNotPresent
        name: busybox
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 02 03:27:37 UTC 2016
    - 258 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_vendor_replace.txt

    -- go.mod1 --
    module example.com/replace
    
    require rsc.io/quote/v3 v3.0.0
    replace rsc.io/quote/v3 => ./local/not-rsc.io/quote/v3
    
    -- imports.go --
    package replace
    
    import _ "rsc.io/quote/v3"
    
    -- local/not-rsc.io/quote/v3/go.mod --
    module not-rsc.io/quote/v3
    
    -- local/not-rsc.io/quote/v3/quote.go --
    package quote
    
    -- multiple-paths/main.go --
    package main
    import (
    	"fmt"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 19:40:02 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_tidy_replace.txt

    env GO111MODULE=on
    env GOFLAGS=-mod=mod
    [short] skip
    
    # golang.org/issue/30166: 'go mod tidy' should not crash if a replaced module is
    # involved in a cycle.
    cd cycle
    env GOTRACEBACK=off
    go mod tidy
    cd ..
    
    # From inside the module, 'go list -m all' should NOT include transitive
    # requirements of modules that have been replaced.
    go list -m all
    stdout 'rsc.io/quote/v3 v3.0.0'
    ! stdout 'rsc.io/sampler'
    ! stdout 'golang.org/x/text'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_download_replace_file.txt

    # This test checks that 'go mod download' produces no output for
    # the main module (when specified implicitly) and for a module replaced
    # with a file path.
    # Verifies golang.org/issue/35505.
    go mod download -json all
    cmp stdout no-output
    
    -- go.mod --
    module example.com/a
    
    require example.com/b v1.0.0
    
    replace example.com/b => ./local/b
    -- local/b/go.mod --
    module example.com/b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 11 20:19:06 UTC 2019
    - 398 bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/import.go

    			return "cannot find module providing package " + e.Path
    		}
    
    		if e.replaced.Path != "" {
    			suggestArg := e.replaced.Path
    			if !module.IsZeroPseudoVersion(e.replaced.Version) {
    				suggestArg = e.replaced.String()
    			}
    			return fmt.Sprintf("module %s provides package %s and is replaced but not required; to add it:\n\tgo get %s", e.replaced.Path, e.Path, suggestArg)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/modfile.go

    			}
    		}
    	}
    
    	for _, r := range modFile.Replace {
    		if r.New != i.replace[r.Old] {
    			return true
    		}
    	}
    
    	for _, x := range modFile.Exclude {
    		if !i.exclude[x.Mod] {
    			return true
    		}
    	}
    
    	return false
    }
    
    // rawGoVersion records the Go version parsed from each module's go.mod file.
    //
    // If a module is replaced, the version of the replacement is keyed by the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  7. cmd/storage-interface.go

    	GetDiskID() (string, error)
    
    	// Set a unique 'uuid' for this disk, only used when
    	// disk is replaced and formatted.
    	SetDiskID(id string)
    
    	// Returns healing information for a newly replaced disk,
    	// returns 'nil' once healing is complete or if the disk
    	// has never been replaced.
    	Healing() *healingTracker
    	DiskInfo(ctx context.Context, opts DiskInfoOptions) (info DiskInfo, err error)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_tidy_symlink_issue35941.txt

    cmp go.mod go.mod.orig
    
    ! go build ./symlink
    stderr '^symlink[\\/]symlink.go:3:8: module example.net/unresolved provides package example.net/unresolved and is replaced but not required; to add it:\n\tgo get example.net/unresolved@v0.1.0$'
    
    -- m/go.mod --
    module example.net/m
    
    go 1.16
    
    replace example.net/unresolved v0.1.0 => ../unresolved
    -- m/a.go --
    package a
    -- outside/symlink.go --
    package symlink
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 27 18:17:01 UTC 2021
    - 898 bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/SECURITY_CONTACTS

    # to for triaging and handling of incoming issues.
    #
    # The below names agree to abide by the
    # [Embargo Policy](https://git.k8s.io/security/private-distributors-list.md#embargo-policy)
    # and will be removed and replaced if they violate that agreement.
    #
    # DO NOT REPORT SECURITY VULNERABILITIES DIRECTLY TO THESE NAMES, FOLLOW THE
    # INSTRUCTIONS AT https://kubernetes.io/security/
    
    caesarxuchao
    deads2k
    lavalamp
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 02 20:01:36 UTC 2020
    - 554 bytes
    - Viewed (0)
  10. hack/testdata/recursive/pod-modify/busybox.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: busybox0
      labels:
        app: busybox0
        status: replaced
    spec:
      containers:
      - image: busybox
        command:
          - sleep
          - "3600"
        imagePullPolicy: IfNotPresent
        name: busybox
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 02 03:27:37 UTC 2016
    - 258 bytes
    - Viewed (0)
Back to top