Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 207 for INITIALIZING (0.14 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelTransformerContextBuilder.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.api.services;
    
    /**
     * The transformerContextBuilder is responsible for initializing the TransformerContext.
     * In case rawModels are missing, it could do new buildingRequests on the ModelBuilder.
     *
     * @since 4.0.0
     */
    public interface ModelTransformerContextBuilder {
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixtureTest.groovy

    import spock.lang.Specification
    
    class GroupedOutputFixtureTest extends Specification {
    
        def "parses task names"() {
            given:
            def consoleOutput = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/validation.go

    	"istio.io/istio/pkg/webhooks/validation/server"
    )
    
    func (s *Server) initConfigValidation(args *PilotArgs) error {
    	if s.kubeClient == nil {
    		return nil
    	}
    
    	log.Info("initializing config validator")
    	// always start the validation server
    	params := server.Options{
    		Schemas:      collections.PilotGatewayAPI(),
    		DomainSuffix: args.RegistryOptions.KubeOptions.DomainSuffix,
    		Mux:          s.httpsMux,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/NodeInitializer.java

     */
    
    package org.gradle.model.internal.core;
    
    import com.google.common.collect.Multimap;
    import org.gradle.model.internal.core.rule.describe.ModelRuleDescriptor;
    
    /**
     * A standalone strategy for initializing a node.
     * <p>
     * Differs from {@link ModelRegistration} in that it's more of a template for a creator.
     * It does not say anything about the actual entity (e.g. its path) or the identity of the creation rule.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. pkg/kubeapiserver/options/serving.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 options contains flags and options for initializing kube-apiserver
    package options
    
    import (
    	genericoptions "k8s.io/apiserver/pkg/server/options"
    	netutils "k8s.io/utils/net"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 20 08:42:09 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/attributes/TestSuiteType.java

         * Unit tests, the default type of test suite
         */
        String UNIT_TEST = "unit-test";
    
        String INTEGRATION_TEST = "integration-test";
    
        /**
         * Functional tests, will be added automatically when initializing a new plugin project
         */
        String FUNCTIONAL_TEST = "functional-test";
    
        String PERFORMANCE_TEST = "performance-test";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 30 17:15:17 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/platform/android/DeferredSocketAdapter.kt

     */
    package okhttp3.internal.platform.android
    
    import javax.net.ssl.SSLSocket
    import okhttp3.Protocol
    
    /**
     * Deferred implementation of SocketAdapter that works by observing the socket
     * and initializing on first use.
     *
     * We use this because eager classpath checks cause confusion and excessive logging in Android,
     * and we can't rely on classnames after proguard, so are probably best served by falling through
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/build-operations/src/test/groovy/org/gradle/internal/operations/CurrentBuildOperationPreservingRunnableTest.groovy

            1 * delegate.run()
            0 * _
        }
    
        def "preserve build operation identifier during execution of the delegate runnable"() {
            given:
            // Set the current build operation to a known value for initializing the runner
            currentBuildOperationRef.set(EXPECTED_INNER_BUILD_OPERATION)
            def runner = runner()
            // Then act as if we've been moved to a code section with a new build operation active
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/session/BuildSessionLifecycleListener.java

     */
    @EventScope(Scope.BuildSession.class)
    public interface BuildSessionLifecycleListener {
        /**
         * Called at the start of the session, immediately after initializing the session services.
         *
         * This method is called before the root build operation has started, so implementations should not perform any expensive work
         * and should not run any user code.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/exported_model.proto

      reserved 'restore_node_name';
      reserved 'save_node_name';
      reserved 'file_prefix_tensor_name';
    
      GraphDef graph_def = 1;
    
      // Name of the initialization node (TF Operation) used for initializing
      // resources like hash tables upon loading.
      string init_node_name = 2;
    
      // Path to the directory where checkpoint files are saved. This directoy is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 06:12:59 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top