Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 690 for addKind (0.4 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ConfigurationContainer.java

     * <pre class='autoTested'>
     * plugins {
     *     id 'java' // so that I can use 'implementation', 'testImplementation' configurations
     * }
     *
     * configurations {
     *   //adding a configuration:
     *   myConfiguration
     *
     *   //adding a configuration that extends existing configuration:
     *   //(testImplementation was added by the java plugin)
     *   myIntegrationTestsCompile.extendsFrom(testImplementation)
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/metrics/error_collector_inst.h

      std::string common_error_message_;
      // Name of the running pass.
      std::string pass_name_;
      // Pointer to the global ErrorCollector instance.
      ErrorCollector *error_collector_;
    };
    
    // Prefix when adding error code as a note in Diagnostic.
    constexpr char kErrorCodePrefix[] = "Error code: ";
    
    // Adds error code to a newly created InFlightDiagnostic.
    inline InFlightDiagnostic AttachErrorCode(InFlightDiagnostic &&diag,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 01:48:36 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/artifact/handler/manager/DefaultArtifactHandlerManager.java

            // but to create those, proper filtering should happen via Type properties.
        }
    
        @Override
        public void addHandlers(Map<String, ArtifactHandler> handlers) {
            throw new UnsupportedOperationException("Adding handlers programmatically is not supported anymore");
        }
    
        @Deprecated
        public Set<String> getHandlerTypes() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/ExecutionList.java

        checkNotNull(runnable, "Runnable was null.");
        checkNotNull(executor, "Executor was null.");
    
        // Lock while we check state. We must maintain the lock while adding the new pair so that
        // another thread can't run the list out from under us. We only add to the list if we have not
        // yet started execution.
        synchronized (this) {
          if (!executed) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 21:17:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. architecture/standards/0002-avoid-using-java-serialization.md

    - **Security:**
    Java serialization poses security risks, especially related to deserialization vulnerabilities.
    
    - **Version Compatibility:**
    With Java serialization, even minor changes to a class (like adding a field) can break compatibility.
    
    - **Cross-Language Compatibility:**
    Java serialization is inherently Java-centric and does not support cross-language scenarios well.
    
    - **Type Safety:**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 22:32:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. src/maps/maps.go

    func Clone[M ~map[K]V, K comparable, V any](m M) M {
    	// Preserve nil in case it matters.
    	if m == nil {
    		return nil
    	}
    	return clone(m).(M)
    }
    
    // Copy copies all key/value pairs in src adding them to dst.
    // When a key in src is already present in dst,
    // the value in dst will be overwritten by the value associated
    // with the key in src.
    func Copy[M1 ~map[K]V, M2 ~map[K]V, K comparable, V any](dst M1, src M2) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 20:35:05 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/ExecutionList.java

        checkNotNull(runnable, "Runnable was null.");
        checkNotNull(executor, "Executor was null.");
    
        // Lock while we check state. We must maintain the lock while adding the new pair so that
        // another thread can't run the list out from under us. We only add to the list if we have not
        // yet started execution.
        synchronized (this) {
          if (!executed) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 21:17:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. pilot/pkg/bootstrap/servicecontroller.go

    		serviceRegistry := provider.ID(r)
    		if registered.Contains(serviceRegistry) {
    			log.Warnf("%s registry specified multiple times.", r)
    			continue
    		}
    		registered.Insert(serviceRegistry)
    		log.Infof("Adding %s registry adapter", serviceRegistry)
    		switch serviceRegistry {
    		case provider.Kubernetes:
    			if err := s.initKubeRegistry(args); err != nil {
    				return err
    			}
    		default:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loong64/asm.go

    	// loong64 ELF relocation (endian neutral)
    	//		offset     uint64
    	//		symreloc   uint64  // The high 32-bit is the symbol, the low 32-bit is the relocation type.
    	//		addend     int64
    
    	elfsym := ld.ElfSymForReloc(ctxt, r.Xsym)
    	switch r.Type {
    	default:
    		return false
    	case objabi.R_ADDR, objabi.R_DWARFSECREF:
    		switch r.Size {
    		case 4:
    			out.Write64(uint64(sectoff))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/path-operation-advanced-configuration.md

    If you want to use your APIs' function names as `operationId`s, you can iterate over all of them and override each *path operation's* `operation_id` using their `APIRoute.name`.
    
    You should do it after adding all your *path operations*.
    
    ```Python hl_lines="2  12-21  24"
    {!../../../docs_src/path_operation_advanced_configuration/tutorial002.py!}
    ```
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top