Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for nOt (0.06 sec)

  1. pilot/pkg/security/authz/builder/testdata/tcp/deny-both-http-tcp-in.yaml

            ipBlocks: ["1.2.3.4"]
            remoteIpBlocks: ["172.18.4.0/22"]
            notPrincipals: ["not-principal", "*not-principal-suffix", "not-principal-prefix*", "*"]
            notRequestPrincipals: ["not-requestPrincipals"]
            notNamespaces: ["not-ns", "*not-ns-suffix", "not-ns-prefix*", "*"]
            notIpBlocks: ["9.0.0.1"]
            notRemoteIpBlocks: ["192.168.244.139"]
        to:
        - operation:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 12 19:47:37 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  2. test/import4.dir/import4.go

    // Verify that various kinds of "imported and not used"
    // errors are caught by the compiler.
    // Does not compile.
    
    package main
    
    // standard
    import "fmt"	// ERROR "imported and not used.*fmt|\x22fmt\x22 imported and not used"
    
    // renamed
    import X "math"	// ERROR "imported and not used.*math|\x22math\x22 imported as X and not used"
    
    // import dot
    import . "bufio"	// ERROR "imported and not used.*bufio|imported and not used"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:10:19 UTC 2022
    - 877 bytes
    - Viewed (0)
  3. src/cmd/internal/pkgpattern/pat_test.go

    	pattern net...
    	match net netchan net/http
    	not not/http not/net/http
    
    	pattern net/...
    	match net net/http
    	not not/http netchan
    
    	pattern abc.../def
    	match abcxyz
    	not xyzabc
    
    	pattern x/y/z/...
    	match x x/y x/y/z x/y/z/w
    
    	pattern x/y/z
    	match x x/y x/y/z
    	not x/y/z/w
    
    	pattern x/.../y/z
    	match x/a/b/c
    	not y/x/a/b/c
    `
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 16:43:40 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/allow-full.yaml

          - suffix: -ns-suffix
          - presence: {}
          notNamespaces:
          - exact: not-ns
          - prefix: not-ns-prefix-
          - suffix: -not-ns-suffix
          - presence: {}
    - rules:
      - matches:
        - notPrincipals:
          - exact: not-principal
          - prefix: not-principal-prefix-
          - suffix: -not-suffix-principal
          - presence: {}
          principals:
          - exact: principal
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/builder/testdata/http/allow-full-rule-out.yaml

                          stringMatch:
                            exact: not-method
                      - header:
                          name: :method
                          stringMatch:
                            prefix: not-method-prefix-
                      - header:
                          name: :method
                          stringMatch:
                            suffix: -not-suffix-method
                      - header:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/builder/testdata/tcp/audit-both-http-tcp-in.yaml

            notPrincipals: ["not-principal"]
            notRequestPrincipals: ["not-requestPrincipals"]
            notNamespaces: ["not-ns"]
            notIpBlocks: ["9.0.0.1"]
            notRemoteIpBlocks: ["10.133.154.65"]
        to:
        - operation:
            methods: ["method"]
            hosts: ["exact.com"]
            ports: ["80"]
            paths: ["/exact"]
            notMethods: ["not-method"]
            notHosts: ["not-exact.com"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 01 19:25:01 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  7. src/go/doc/comment/testdata/link2.txt

    -- input --
    The Go home page is https://go.dev/.
    It used to be https://golang.org.
    https:// is not a link.
    Nor is https://
    https://☺ is not a link.
    https://:80 is not a link.
    
    -- gofmt --
    The Go home page is https://go.dev/.
    It used to be https://golang.org.
    https:// is not a link.
    Nor is https://
    https://☺ is not a link.
    https://:80 is not a link.
    
    -- text --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 997 bytes
    - Viewed (0)
  8. pkg/apis/certificates/v1beta1/defaults_test.go

    			usages: kubeletServerUsagesNoRSA,
    			exp:    true,
    		},
    		"does not default to kube-apiserver-client-kubelet if org is not 'system:nodes'": {
    			req:    newCSR(kubeletServerPEMOptions, pemOptions{org: "not-system:nodes"}),
    			usages: kubeletServerUsages,
    			exp:    false,
    		},
    		"does not default to kubelet-serving if CN does not have system:node: prefix": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 16.9K bytes
    - Viewed (0)
  9. src/internal/types/testdata/spec/comparisons.go

    	_ = c == nil
    
    	_ = nil /* ERROR "operator < not defined on untyped nil" */ < nil
    	_ = b < b
    	_ = a /* ERROR "operator < not defined on array" */ < a
    	_ = l /* ERROR "operator < not defined on slice" */ < l
    	_ = s /* ERROR "operator < not defined on struct" */ < s
    	_ = p /* ERROR "operator < not defined on pointer" */ < p
    	_ = f /* ERROR "operator < not defined on func" */ < f
    	_ = i /* ERROR "operator < not defined on interface" */ < i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. testing/architecture-test/src/changes/archunit-store/provider-task-file-collection.txt

    Method <org.gradle.api.plugins.antlr.AntlrTask.getSource()> does not have raw return type assignable to org.gradle.api.file.ConfigurableFileCollection in (AntlrTask.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top