Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 231 for conflicting (0.17 sec)

  1. pkg/config/analysis/analyzers/testdata/conflicting-gateways.yaml

    Mitch Connors <******@****.***> 1637152085 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 452 bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/conflicting-gateways-invalid-port.yaml

    Nicole LiHui <******@****.***> 1682232835 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 23 06:53:55 UTC 2023
    - 337 bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/deployment-multi-service-different-ns.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: conflicting-ports
      namespace: bookinfo
      labels:
        app: conflicting-ports
        version: v1
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: conflicting-ports
          version: v1
      template:
        metadata:
          labels:
            app: conflicting-ports
            version: v1
        spec:
          serviceAccountName: bookinfo-details
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/deployment-multi-service.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: conflicting-ports
      namespace: bookinfo
      labels:
        app: conflicting-ports
        version: v1
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: conflicting-ports
          version: v1
      template:
        metadata:
          labels:
            app: conflicting-ports
            version: v1
        spec:
          serviceAccountName: bookinfo-details
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 21:52:53 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. src/go/doc/testdata/e.go

    // Higher-level method M wins over lower-level conflicting methods M.
    
    type t1e struct {
    	t1
    }
    
    type t2e struct {
    	t2
    }
    
    // T3 has only M as top-level method.
    type T3 struct {
    	t1e
    	t2e
    }
    
    // T3.M should appear as method of T3.
    func (T3) M() {}
    
    // ----------------------------------------------------------------------------
    // Don't show conflicting methods M embedded via an exported and non-exported
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2.8K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/conflict/ConflictResolver.java

    /**
     * Determines which version of an artifact to use when there are conflicting declarations.
     *
     */
    @Deprecated
    public interface ConflictResolver {
        String ROLE = ConflictResolver.class.getName();
    
        /**
         * Determines which of the specified versions of an artifact to use when there are conflicting declarations.
         *
         * @param node1 the first artifact declaration
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_ambiguous_pkg.txt

    
    # The user should be able to make the command unambiguous by explicitly
    # upgrading the conflicting module...
    
    go get example.net/ambiguous@v0.2.0 example.net/ambiguous/nested/pkg@v0.1.0
    go list -m all
    stdout '^example.net/ambiguous/nested v0.1.0$'
    stdout '^example.net/ambiguous v0.2.0$'
    
    
    # ...or by explicitly NOT adding the conflicting module.
    
    cp go.mod.orig go.mod
    go mod edit -require=example.net/ambiguous@v0.1.0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/work_replace_conflict.txt

    # Conflicting replaces in workspace modules returns error that suggests
    # overriding it in the go.work file.
    
    ! go list -m example.com/dep
    stderr 'go: conflicting replacements for example.com/dep@v1.0.0:\n\t'$PWD${/}'dep1\n\t'$PWD${/}'dep2\nuse "go work edit -replace example.com/dep@v1.0.0=\[override\]" to resolve'
    go work edit -replace example.com/dep@v1.0.0=./dep1
    go list -m example.com/dep
    stdout 'example.com/dep v1.0.0 => ./dep1'
    
    -- foo --
    -- go.work --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 15 22:28:43 UTC 2022
    - 1009 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_get_moved.txt

    go mod init example.com/foo
    go get example.com/split/subpkg@v1.0.0
    go list -m all
    stdout 'example.com/split v1.0.0'
    
    # A 'go get' that simultaneously upgrades away conflicting package definitions is not ambiguous.
    go get example.com/split/subpkg@v1.1.0
    
    # A 'go get' without an upgrade should find the package.
    rm go.mod
    go mod init example.com/foo
    go get example.com/split/subpkg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. releasenotes/notes/ingress-name-conflict.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 31833
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 28 14:52:34 UTC 2021
    - 211 bytes
    - Viewed (0)
Back to top