Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,303 for Managed (0.13 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultDependencyManagementImporter.java

                                    Version.V40,
                                    "Ignored POM import for: " + toString(dependency) + " as already imported "
                                            + toString(present) + ". Add the conflicting managed dependency directly "
                                            + "to the dependencyManagement section of the POM.");
                        }
                    }
                }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 06:13:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. src/internal/poll/fd_windows_test.go

    func findLoggedFD(h syscall.Handle) (lfd *loggedFD, found bool) {
    	logMu.Lock()
    	defer logMu.Unlock()
    
    	lfd, found = loggedFDs[h]
    	return lfd, found
    }
    
    // checkFileIsNotPartOfNetpoll verifies that f is not managed by netpoll.
    // It returns error, if check fails.
    func checkFileIsNotPartOfNetpoll(f *os.File) error {
    	lfd, found := findLoggedFD(syscall.Handle(f.Fd()))
    	if !found {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 14 08:33:36 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/ServiceManager.java

       *
       * @param listener the listener to run when the manager changes state
       * @param executor the executor in which the listeners callback methods will be run.
       */
      public void addListener(Listener listener, Executor executor) {
        state.addListener(listener, executor);
      }
    
      /**
       * Initiates service {@linkplain Service#startAsync startup} on all the services being managed. It
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 33K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/output/types.go

    	// ResidualTimeSeconds represents the duration in seconds relative to the residual time before expiration.
    	ResidualTimeSeconds int64
    
    	// ExternallyManaged defines if the certificate is externally managed.
    	ExternallyManaged bool
    
    	// CAName represents the name of the CA that signed the certificate.
    	// This field is empty for self-signed, root CA certificates.
    	CAName string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. pkg/proxy/util/linebuffer.go

    	lines int
    }
    
    // NewDiscardLineBuffer returns a dummy LineBuffer that counts the number of writes but
    // throws away the data. (This is used for iptables proxy partial syncs, to keep track of
    // how many rules we managed to avoid having to sync.)
    func NewDiscardLineBuffer() LineBuffer {
    	return &discardLineBuffer{}
    }
    
    // Write is part of LineBuffer
    func (buf *discardLineBuffer) Write(args ...interface{}) {
    	buf.lines++
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java

                return this;
            }
    
            /**
             * Adds the specified managed dependency.
             *
             * @param managedDependency The managed dependency to add, may be {@code null} in which case the call
             *                          will have no effect.
             * @return this request for chaining, never {@code null}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/composition/DefaultDependencyManagementImporter.java

                                    .setMessage("Ignored POM import for: " + toString(dependency) + " as already imported "
                                            + toString(present) + ". Add the conflicting managed dependency directly "
                                            + "to the dependencyManagement section of the POM."));
                        }
                    }
                }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 06:13:27 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/output/v1alpha3/types.go

    	// ResidualTimeSeconds represents the duration in seconds relative to the residual time before expiration.
    	ResidualTimeSeconds int64 `json:"residualTime"`
    
    	// ExternallyManaged defines if the certificate is externally managed.
    	ExternallyManaged bool `json:"externallyManaged"`
    
    	// CAName represents the name of the CA that signed the certificate.
    	// This field is empty for self-signed, root CA certificates.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/model/ObjectFactory.java

         *
         * <p>Interfaces are supported if they declare a read-only {@code name} property of type String, and are otherwise empty or consist entirely of managed properties.</p>
         *
         * <p>All objects <b>MUST</b> expose their name as a bean property called "name". The name must be constant for the life of the object.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. tensorflow/c/tf_tensor.h

    //
    // The data will be deallocated by a subsequent call to TF_DeleteTensor via:
    //      (*deallocator)(data, len, deallocator_arg)
    // Clients must provide a custom deallocator function so they can pass in
    // memory managed by something like numpy.
    //
    // May return NULL (and invoke the deallocator) if the provided data buffer
    // (data, len) is inconsistent with a tensor of the given TF_DataType
    // and the shape specified by (dima, num_dims).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 16:40:30 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top