Search Options

Results per page
Sort
Preferred Languages
Advance

Results 2611 - 2620 of 6,918 for RETURN (0.05 sec)

  1. src/main/java/jcifs/smb/SmbFileHandleImpl.java

                throw new SmbException("Descriptor is no longer valid");
            }
            return this.fileId;
        }
    
    
        /**
         * @return the initialSize
         */
        @Override
        public long getInitialSize () {
            return this.initialSize;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.SmbFileHandle#getTree()
         */
        @Override
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

                return 1L;
            }
            if (Constants.TRUE.equalsIgnoreCase(recursive.toString())) {
                return -1L;
            }
            try {
                return Long.parseLong(recursive.toString());
            } catch (final NumberFormatException e) {
                return 1L;
            }
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  3. callbacks/create.go

    					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
    		}
    
    		if db.Statement.Schema != nil {
    			if !db.Statement.Unscoped {
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Mon Apr 08 03:29:55 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/graph/DefaultGraphBuilder.java

                    result = reactorDependencyGraph(session, projects);
                }
    
                return result;
            } catch (final ProjectBuildingException | DuplicateProjectException | MavenExecutionException e) {
                return Result.error(Collections.singletonList(new DefaultModelProblem(null, null, null, null, 0, 0, e)));
            } catch (final CycleDetectedException e) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Streams.java

                return true;
              } finally {
                holder = null;
              }
            }
            return false;
          }
    
          @Override
          Splitr createSplit(Spliterator<T> from, long i) {
            return new Splitr(from, i);
          }
        }
        return StreamSupport.stream(new Splitr(fromSpliterator, 0), isParallel).onClose(stream::close);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 14:20:11 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  6. android/guava-testlib/test/com/google/common/testing/SerializableTesterTest.java

        }
    
        @Override
        public int hashCode() {
          return 1;
        }
    
        private Object writeReplace() {
          return new OtherForm();
        }
    
        private static class OtherForm implements Serializable {
          @Override
          public boolean equals(@Nullable Object other) {
            return (other instanceof ObjectWhichIsEqualButChangesClass || other instanceof OtherForm);
          }
    
          @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Apr 17 15:49:06 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. guava-testlib/test/com/google/common/testing/SerializableTesterTest.java

        }
    
        @Override
        public int hashCode() {
          return 1;
        }
    
        private Object writeReplace() {
          return new OtherForm();
        }
    
        private static class OtherForm implements Serializable {
          @Override
          public boolean equals(@Nullable Object other) {
            return (other instanceof ObjectWhichIsEqualButChangesClass || other instanceof OtherForm);
          }
    
          @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Apr 17 15:49:06 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Phase.java

        /**
         * Get configuration to pass to all goals run in this phase.
         *
         * @return Object
         */
        public Object getConfiguration() {
            return this.configuration;
        } // -- Object getConfiguration()
    
        /**
         * Method getExecutions.
         *
         * @return List
         */
        public java.util.List<Execution> getExecutions() {
            if (this.executions == null) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/ProfileActivationContext.java

         *
         * @return The identifiers of those profiles to activate, never {@code null}.
         */
        List<String> getActiveProfileIds();
    
        /**
         * Gets the identifiers of those profiles that should be deactivated by explicit demand.
         *
         * @return The identifiers of those profiles to deactivate, never {@code null}.
         */
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactCoordinatesFactory.java

         * @param coordinatesString the string having "standard" coordinates.
         * @return an {@code ArtifactCoordinates}, never {@code null}
         * @throws IllegalArgumentException if {@code session} is null or invalid
         */
        @Nonnull
        default ArtifactCoordinates create(@Nonnull Session session, @Nonnull String coordinatesString) {
            return create(ArtifactCoordinatesFactoryRequest.build(session, coordinatesString));
        }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Aug 27 21:13:34 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top