Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 703 for SHOW (0.04 sec)

  1. cmd/kubeadm/app/cmd/phases/init/showjoincommand.go

    		`)))
    )
    
    // NewShowJoinCommandPhase creates a kubeadm workflow phase that implements showing the join command.
    func NewShowJoinCommandPhase() workflow.Phase {
    	return workflow.Phase{
    		Name:         "show-join-command",
    		Short:        "Show the join command for control-plane and worker node",
    		Run:          showJoinCommand,
    		Dependencies: []string{"bootstrap-token", "upload-certs"},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 15:35:58 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/ManagedTypeDslIntegrationTest.groovy

    }
    
    model {
        tasks {
            show(Task) {
                doLast {
                    def t = $.thing
                    println "t.number: $t.number"
                    println "t.file: $t.file"
                }
            }
        }
        thing(Thing)
        thing {
            number "12"
            file "build.gradle"
        }
    }
    '''
    
            when:
            run "show"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. Development.md

    Another more targeted interface is `CompilationFailedIndicator`.
    This interface is used to indicate that the exception is caused by a compilation failure. 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 22:54:40 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/TaskReportTask.java

            this.renderer = renderer;
        }
    
        /**
         * Sets whether to show "invisible" tasks without a group or dependent tasks.
         *
         * This property can be set via command-line option '--all'.
         */
        @Option(option = "all", description = "Show additional tasks and detail.")
        public void setShowDetail(boolean detail) {
            this.detail = detail;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/bootstrap.min.js.map

    Trigger.FOCUS : Trigger.HOVER\n      ] = true\n    }\n\n    if ($(context.getTipElement()).hasClass(ClassName.SHOW) || context._hoverState === HoverState.SHOW) {\n      context._hoverState = HoverState.SHOW\n      return\n    }\n\n    clearTimeout(context._timeout)\n\n    context._hoverState = HoverState.SHOW\n\n    if (!context.config.delay || !context.config.delay.show) {\n      context.show()\n      return\n    }\n\n    context._timeout = setTimeout(() => {\n      if (context._hoverState === HoverState.SHOW)...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 185.8K bytes
    - Viewed (1)
  6. platforms/core-runtime/logging-api/src/main/java/org/gradle/api/logging/configuration/WarningMode.java

     * @since 4.5
     */
    public enum WarningMode {
        /**
         * Show all warnings.
         */
        All(true),
    
        /**
         * Display a summary at the end of the build instead of rendering all warnings into the console output.
         */
        Summary(false),
    
        /**
         * No deprecation warnings at all.
         */
        None(false),
    
        /**
         * Show all warnings and fail the build if any warning present
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_retract_rationale.txt

    go get example.com/retract/rationale@v1.0.0-multiline1
    stderr '^go: warning: example.com/retract/rationale@v1.0.0-multiline1: retracted by module author: short description$'
    ! stderr 'detail'
    
    # 'go list' should show the full message.
    go list -m -retracted -f '{{.Retracted}}' example.com/retract/rationale
    cmp stdout multiline
    
    # 'go get' output should be the same whether the retraction appears at top-level
    # or in a block.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  8. src/go/doc/testdata/d1.go

    	VB1 int // before VB0
    	VB0 int // at end
    )
    
    const (
    	// Single const declarations inside ()'s are considered ungrouped
    	// and show up in sorted order.
    	Cungrouped = 0
    )
    
    var (
    	// Single var declarations inside ()'s are considered ungrouped
    	// and show up in sorted order.
    	Vungrouped = 0
    )
    
    // T2 should be third.
    type T2 struct{}
    
    // Grouped types are sorted nevertheless.
    type (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionPropertyIntegrationTest.groovy

                    }
                }
    
                task show(type: SomeTask) {
                    def layout = project.layout
                    prop = [layout.projectDir.file("in.txt")]
                    doFirst {
                        prop.set([layout.projectDir.file("other.txt")])
                    }
                }
    """
            file("in.txt").createFile()
    
            when:
            fails("show")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/providers/propertyConvention/tests/propertyConvention.out

    value = convention 1
    value = convention 2
    
    > Task :show
    value = explicit value
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 133 bytes
    - Viewed (0)
Back to top