Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. cmd/sts-handlers_test.go

    		Creds:     cr.NewStaticV4(value.AccessKeyID, value.SecretAccessKey, value.SessionToken),
    		Secure:    s.secure,
    		Transport: s.TestSuiteCommon.client.Transport,
    	})
    	if err != nil {
    		c.Fatalf("Error initializing client: %v", err)
    	}
    
    	// Validate that the client from sts creds can access the bucket.
    	c.mustListObjects(ctx, minioClient, bucket)
    
    	// Create an madmin client with user creds
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  9. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/services/NativeServicesInitializationTest.groovy

    import spock.lang.Specification
    
    import javax.inject.Inject
    import java.lang.reflect.Constructor
    
    class NativeServicesInitializationTest extends Specification {
    
        def "cannot get an instance of NativeServices without initializing first" () {
            // Construct an isolated classloader so we can load a pristine NativeServices class
            // that's guaranteed not to have been initialized before
            URL[] jars = [
                jar(NativeServices),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 08:51:56 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/webhtml.go

    )
    
    var (
    	htmlTemplates    *template.Template // Lazily loaded templates
    	htmlTemplateInit sync.Once
    )
    
    // getHTMLTemplates returns the set of HTML templates used by pprof,
    // initializing them if necessary.
    func getHTMLTemplates() *template.Template {
    	htmlTemplateInit.Do(func() {
    		htmlTemplates = template.New("templategroup")
    		addTemplates(htmlTemplates)
    		report.AddSourceTemplates(htmlTemplates)
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top