Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 1,229 for createG (0.04 seconds)

  1. generics.go

    }
    
    func (c createG[T]) Omit(columns ...string) CreateInterface[T] {
    	return createG[T]{c.with(func(db *DB) *DB {
    		return db.Omit(columns...)
    	})}
    }
    
    func (c createG[T]) Set(assignments ...clause.Assigner) SetCreateOrUpdateInterface[T] {
    	return c.processSet(assignments...)
    }
    
    func (c createG[T]) Create(ctx context.Context, r *T) error {
    	return c.g.apply(ctx).Create(r).Error
    }
    
    Created: Sun Dec 28 09:35:17 GMT 2025
    - Last Modified: Sun Nov 02 14:09:18 GMT 2025
    - 25.9K bytes
    - Click Count (0)
  2. callbacks/create.go

    				if i, ok := value.(BeforeCreateInterface); ok {
    					called = true
    					db.AddError(i.BeforeCreate(tx))
    				}
    			}
    			return called
    		})
    	}
    }
    
    // Create create hook
    func Create(config *Config) func(db *gorm.DB) {
    	supportReturning := utils.Contains(config.CreateClauses, "RETURNING")
    
    	return func(db *gorm.DB) {
    		if db.Error != nil {
    			return
    		}
    
    Created: Sun Dec 28 09:35:17 GMT 2025
    - Last Modified: Tue Jul 29 11:06:13 GMT 2025
    - 13K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/suggest/Suggester.java

                    created = true;
                }
                return created;
            } catch (final Exception e) {
                if (logger.isDebugEnabled()) {
                    logger.debug("Failed to create suggest index: index={}", index, e);
                }
                throw new SuggesterException("Failed to create suggest index: " + index, e);
            }
        }
    
        /**
    Created: Sat Dec 20 13:04:59 GMT 2025
    - Last Modified: Mon Nov 24 03:40:05 GMT 2025
    - 21.6K bytes
    - Click Count (3)
  4. src/main/java/org/codelibs/fess/app/web/admin/role/AdminRoleAction.java

        /**
         * Creates a new role item.
         *
         * @param form the create form containing the new item data
         * @return HTML response redirecting to the list page after creation
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse create(final CreateForm form) {
            verifyCrudMode(form.crudMode, CrudMode.CREATE, this::asListHtml);
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 12.8K bytes
    - Click Count (0)
  5. guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

     *       verified or created.
     *   <li>If a new edge needs to be created, the outgoing edges of the acquired locks are traversed
     *       to check for a cycle that reaches the lock to be acquired. If no cycle is detected, a new
     *       "safe" edge is created.
     *   <li>If a cycle is detected, an "unsafe" (cyclic) edge is created to represent a potential
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Sep 11 17:06:34 GMT 2025
    - 35.9K bytes
    - Click Count (0)
  6. helm/minio/values.yaml

      maxUnavailable: 1
    
    ## Specify the service account to use for the MinIO pods. If 'create' is set to 'false'
    ## and 'name' is left unspecified, the account 'default' will be used.
    serviceAccount:
      create: true
      ## The name of the service account to use. If 'create' is 'true', a service account with that name
      ## will be created.
      name: "minio-sa"
    
    metrics:
      serviceMonitor:
        enabled: false
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 19.7K bytes
    - Click Count (1)
  7. src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java

                }
                boolean created = false;
                try (ImageInputStream input = ImageIO.createImageInputStream(responseData.getResponseBody())) {
                    switch (saveImage(input, outputFile)) {
                    case OK:
                        created = true;
                        break;
                    case FAILED:
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 10.5K bytes
    - Click Count (0)
  8. src/main/java/jcifs/smb/MultiChannelManager.java

                    throw new CIFSException("Failed to create any channels for session " + sessionId);
                }
    
                log.info("Created {} channels for session {}", channelGroup.getChannelCount(), sessionId);
                return channelGroup;
    
            } catch (Exception e) {
                sessionChannels.remove(sessionId);
                throw new CIFSException("Failed to create channels for session " + sessionId, e);
            }
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 20.5K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/ApiAdminDictStemmeroverrideAction.java

                        return null;
                    })).status(ApiResult.Status.OK).result());
        }
    
        /**
         * Creates a new stemmer override dictionary item.
         *
         * @param dictId the dictionary ID
         * @param body the request body containing stemmer override item information
         * @return JSON response with result status
         */
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 9.8K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerAction.java

                    }))
                    .status(ApiResult.Status.OK)
                    .result());
        }
    
        /**
         * Creates a new scheduler setting.
         *
         * @param body the scheduler data to create
         * @return JSON response containing the created scheduler setting ID
         */
        // POST /api/admin/scheduler/setting
        @Execute
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sun Nov 23 12:34:02 GMT 2025
    - 10.1K bytes
    - Click Count (0)
Back to Top