Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 347 for foo3Jar (0.12 sec)

  1. android/guava-testlib/test/com/google/common/testing/AbstractPackageSanityTestsTest.java

      }
    
      public void testFindClassesToTest_ignoreUnderscores() {
        assertThat(findClassesToTest(ImmutableList.of(Foo.class, Foo_Bar.class)))
            .containsExactly(Foo.class, Foo_Bar.class);
        sanityTests.ignoreClasses(AbstractPackageSanityTests.UNDERSCORE_IN_NAME);
        assertThat(findClassesToTest(ImmutableList.of(Foo.class, Foo_Bar.class)))
            .containsExactly(Foo.class);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 21:37:55 UTC 2019
    - 5.3K 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. docs/site-replication/run-multi-site-minio-idp.sh

    	echo "expected both peers to have same information"
    	exit_1
    }
    
    ./mc admin user add minio1 foobar foo12345
    
    ## add foobar-g group with foobar
    ./mc admin group add minio2 foobar-g foobar
    
    ./mc admin policy attach minio1 consoleAdmin --user=foobar
    sleep 5
    
    ./mc admin user info minio2 foobar
    
    ./mc admin group info minio1 foobar-g
    
    ./mc admin policy create minio1 rw ./docs/site-replication/rw.json
    
    sleep 5
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. 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)
  5. test/fixedbugs/issue8836.go

    // license that can be found in the LICENSE file.
    
    // Checking that line number is correct in error message.
    
    package main
    
    type Cint int
    
    func foobar(*Cint, Cint, Cint, *Cint)
    
    func main() {
    	a := Cint(1)
    
    	foobar(
    		&a,
    		0,
    		0,
    		42, // ERROR ".*"
    	)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 381 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. maven-xml-impl/src/test/java/org/apache/maven/internal/xml/XmlNodeBuilderTest.java

            String doc = "<?xml version='1.0'?><doc xmlns='foo:bar'/>";
            StringReader r = new StringReader(doc);
            XMLStreamReader xsr = WstxInputFactory.newFactory().createXMLStreamReader(r);
            XmlNode node = XmlNodeStaxBuilder.build(xsr);
            assertEquals("doc", node.getName());
            assertEquals(1, node.getAttributes().size());
            assertEquals("foo:bar", node.getAttribute("xmlns"));
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/saved_model/core/object_graph_traversal_test.cc

      absl::optional<int> foo = internal::FindNodeAtPath("foo", object_graph);
      ASSERT_TRUE(foo.has_value());
      EXPECT_EQ(*foo, 1);
    
      absl::optional<int> foo_bar =
          internal::FindNodeAtPath("foo.bar", object_graph);
      ASSERT_TRUE(foo_bar.has_value());
      EXPECT_EQ(*foo_bar, 3);
    
      absl::optional<int> foo_bar_parent =
          internal::FindNodeAtPath("foo.bar.parent", object_graph);
      ASSERT_TRUE(foo_bar_parent.has_value());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 22 20:15:34 UTC 2020
    - 7.9K bytes
    - Viewed (0)
  10. 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)
Back to top