Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 97 for growing (0.16 sec)

  1. src/main/webapp/js/admin/plugins/form-validator/html5.js

    laceholder]").each(function(){this.__defaultValue=this.getAttribute("placeholder"),a(this).bind("focus",function(){this.value===this.__defaultValue&&(this.value="",a(this).removeClass("showing-placeholder"))}).bind("blur",function(){""===a.trim(this.value)&&(this.value=this.__defaultValue,a(this).addClass("showing-placeholder"))})})})};a.formUtils.$win.bind("validatorsLoaded formValidationSetup",function(b,c){c||(c=a("form")),e(c)}),a.formUtils.setupValidationUsingHTML5Attr=e}(a,window)});...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/evaluationSchema/SchemaComponents.kt

        )
    }
    
    
    /**
     * Provides grouping capabilities for features used in schema building.
     */
    internal
    interface AnalysisSchemaComponent {
        fun typeDiscovery(): List<TypeDiscovery> = listOf()
        fun propertyExtractors(): List<PropertyExtractor> = listOf()
        fun functionExtractors(): List<FunctionExtractor> = listOf()
    }
    
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. pkg/probe/doc.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package probe contains utilities for health probing, as well as health status information.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 16 17:48:21 UTC 2016
    - 719 bytes
    - Viewed (0)
  4. pkg/probe/probe.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package probe
    
    // Result is a string used to handle the results for probing container readiness/liveness
    type Result string
    
    const (
    	// Success Result
    	Success Result = "success"
    	// Warning Result. Logically success, but with additional debugging information attached.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:20:50 UTC 2019
    - 966 bytes
    - Viewed (0)
  5. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/package-info.java

    /**
     * Configuration input tracking implementation.
     * <p>
     * The build configuration may be influenced by various "environmental" inputs.
     * For example, build logic may read files or access environment variables.
     * Knowing these inputs is important for configuration caching to understand if the cache has to be invalidated when the value of the system property changes.
     * It can also be used to determine undeclared task inputs, and the likes.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. guava-gwt/test/com/google/common/GwtTestSuite.java

    import com.google.gwt.junit.tools.GWTTestSuite;
    
    import junit.framework.Test;
    import junit.framework.TestCase;
    
    import java.io.IOException;
    
    /**
     * Runs all _gwt tests. Grouping them into a suite is much faster than running each as a one-test
     * "suite," as the per-suite setup is expensive.
     */
    public class GwtTestSuite extends TestCase {
      public static Test suite() throws IOException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 23 13:24:59 UTC 2016
    - 1.6K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGGroupByInstancesNotSupportedIntegrationTest.groovy

            fails "test"
    
            then:
            def result = new DefaultTestExecutionResult(testDirectory)
            result.testClassStartsWith('Gradle Test Executor').assertExecutionFailedWithCause(
                containsString("Grouping tests by instances is not supported by this version of TestNG."))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/names/generate.go

    type NameGenerator interface {
    	// GenerateName generates a valid name from the base name, adding a random suffix to
    	// the base. If base is valid, the returned name must also be valid. The generator is
    	// responsible for knowing the maximum valid name length.
    	GenerateName(base string) string
    }
    
    // simpleNameGenerator generates random names.
    type simpleNameGenerator struct{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  9. pilot/cmd/pilot-agent/metrics/metrics.go

    var (
    	typeTag = monitoring.CreateLabel("type")
    
    	// StartupTime measures the time it takes for the agent to get ready Note: This
    	// is dependent on readiness probes. This means our granularity is correlated to
    	// the probing interval.
    	startupTime = monitoring.NewGauge(
    		"startup_duration_seconds",
    		"The time from the process starting to being marked ready.",
    	)
    
    	// scrapeErrors records total number of failed scrapes.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. istioctl/cmd/options.go

    		rootCmd.PersistentFlags().VisitAll(func(flag *pflag.Flag) {
    			if _, ok := helpFlags[flag.Name]; ok {
    				// Currently every flag.Shorthand is "", so there is no point in showing shorthands
    				shorthand := "   "
    				if flag.Shorthand != "" {
    					shorthand = "-" + flag.Shorthand + ","
    				}
    				c.Printf("  %s --%s: %s\n", shorthand, flag.Name, flag.Usage)
    			}
    		})
    	})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top