Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 106 for addLine (0.2 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

     *
     * <li>Calling {@link #addProvider(ServiceRegistrationProvider)} to register a service provider bean. A provider bean may have factory, decorator and configuration methods as described below.</li>
     *
     * <li>Adding a factory method. A factory method should be annotated with {@literal @}{@link Provides}, have a name that starts with 'create', and have a non-void return type.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/defaults_test.go

    	// Forbidden: adding a new field `MyField *bool` and defaulting it to a non-nil value
    	// Forbidden: defaulting an existing field `MyField *bool` when it was previously not defaulted
    	// Forbidden: changing an existing default value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller.go

    		UpdateFunc: func(oldObj, newObj interface{}) {
    			jm.updateJob(logger, oldObj, newObj)
    		},
    		DeleteFunc: func(obj interface{}) {
    			jm.deleteJob(logger, obj)
    		},
    	}); err != nil {
    		return nil, fmt.Errorf("adding Job event handler: %w", err)
    	}
    	jm.jobLister = jobInformer.Lister()
    	jm.jobStoreSynced = jobInformer.Informer().HasSynced
    
    	if _, err := podInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * @return The container.
         */
        <T> NamedDomainObjectContainer<T> container(Class<T> type, Closure factoryClosure);
    
        /**
         * Allows adding DSL extensions to the project. Useful for plugin authors.
         *
         * @return Returned instance allows adding DSL extensions to the project
         */
        @Override
        ExtensionContainer getExtensions();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    In Gradle 8.0 the invocation changes to `gradle :nested:nestedNested:compileJava`.
    
    ==== Adding `jst.ejb` with the `eclipse wtp` plugin now removes the `jst.utility` facet
    
    The `eclipse wtp` plugin adds the `jst.utility` facet to java projects.
    Now, adding the `jst.ejb` facet implicitly removes the `jst.utility` facet:
    
    ```
    eclipse {
        wtp {
            facet {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. src/runtime/mprof.go

    // it transfers the local buffer into the profile. As part of that step, it also
    // transfers any "additional contention" time to the profile. Any lock
    // contention that it experiences while adding samples to the profile will be
    // recorded later as "additional contention" and not include a call stack, to
    // avoid an echo.
    type lockTimer struct {
    	lock      *mutex
    	timeRate  int64
    	timeStart int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // Default node tolerations to be applied to all deployments so that all pods can be
      // scheduled to nodes with matching taints. Each component can overwrite
      // these default values by adding its tolerations block in the relevant section below
      // and setting the desired values.
      // Configure this field in case that all pods of Istio control plane are expected to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    ====
    
    === Blackbox integration testing
    
    For integration tests, you have the option to define the test set itself as additional module.
    You do this similar to how you turn your main sources into a module:
    by adding a `module-info.java` file to the corresponding source set (e.g. `integrationTests/java/module-info.java`).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  9. src/time/time.go

    // ago that all the times we care about will be positive, and then round
    // to zero and round down coincide. These presentation routines already
    // have to add the zone offset, so adding the translation to the
    // alternate epoch is cheap. For example, having a non-negative time t
    // means that we can write
    //
    //	sec = t % 60
    //
    // instead of
    //
    //	sec = t % 60
    //	if sec < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  10. configure.py

        question: optional string for how to ask for user input.
        yes_reply: optional string for reply when feature is enabled.
        no_reply: optional string for reply when feature is disabled.
        bazel_config_name: adding config to .bazelrc instead of action_env.
      """
      var = int(
          get_var(environ_cp, var_name, query_item, enabled_by_default, question,
                  yes_reply, no_reply))
    
      if not bazel_config_name:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top