Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 149 for notbar (0.23 sec)

  1. pilot/pkg/config/kube/gateway/testdata/route-binding.status.yaml.golden

          reason: Programmed
          status: "True"
          type: Programmed
        - lastTransitionTime: fake
          message: No errors found
          reason: ResolvedRefs
          status: "True"
          type: ResolvedRefs
        name: foobar
        supportedKinds:
        - group: gateway.networking.k8s.io
          kind: HTTPRoute
      - attachedRoutes: 1
        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. pkg/util/iptables/iptables_test.go

    	}
    	cmd := iptablesCommand(protocol)
    	if !sets.New(fcmd.CombinedOutputLog[1]...).HasAll(cmd, "-t", "nat", "-N", "FOOBAR") {
    		t.Errorf("%s new chain: Expected cmd containing '%s -t nat -N FOOBAR', got %s", protocol, cmd, fcmd.CombinedOutputLog[2])
    	}
    	// Exists.
    	exists, err = runner.EnsureChain(TableNAT, Chain("FOOBAR"))
    	if err != nil {
    		t.Errorf("%s existing chain: Expected success, got %v", protocol, err)
    	}
    	if !exists {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 08 15:21:59 UTC 2023
    - 46.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/DeprecationHandlingIntegrationTest.groovy

                public class DeprecatedTask extends DefaultTask {
                    @TaskAction
                    void causeDeprecationWarning() {
                        DeprecationLogger.deprecateTask("thisIsADeprecatedTask").replaceWith("foobar").willBeRemovedInGradle9().undocumented().nagUser();
                        System.out.println("DeprecatedTask.causeDeprecationWarning() executed.");
                    }
    
                    public static void someFeature() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:16:32 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/declarative/dsl/tooling/builders/r89/DeclarativeDslToolingModelsCrossVersionTest.groovy

                    }
    
                    public abstract static class Foo {
                        public Foo() {
                            this.getBar().convention("nothing");
                        }
    
                        @Restricted
                        public abstract Property<String> getBar();
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:32:11 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishArtifactCustomizationIntegTest.groovy

                        artifact source: "customFile-foobar.jar", classifier: "foobar"
                    }
                }
    
    """)
            when:
            fails 'publish'
    
            then:
            failure.assertHasCause("""
    Cannot publish module metadata because an artifact from the 'java' component has been removed. The available artifacts had these problems:
    - customFile-foobar.jar:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 06:46:01 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/route-binding.yaml.golden

        internal.istio.io/gateway-service: istio-ingressgateway.istio-system.svc.domain.suffix
        internal.istio.io/parents: Gateway/gateway/foobar.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-foobar
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - '*/*.foobar.example'
        port:
          name: default
          number: 80
          protocol: HTTP
    ---
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  7. pkg/credentialprovider/plugin/plugin_test.go

    			request: &credentialproviderapi.CredentialProviderRequest{
    				Image: "test.registry.io/foobar",
    			},
    			expectedData: []byte(`{"kind":"CredentialProviderRequest","apiVersion":"credentialprovider.kubelet.k8s.io/v1alpha1","image":"test.registry.io/foobar"}
    `),
    			expectedErr: false,
    		},
    		{
    			name:       "successful with v1beta1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 09 06:11:06 UTC 2022
    - 26.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/HtmlDependencyVerificationReportRenderer.java

        }
    
        public void renderNavBar() {
            contents.append("<nav class=\"uk-navbar-container\" uk-navbar>\n" +
                "    <div class=\"uk-navbar-left\">\n" +
                "        <a href=\"\" class=\"uk-navbar-item uk-logo\"><img src=\"img/gradle-logo.png\" width=\"120\"></a>\n" +
                "        <ul class=\"uk-navbar-nav\">\n" +
                "<li class=\"uk-active\"><a href=\"#\">Dependency verification report</a></li>\n" +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/internal/configurer/HierarchicalElementDeduplicatorTest.groovy

                    element("bar") {}
                }
                element("foobar") {
                    element("app") {}
                }
            }
    
            when:
            deduplicateNames()
    
            then:
            elementName("root") == "root"
            elementName("root:foo") == "foo"
            elementName("root:foo:bar") == "bar"
            elementName("root:foobar") == "foobar"
            elementName("root:foobar:app") == "app"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

        ClassLoader classLoader = ClassPathTest.class.getClassLoader();
        File notJar = File.createTempFile("not_a_jar", "txt");
        try {
          assertThat(new ClassPath.LocationInfo(notJar, classLoader).scanResources()).isEmpty();
        } finally {
          notJar.delete();
        }
      }
    
      public void testGetClassPathEntry() throws MalformedURLException, URISyntaxException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 26 14:02:27 UTC 2024
    - 24.9K bytes
    - Viewed (0)
Back to top