Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,484 for replaced (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. common/config/.golangci-format.yml

      # Can use regexp here: `generated.*`, regexp is applied on full path,
      # including the path prefix if one is set.
      # Default dirs are skipped independently of this option's value (see exclude-dirs-use-default).
      # "/" will be replaced by current OS file path separator to properly work on Windows.
      # Default: []
      exclude-dirs:
        - genfiles$
        - vendor$
      # Which files to exclude: they will be analyzed, but issues from them won't be reported.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 03:02:37 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/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/
    
    cjcullen
    joelsmith
    liggitt
    philips
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 09:52:35 UTC 2019
    - 563 bytes
    - Viewed (0)
  6. releasenotes/notes/remove-istio-io-rev-label.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
      - 33447
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 25 05:41:41 UTC 2021
    - 211 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_insecure_redirect.txt

    # golang.org/issue/29591: 'go get' was following plain-HTTP redirects even without -insecure (now replaced by GOINSECURE).
    # golang.org/issue/61877: 'go get' would panic in case of an insecure redirect in module mode
    
    [!git] skip
    
    env GOPRIVATE=vcs-test.golang.org
    
    ! go get -d vcs-test.golang.org/insecure/go/insecure
    stderr 'redirected .* to insecure URL'
    
    [short] stop 'builds a git repo'
    
    env GOINSECURE=vcs-test.golang.org/insecure/go/insecure
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 17:34:25 UTC 2023
    - 538 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/idl/groovy/src/main/idl/hello.idl

    This file contains a HEADER section and a SOURCE section, which are parsed to generate the actual header and source files.
    The generated files have the same name as the idl file, with the extension replaced by '.h' or '.c'.
    
    HEADER <<<
    void hello();
    >>>
    --------------
    SOURCE <<<
    #include <stdio.h>
    #include "hello.h"
    
    void hello () {
      printf("Hello from generated source!!\n");
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 496 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_import_meta.txt

    ! stderr 'internal error'
    stderr '^importstd[/\\]x.go:3:8: "std" is not an importable package; see ''go help packages''$'
    
    
    # Not even if such a path is theoretically provided by a (necessarily replaced) module.
    
    go mod edit -replace std@v0.1.0=./modstd
    go mod edit -require std@v0.1.0
    
    ! go list -deps ./importstd
    stderr '^importstd[/\\]x.go:3:8: "std" is not an importable package; see ''go help packages''$'
    
    
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 22 20:45:27 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  10. src/cmd/internal/objabi/line.go

    	prefix, replace := rewrite, ""
    	if j := strings.LastIndex(rewrite, "=>"); j >= 0 {
    		prefix, replace = rewrite[:j], rewrite[j+len("=>"):]
    	}
    
    	if prefix == "" || !hasPathPrefix(path, prefix) {
    		return path, false
    	}
    	if len(path) == len(prefix) {
    		return replace, true
    	}
    	if replace == "" {
    		return path[len(prefix)+1:], true
    	}
    	return replace + path[len(prefix):], true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 23:10:31 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top