Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,410 for _objects (0.25 sec)

  1. platforms/core-runtime/logging-api/src/main/java/org/gradle/api/logging/Logger.java

         *
         * @param message the log message.
         * @param objects the log message parameters.
         */
        void quiet(String message, Object... objects);
    
        /**
         * Logs the given message at info log level.
         *
         * @param message the log message.
         * @param objects the log message parameters.
         */
        @Override
        void info(String message, Object... objects);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/validation/PublicationWithProject.java

        }
    
        @Override
        public boolean equals(Object o) {
            if (this == o) {
                return true;
            }
            if (o == null || getClass() != o.getClass()) {
                return false;
            }
            PublicationWithProject that = (PublicationWithProject) o;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. src/go/ast/scope.go

    // it inserts obj and returns nil.
    func (s *Scope) Insert(obj *Object) (alt *Object) {
    	if alt = s.Objects[obj.Name]; alt == nil {
    		s.Objects[obj.Name] = obj
    	}
    	return
    }
    
    // Debugging support
    func (s *Scope) String() string {
    	var buf strings.Builder
    	fmt.Fprintf(&buf, "scope %p {", s)
    	if s != nil && len(s.Objects) > 0 {
    		fmt.Fprintln(&buf)
    		for _, obj := range s.Objects {
    			fmt.Fprintf(&buf, "\t%s %s\n", obj.Kind, obj.Name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/io/DefaultModelWriter.java

     *
     */
    @Named
    @Singleton
    public class DefaultModelWriter implements ModelWriter {
    
        @Override
        public void write(File output, Map<String, Object> options, Model model) throws IOException {
            Objects.requireNonNull(output, "output cannot be null");
            Objects.requireNonNull(model, "model cannot be null");
    
            output.getParentFile().mkdirs();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/plugins/ObjectConfigurationAction.java

     * or objects.</p>
     */
    public interface ObjectConfigurationAction {
        /**
         * <p>Specifies some target objects to be configured. Any collections or arrays in the given parameters will be
         * flattened, and the script applied to each object in the result, in the order given. Each call to this method adds
         * some additional target objects.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta2/statefulsetspec.go

    	return &StatefulSetSpecApplyConfiguration{}
    }
    
    // WithReplicas sets the Replicas field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Replicas field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:00 UTC 2022
    - 8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/core/v1/iscsipersistentvolumesource.go

    	return &ISCSIPersistentVolumeSourceApplyConfiguration{}
    }
    
    // WithTargetPortal sets the TargetPortal field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the TargetPortal field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/batch/v1beta1/jobtemplatespec.go

    func JobTemplateSpec() *JobTemplateSpecApplyConfiguration {
    	return &JobTemplateSpecApplyConfiguration{}
    }
    
    // WithName sets the Name field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Name field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/core/v1/podsecuritycontext.go

    	return &PodSecurityContextApplyConfiguration{}
    }
    
    // WithSELinuxOptions sets the SELinuxOptions field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the SELinuxOptions field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/batch/v1/jobtemplatespec.go

    func JobTemplateSpec() *JobTemplateSpecApplyConfiguration {
    	return &JobTemplateSpecApplyConfiguration{}
    }
    
    // WithName sets the Name field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Name field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 8.8K bytes
    - Viewed (0)
Back to top