Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 703 for SHOW (0.04 sec)

  1. 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)
  2. src/main/webapp/js/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: Sat Jan 11 06:54:28 UTC 2020
    - 189.9K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/BuildScriptClassPathIntegrationTest.groovy

    }
    
    ${mavenCentralRepository()}
    
    dependencies {
        implementation "com.google.guava:guava:19.0"
    }
    
    task show {
        def runtimeClasspath = configurations.runtimeClasspath
        doLast {
            runtimeClasspath.files.each { println it }
        }
    }
    """
    
            expect:
            succeeds("show")
        }
    
        @Issue("gradle/gradle#742")
        @NotYetImplemented
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 20 11:48:31 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  4. build-logic/performance-testing/src/test/kotlin/gradlebuild/performance/tasks/DetermineBaselinesTest.kt

        }
    
        @Test
        fun `resolves to current commit in worker build`() {
            // given
            mockGitOperation(listOf("git", "rev-parse", "HEAD"), "current")
            mockGitOperation(listOf("git", "show", "current:version.txt"), "5.0")
            mockGitOperation(listOf("git", "rev-parse", "--short", "current"), "current")
    
            // then
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 09:29:24 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/model/ModelReport.java

         *     <li><i>full</i> (default value) will show details about types, rules and creators</li>
         *     <li><i>short</i> will only show nodes and their values</li>
         * </ul>
         */
        public enum Format {
            FULL,
            SHORT
        }
    
        private boolean showHidden;
        private Format format = Format.FULL;
    
        @Option(option = "showHidden", description = "Show hidden model elements.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/UnmanagedElementIntegrationTest.groovy

            tasks.create("show") {
                doLast {
                    println "thing: $thing"
                    println "name: $thing.name"
                    println "display-name: $thing.displayName"
                }
            }
        }
    }
    
    apply plugin: Rules
    '''
    
            when:
            run("show")
    
            then:
            output.contains("thing: Thing 'thing'")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FilePropertyLifecycleIntegrationTest.groovy

                    }
                }
    
                task show(type: SomeTask) {
                    prop = file("in.txt")
                    def other = file("other.txt")
                    doFirst {
                        prop = other
                    }
                }
    """
            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
    - 22.6K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependents/DependentComponentsReport.java

         */
        @Console
        public boolean isShowNonBuildable() {
            return showNonBuildable;
        }
    
        @Option(option = "non-buildable", description = "Show non-buildable components.")
        public void setShowNonBuildable(boolean showNonBuildable) {
            this.showNonBuildable = showNonBuildable;
        }
    
        /**
         * Should this include test suites in the report?
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/filters/maxinflight_test.go

    	calls.Wait()
    	// Disable calls notifications in the server
    	waitForCallsMutex.Lock()
    	waitForCalls = false
    	waitForCallsMutex.Unlock()
    
    	// Do this multiple times to show that rate limit rejected requests don't block.
    	for i := 0; i < 2; i++ {
    		if err := expectHTTPGet(server.URL, http.StatusTooManyRequests); err != nil {
    			t.Error(err)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  10. src/go/doc/testdata/d.1.golden

    	const C0 = 0
    
    	// C1 should be second. 
    	const C1 = 1
    
    	// C2 should be third. 
    	const C2 = 2
    
    	// 
    	const (
    		// Single const declarations inside ()'s are considered ungrouped
    		// and show up in sorted order.
    		Cungrouped = 0
    	)
    
    
    VARIABLES
    	// VBx variables should appear before VAx variables. 
    	var (
    		VB2	int	// before VB1
    		VB1	int	// before VB0
    		VB0	int	// at end
    	)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.5K bytes
    - Viewed (0)
Back to top