Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,351 for a$ (0.06 sec)

  1. tools/istio-iptables/pkg/capture/testdata/ip-range.golden

    iptables -t nat -A ISTIO_OUTPUT -m owner --gid-owner 2 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -p tcp --dport 53 -d 127.0.0.53/32 -j REDIRECT --to-ports 15053
    iptables -t nat -A ISTIO_OUTPUT -d 127.0.0.1/32 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -d 1.1.0.0/16 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -d 9.9.0.0/16 -j ISTIO_REDIRECT
    iptables -t nat -A OUTPUT -p udp -j ISTIO_OUTPUT
    iptables -t raw -A OUTPUT -p udp -j ISTIO_OUTPUT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/capture/testdata/ipv6-uid-gid.golden

    ip6tables -t nat -A ISTIO_INBOUND -p tcp --dport 15008 -j RETURN
    ip6tables -t nat -A ISTIO_REDIRECT -p tcp -j REDIRECT --to-ports 15001
    ip6tables -t nat -A ISTIO_IN_REDIRECT -p tcp -j REDIRECT --to-ports 15006
    ip6tables -t nat -A PREROUTING -p tcp -j ISTIO_INBOUND
    ip6tables -t nat -A ISTIO_INBOUND -p tcp --dport 4000 -j ISTIO_IN_REDIRECT
    ip6tables -t nat -A ISTIO_INBOUND -p tcp --dport 5000 -j ISTIO_IN_REDIRECT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/capture/testdata/loopback-outbound-iprange.golden

    iptables -t nat -N ISTIO_OUTPUT
    iptables -t raw -N ISTIO_OUTPUT
    iptables -t nat -A ISTIO_INBOUND -p tcp --dport 15008 -j RETURN
    iptables -t nat -A ISTIO_REDIRECT -p tcp -j REDIRECT --to-ports 15001
    iptables -t nat -A ISTIO_IN_REDIRECT -p tcp -j REDIRECT --to-ports 15006
    iptables -t nat -A OUTPUT -p tcp -j ISTIO_OUTPUT
    iptables -t nat -A ISTIO_OUTPUT -o lo -s 127.0.0.6/32 -j RETURN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromKotlinDslIntegrationTest.groovy

                problem("Build file 'a/build.gradle.kts': Project ':a' cannot access 'Project.buildDir' functionality on subprojects of project ':'", 2)
            }
        }
    
        def "build script can query basic details of projects in a function called from allprojects block"() {
            createDirs("a", "b")
            settingsFile << """
                rootProject.name = "root"
                include("a", "b")
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. test/codegen/bits.go

    	n += a ^ (1 << 28)
    
    	// amd64:"XORL\t[$]1"
    	n += a ^ (1 << 0)
    
    	return n
    }
    
    // check direct operation on memory with constant and shifted constant sources
    func bitOpOnMem(a []uint32, b, c, d uint32) {
    	// amd64:`ANDL\s[$]200,\s\([A-Z][A-Z0-9]+\)`
    	a[0] &= 200
    	// amd64:`ORL\s[$]220,\s4\([A-Z][A-Z0-9]+\)`
    	a[1] |= 220
    	// amd64:`XORL\s[$]240,\s8\([A-Z][A-Z0-9]+\)`
    	a[2] ^= 240
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/security/first-steps.md

    # Security - First Steps
    
    Let's imagine that you have your **backend** API in some domain.
    
    And you have a **frontend** in another domain or in a different path of the same domain (or in a mobile application).
    
    And you want to have a way for the frontend to authenticate with the backend, using a **username** and **password**.
    
    We can use **OAuth2** to build that with **FastAPI**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:48:20 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ResolutionResultGraphBuilderSpec.groovy

      x:b1:1 [a]
        x:b2:1 [a,b1]
          x:b3:1 [a,b1,b2]
      x:b2:1 [a,b1]
        x:b3:1 [a,b1,b2]
      x:b3:1 [a,b1,b2]
    """
        }
    
        def "builds graph with cycles"() {
            given:
            node("a")
            node("b")
            node("c")
            resolvedConf("a", [dep("a", "b")])
            resolvedConf("b", [dep("b", "c")])
            resolvedConf("c", [dep("c", "a")])
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. cni/pkg/iptables/testdata/default_ipv6.golden

    iptables -t mangle -N ISTIO_OUTPUT
    iptables -t mangle -A PREROUTING -j ISTIO_PRERT
    iptables -t mangle -A OUTPUT -j ISTIO_OUTPUT
    iptables -t nat -A OUTPUT -j ISTIO_OUTPUT
    iptables -t mangle -A ISTIO_PRERT -m mark --mark 0x539/0xfff -j CONNMARK --set-xmark 0x111/0xfff
    iptables -t mangle -A ISTIO_PRERT -s 169.254.7.127 -p tcp -m tcp -j ACCEPT
    iptables -t nat -A ISTIO_OUTPUT -d 169.254.7.127 -p tcp -m tcp -j ACCEPT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 20:16:04 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtSymbol.kt

         *
         * The B will have a member B.foo(): Int, this member is generated inside interface B with substitution T -> Int,
         * such members are SUBSTITUTION_OVERRIDE
         */
        SUBSTITUTION_OVERRIDE,
    
        /**
         * Member symbol which was generated by compiler when using `by` interface delegation
         * e.g,
         * ```
         * interface A { fun x() }
         * class B(a: A) : A by a
         * ```
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 09:36:27 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsTaskPathDependencyIntegrationTest.groovy

                tasks.register("foo") {
                    dependsOn(":bar")
                }
            """
    
            when:
            isolatedProjectsRun(":a:foo")
    
            then:
            fixture.assertStateStored {
                projectsConfigured(":", ":a")
            }
        }
    
        def "direct task dependency still is an IP violation"() {
            given:
            settingsFile << """
                include(":a")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top