Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 607 for logout (0.27 sec)

  1. istioctl/pkg/writer/envoy/configdump/ecds_test.go

    )
    
    func TestPrintEcdsSummary(t *testing.T) {
    	gotOut := &bytes.Buffer{}
    	cw := &ConfigWriter{Stdout: gotOut}
    	cd, _ := os.ReadFile("testdata/ecds/configdump.json")
    	cw.Prime(cd)
    	err := cw.PrintEcdsSummary()
    	assert.NoError(t, err)
    
    	util.CompareContent(t, gotOut.Bytes(), "testdata/ecds/output.txt")
    }
    
    func TestPrintEcdsYaml(t *testing.T) {
    	gotOut := &bytes.Buffer{}
    	cw := &ConfigWriter{Stdout: gotOut}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 13 01:08:07 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  2. pkg/ctrlz/fw/context.go

    	JSONRouter() *mux.Router
    
    	// Layout is the template used as the primary layout for the topic's HTML content.
    	Layout() *template.Template
    }
    
    type context struct {
    	htmlRouter *mux.Router
    	jsonRouter *mux.Router
    	layout     *template.Template
    }
    
    // NewContext creates a new TopicContext.
    func NewContext(htmlRouter *mux.Router, jsonRouter *mux.Router, layout *template.Template) TopicContext {
    	return context{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/artifact/repository/DefaultArtifactRepository.java

         * @param url           the URL of the repository
         * @param layout        the layout of the repository
         * @param uniqueVersion whether to assign each snapshot a unique version
         */
        public DefaultArtifactRepository(String id, String url, ArtifactRepositoryLayout layout, boolean uniqueVersion) {
            super(id, url);
            this.layout = layout;
        }
    
        /**
         * Create a remote download repository.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/files/copy/groovy/build.gradle

    tasks.register('copyReportsForArchiving', Copy) {
        from layout.buildDirectory.file("reports/my-report.pdf"), layout.projectDirectory.file("src/docs/manual.pdf")
        into layout.buildDirectory.dir("toArchive")
    }
    // end::copy-multiple-files-example[]
    
    // tag::copy-multiple-files-with-flat-filter-example[]
    tasks.register('copyPdfReportsForArchiving', Copy) {
        from layout.buildDirectory.dir("reports")
        include "*.pdf"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. docs/en/docs/img/logo-margin/logo-teal-vector.svg

    logo-teal-vector.svg...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Feb 04 20:56:59 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/groovy/build.gradle

        classFiles.from tasks.named('compileJava').map { it.outputs.files }
        destinationDir = file(layout.buildDirectory.dir('instrumented'))
    }
    // end::inferred-task-dep[]
    
    // tag::inferred-task-dep-with-files[]
    tasks.register('instrumentClasses2', Instrument) {
        classFiles.from layout.files(tasks.named('compileJava'))
        destinationDir = file(layout.buildDirectory.dir('instrumented'))
    }
    // end::inferred-task-dep-with-files[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/kotlin/build.gradle.kts

        classFiles.from(tasks.compileJava.map { it.outputs.files })
        destinationDir = layout.buildDirectory.dir("instrumented")
    }
    // end::inferred-task-dep[]
    
    // tag::inferred-task-dep-with-files[]
    tasks.register<Instrument>("instrumentClasses2") {
        classFiles.from(layout.files(tasks.compileJava))
        destinationDir = layout.buildDirectory.dir("instrumented")
    }
    // end::inferred-task-dep-with-files[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. docs/en/docs/img/logo-teal-vector.svg

    logo-teal-vector.svg...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Feb 04 20:56:59 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/set_tpu_infeed_layout.cc

        if (succeeded(layout)) {
          minor_to_major = layout.value();
        } else {
          /* If we're not running on a TPU node, we might not be able to
           * actually call the part of the TPU API that gives us layout.
           * This happens e.g. for unit tests. Below we just create a reasonable
           * layout.  We sort by dimension size, which makes the layout agree with
           * the "correct" TPU layout in surprisingly many cases.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/repository/legacy/repository/DefaultArtifactRepositoryFactory.java

            ArtifactRepositoryLayout layout = repositoryLayouts.get(layoutId);
    
            checkLayout(id, layoutId, layout);
    
            return createDeploymentArtifactRepository(id, url, layout, uniqueVersion);
        }
    
        private void checkLayout(String repositoryId, String layoutId, ArtifactRepositoryLayout layout)
                throws UnknownRepositoryLayoutException {
            if (layout == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top