Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of about 10,000 for a$ (0.04 sec)

  1. docs/en/docs/index.md

    ---
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/flowcontrol/v1beta3/generated.proto

    }
    
    // NonResourcePolicyRule is a predicate that matches non-resource requests according to their verb and the
    // target non-resource URL. A NonResourcePolicyRule matches a request if and only if both (a) at least one member
    // of verbs matches the request and (b) at least one member of nonResourceURLs matches the request.
    message NonResourcePolicyRule {
      // `verbs` is a list of matching verbs and may not be empty.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/execution/taskgraph/DefaultTaskExecutionGraphSpec.groovy

            Task a = task("a")
            Task b = task("b", a)
            Task c = task("c", b, a)
            Task d = task("d", c)
    
            when:
            populateAndExecute([d])
    
            then:
            executedTasks == [a, b, c, d]
            failures.empty
        }
    
        def "executes dependencies in name order"() {
            Task a = task("a")
            Task b = task("b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. src/html/template/doc.go

    time this becomes just
    
    	<a my:data-href="{{. | attrescaper}}"></a>
    
    As a special case, attributes with the namespace "xmlns" are always treated
    as containing URLs. Given the excerpts
    
    	<a xmlns:title="{{.}}"></a>
    	<a xmlns:href="{{.}}"></a>
    	<a xmlns:onclick="{{.}}"></a>
    
    At parse time they become:
    
    	<a xmlns:title="{{. | urlescaper | attrescaper}}"></a>
    	<a xmlns:href="{{. | urlescaper | attrescaper}}"></a>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:04:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. 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)
  6. src/reflect/abi.go

    	// register assignment fails.
    	aOld := *a
    	if !a.regAssign(t, 0) {
    		// Register assignment failed. Roll back any changes
    		// and stack-assign.
    		*a = aOld
    		a.stackAssign(t.Size(), uintptr(t.Align()))
    		return &a.steps[len(a.steps)-1]
    	}
    	return nil
    }
    
    // addRcvr extends the abiSeq with a new method call
    // receiver according to the interface calling convention.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/cover_coverpkg_partial.txt

    # (including the specific case where P has no test files).
    go test -coverpkg=./a ./...
    stdout '^ok\s+M/a\s+\S+\s+coverage: 100.0% of statements in ./a'
    stdout '^\s*\?\s+M/f\s+\[no test files\]'
    
    -- a/a.go --
    package a
    
    import "M/f"
    
    var G int
    
    func AFunc() int {
    	G = 1
    	return f.Id()
    }
    -- a/a_test.go --
    package a
    
    import "testing"
    
    func TestA(t *testing.T) {
    	if AFunc() != 42 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:12:49 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

      public void testOf_ordering() {
        SortedSet<String> set = of("e", "a", "f", "b", "d", "c");
        assertThat(set).containsExactly("a", "b", "c", "d", "e", "f").inOrder();
      }
    
      /*
       * Tests that we workaround GWT bug #3621 (or that it is already fixed).
       *
       * A call to of() with a parameter that is not a plain Object[] (here,
       * Interface[]) creates a RegularImmutableSortedSet backed by an array of that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  9. tests/test_dependency_contextmanager.py

        assert data["context_b"] == "started b"
        assert data["context_a"] == "started a"
        assert data["sync_bg"] == "not set"
        assert state["context_b"] == "finished b with a: started a"
        assert state["context_a"] == "finished a"
        assert (
            state["sync_bg"]
            == "sync_bg set - b: finished b with a: started a - a: finished a"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Feb 24 23:06:37 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. 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)
Back to top