Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 307 for _foobar (0.16 sec)

  1. src/encoding/base32/base32_test.go

    		}, nil},
    
    		// MZXW6YTB = fooba
    		{"fooba", [][]string{
    			{"MZXW6YTBZZ"},
    			{"MZXW6YTBZ", "Z"},
    			{"MZXW6YTB", "ZZ"},
    			{"MZXW6YT", "BZZ"},
    			{"MZXW6Y", "TBZZ"},
    			{"MZXW6Y", "TB", "ZZ"},
    			{"MZXW6", "YTBZZ"},
    			{"MZXW6", "YTB", "ZZ"},
    			{"MZXW6", "YT", "BZZ"},
    		}, io.ErrUnexpectedEOF},
    
    		// Normal case, this is valid input
    		{"fooba", [][]string{
    			{"MZXW6YTB"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. buildscripts/disable-root.sh

    export MC_HOST_siteb=http://minioadmin:minioadmin@127.0.0.1:9004
    
    ./mc ready sitea
    ./mc ready siteb
    
    ./mc admin replicate add sitea siteb
    
    ./mc admin user add sitea foobar foo12345
    
    ./mc admin policy attach sitea/ consoleAdmin --user=foobar
    
    ./mc admin user info siteb foobar
    
    killall -9 minio
    
    echo "turning off root access, however site replication must continue"
    export MINIO_API_ROOT_ACCESS=off
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. pilot/pkg/model/sidecar_test.go

    		{
    			Hostname: "foobar.svc.cluster.local",
    			Ports:    port803x,
    			Attributes: ServiceAttributes{
    				Name:      "foo",
    				Namespace: "ns1",
    			},
    		},
    		{
    			Hostname: "foobar.svc.cluster.local",
    			Ports:    port8000,
    			Attributes: ServiceAttributes{
    				Name:      "bar",
    				Namespace: "ns2",
    			},
    		},
    		{
    			Hostname: "foobar.svc.cluster.local",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/route-binding.yaml

      gatewayClassName: istio
      listeners:
      - name: default
        hostname: "*.domain.example"
        port: 80
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: All
      - name: foobar
        hostname: "*.foobar.example"
        port: 80
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: All
          kinds:
          - kind: HTTPRoute
      - name: same-namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/jvm/JvmTest.groovy

            _ * os.findInPath("foobar") >> new File('/path/foobar.exe')
    
            when:
            def exec = jvm.getExecutable("foobar")
    
            then:
            exec == new File('/path/foobar.exe')
        }
    
        def "falls back to current dir if executable cannot be found anywhere"() {
            given:
            def home = tmpDir.createDir("home")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/NamedDomainObjectContainerIntegrationTest.groovy

                    assert element.name in ['foo', 'barfoo']
                }
    
                testContainer.register("foo")
                testContainer.register("bar")
                testContainer.register("foobar")
                testContainer.register("barfoo")
            """
            expect:
            succeeds "help"
        }
    
        @Issue("https://github.com/gradle/gradle/issues/9446")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. tests/test_path.py

    
    def test_path_foobar():
        response = client.get("/path/foobar")
        assert response.status_code == 200
        assert response.json() == "foobar"
    
    
    def test_path_str_foobar():
        response = client.get("/path/str/foobar")
        assert response.status_code == 200
        assert response.json() == "foobar"
    
    
    def test_path_str_42():
        response = client.get("/path/str/42")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/base/PredicatesTest.java

        Predicate<CharSequence> isFoobar = Predicates.containsPattern("^Fo.*o.*bar$");
        assertTrue(isFoobar.apply("Foxyzoabcbar"));
        assertFalse(isFoobar.apply("Foobarx"));
      }
    
      @GwtIncompatible // Predicates.containsPattern
      public void testContains_apply() {
        Predicate<CharSequence> isFoobar = Predicates.contains(Pattern.compile("^Fo.*o.*bar$"));
    
        assertTrue(isFoobar.apply("Foxyzoabcbar"));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  9. tests/test_security_http_bearer.py

    
    client = TestClient(app)
    
    
    def test_security_http_bearer():
        response = client.get("/users/me", headers={"Authorization": "Bearer foobar"})
        assert response.status_code == 200, response.text
        assert response.json() == {"scheme": "Bearer", "credentials": "foobar"}
    
    
    def test_security_http_bearer_no_credentials():
        response = client.get("/users/me")
        assert response.status_code == 403, response.text
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. tests/test_security_http_digest_description.py

    
    client = TestClient(app)
    
    
    def test_security_http_digest():
        response = client.get("/users/me", headers={"Authorization": "Digest foobar"})
        assert response.status_code == 200, response.text
        assert response.json() == {"scheme": "Digest", "credentials": "foobar"}
    
    
    def test_security_http_digest_no_credentials():
        response = client.get("/users/me")
        assert response.status_code == 403, response.text
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top