Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 256 for HIDE (0.13 sec)

  1. platforms/documentation/docs/src/docsTest/java/org/gradle/docs/samples/IntegrationTestSamplesExecutor.java

            }
        }
    
        private void rerunReusingStoredConfigurationCacheEntry(List<String> args, List<String> flags) {
            // Rerun tasks. If the task is up-to-date, then its actions aren't executed.
            // This might hide issues with Groovy closures, as the methods referenced inside the closure are resolved dynamically.
            try {
                createExecuter(args, flags).withArgument("--rerun-tasks").run();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    		"Max number of nodes to show",
    		"Uses heuristics to limit the number of locations to be displayed.",
    		"On graphs, dotted edges represent paths through nodes that have been removed."),
    	"nodefraction": "Hide nodes below <f>*total",
    	"edgefraction": "Hide edges below <f>*total",
    	"trim": helpText(
    		"Honor nodefraction/edgefraction/nodecount defaults",
    		"Set to false to get the full profile, without any trimming."),
    	"focus": helpText(
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/PmdInvoker.groovy

            // PMD uses java.class.path to determine it's implementation classpath for incremental analysis
            // Since we run PMD inside the Gradle daemon, this pulls in all of Gradle's runtime.
            // To hide this from PMD, we override the java.class.path to just the PMD classpath from Gradle's POV.
            if (parameters.incrementalAnalysis.get()) {
                // TODO: Can we get rid of this now that we're running in a worker?
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/plugins/timepicker/bootstrap-timepicker.min.js

    .length?"0"+this.second:this.second):"")+(this.showMeridian?" "+this.meridian:"")},hideWidget:function(){this.isOpen!==!1&&(this.$element.trigger({type:"hide.timepicker",time:{value:this.getTime(),hours:this.hour,minutes:this.minute,seconds:this.second,meridian:this.meridian}}),"modal"===this.template&&this.$widget.modal?this.$widget.modal("hide"):this.$widget.removeClass("open"),a(c).off("mousedown.timepicker, touchend.timepicker",this.handleDocumentClick),this.isOpen=!1,this.$widget.detach())}...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 18.2K bytes
    - Viewed (0)
  5. pilot/pkg/leaderelection/k8sleaderelection/k8sresourcelock/interface.go

    	Key string
    	// EventRecorder is optional.
    	EventRecorder EventRecorder
    }
    
    // Interface offers a common interface for locking on arbitrary
    // resources used in leader election.  The Interface is used
    // to hide the details on specific implementations in order to allow
    // them to change over time.  This interface is strictly for use
    // by the leaderelection code.
    type Interface interface {
    	// Get returns the LeaderElectionRecord
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 6K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

        }
    
        @Requires(
            value = [IntegTestPreconditions.NotParallelExecutor, IntegTestPreconditions.NotIsolatedProjects],
            reason = "these features hide incubating message"
        )
        def "presents incubating message"() {
            file("gradle.properties") << "org.gradle.configureondemand=false"
            buildFile << "task foo"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/script.js

                }
                $configurationDiv.append($configurationTitle);
    
                var $contentDiv = $('<div/>').addClass('configurationContent').hide();
                var $tree = $('<div>').addClass('dependencyTree');
                $contentDiv.append($tree);
                if (configuration.dependencies && configuration.dependencies.length > 0) {
                    var nodes = [];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 24 19:38:03 UTC 2020
    - 8.2K bytes
    - Viewed (0)
  8. src/main/webapp/js/admin/popper.min.js.map

    refRect.right < bound.left\n  ) {\n    // Avoid unnecessary DOM access if visibility hasn't changed\n    if (data.hide === true) {\n      return data;\n    }\n\n    data.hide = true;\n    data.attributes['x-out-of-boundaries'] = '';\n  } else {\n    // Avoid unnecessary DOM access if visibility hasn't changed\n    if (data.hide === false) {\n      return data;\n    }\n\n    data.hide = false;\n    data.attributes['x-out-of-boundaries'] = false;\n  }\n\n  return data;\n}\n","import setStyles from...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 121K bytes
    - Viewed (0)
  9. src/net/net.go

    // applicable.
    func genericReadFrom(c *TCPConn, r io.Reader) (n int64, err error) {
    	// Use wrapper to hide existing r.ReadFrom from io.Copy.
    	return io.Copy(tcpConnWithoutReadFrom{TCPConn: c}, r)
    }
    
    // noWriteTo can be embedded alongside another type to
    // hide the WriteTo method of that other type.
    type noWriteTo struct{}
    
    // WriteTo hides another WriteTo method.
    // It should never be called.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ExtensionContainerTest.groovy

            extension instanceof ExtensionAware
    
            when:
            extension.extensions.create("thing", Thing, "bar")
    
            then:
            extension.thing.name == "bar"
        }
    
        def "can hide implementation type of extensions"() {
            given:
            container.create Parent, 'foo', Child
            container.create Capability, 'bar', Impl
    
            expect:
            container.findByType(Parent) != null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.5K bytes
    - Viewed (0)
Back to top