Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Review (0.18 sec)

  1. pkg/kube/util.go

    		}
    		if auths.Exec != nil && !allowlist.Contains("exec") {
    			return fmt.Errorf("exec is not allowed")
    		}
    		// Reconstruct the AuthInfo so if a new field is added we will not include it without review
    		config.AuthInfos[k] = &api.AuthInfo{
    			// LocationOfOrigin: Not needed
    			ClientCertificate:     auths.ClientCertificate,
    			ClientCertificateData: auths.ClientCertificateData,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. samples/bookinfo/src/productpage/productpage.py

        "endpoint": "ratings",
        "children": []
    }
    
    reviews = {
        "name": "http://{0}{1}:{2}".format(reviewsHostname, servicesDomain, reviewsPort),
        "endpoint": "reviews",
        "children": [ratings]
    }
    
    productpage = {
        "name": "http://{0}{1}:{2}".format(detailsHostname, servicesDomain, detailsPort),
        "endpoint": "details",
        "children": [details, reviews]
    }
    
    service_dict = {
        "productpage": productpage,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/analyzers_test.go

    			{msg.ReferencedResourceNotFound, "VirtualService default/reviews-bookinfo-other"},
    			{msg.ReferencedResourceNotFound, "VirtualService default/reviews-mirror-bogushost"},
    			{msg.ReferencedResourceNotFound, "VirtualService default/reviews-bogusport"},
    			{msg.VirtualServiceDestinationPortSelectorRequired, "VirtualService default/reviews-2port-missing"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_builder.go

    		supportsIPv6:       proxy.SupportsIPv6(),
    		sendHbone:          features.EnableHBONESend || proxy.IsWaypointProxy(),
    		locality:           proxy.Locality,
    		proxyLabels:        proxy.Labels,
    		proxyView:          proxy.GetView(),
    		proxyIPAddresses:   proxy.IPAddresses,
    		configNamespace:    proxy.ConfigNamespace,
    		req:                req,
    		cache:              cache,
    	}
    	if proxy.Metadata != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/JavaGradlePluginPlugin.java

                ArtifactView view = runtimeClasspath.getIncoming().artifactView(config ->
                    config.componentFilter(spec(JavaGradlePluginPlugin::excludeGradleApi))
                );
                return project.getObjects().fileCollection().from(
                    sourceSet.getOutput(),
                    view.getFiles().getElements()
                );
            };
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 06:56:29 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    [[find_all_daemons]]
    == Find Daemons
    
    If you have installed the Java Development Kit (JDK), you can view live daemons with the `jps` command.
    
    ----
    $ jps
    ----
    ----
    33920 Jps
    27171 GradleDaemon
    22792
    ----
    
    Live Daemons appear under the name `GradleDaemon`.
    Because this command uses the JDK, you can view Daemons running any version of Gradle.
    
    [[enable_deamon]]
    == Enable Daemon
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. JavadocStyleGuide.md

    You can view the latest and full list of accepted tags in [`doclint/HtmlTag.java`](https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/javax/swing/text/html/HTML.Tag.html) for your JDK of choice.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

            file("dir1/file2").createFile()
            file("dir2/sub/file3").createFile()
    
            expect:
            succeeds()
            outputContains("files = [file1, file2, file3]")
        }
    
        def "can view the elements of file collection as a Provider"() {
            buildFile """
                def files = objects.fileCollection()
                def elements = files.elements
    
                def name = 'a'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top