Search Options

Results per page
Sort
Preferred Languages
Advance

Results 4171 - 4180 of 7,014 for _return (0.06 sec)

  1. compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/PackagingProfileActivator.java

            return getActivationPackaging(profile).map(p -> isPackaging(context, p)).orElse(false);
        }
    
        @Override
        public boolean presentInConfig(
                org.apache.maven.model.Profile profile, ProfileActivationContext context, ModelProblemCollector problems) {
            return getActivationPackaging(profile).isPresent();
        }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/LifecycleConfiguration.java

         *
         * @return List
         */
        public java.util.List<Lifecycle> getLifecycles() {
            if (this.lifecycles == null) {
                this.lifecycles = new java.util.ArrayList<Lifecycle>();
            }
    
            return this.lifecycles;
        } // -- java.util.List<Lifecycle> getLifecycles()
    
        /**
         * Get the modelEncoding field.
         *
         * @return String
         */
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/execution/ProjectExecutionEvent.java

            this.cause = cause;
        }
    
        public MavenSession getSession() {
            return session;
        }
    
        public MavenProject getProject() {
            return project;
        }
    
        public List<MojoExecution> getExecutionPlan() {
            return executionPlan;
        }
    
        public Throwable getCause() {
            return cause;
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. istioctl/cmd/sysexits.go

    		e = util.CommandParseError{Err: e}
    	}
    
    	switch e.(type) {
    	case util.CommandParseError:
    		return ExitIncorrectUsage
    	case analyze.FileParseError:
    		return ExitDataError
    	case analyze.AnalyzerFoundIssuesError:
    		return ExitAnalyzerFoundIssues
    	default:
    		return ExitUnknownError
    	}
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. compat/maven-model-builder/src/main/java/org/apache/maven/model/inheritance/DefaultInheritanceAssembler.java

                    }
                }
    
                if (isBlankParentUrl || childDirectory == null || childPathAdjustment == null || !appendPath) {
                    return parentUrl;
                }
    
                // append childPathAdjustment and childDirectory to parent url
                return appendPath(parentUrl, childDirectory.toString(), childPathAdjustment.toString());
            }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/util/DocList.java

            contentSize = 0;
            processingTime = 0;
        }
    
        public long getContentSize() {
            return contentSize;
        }
    
        public void addContentSize(final long contentSize) {
            this.contentSize += contentSize;
        }
    
        public long getProcessingTime() {
            return processingTime;
        }
    
        public void addProcessingTime(final long processingTime) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/ForwardingLock.java

      }
    
      @Override
      public boolean tryLock() {
        return delegate().tryLock();
      }
    
      @Override
      public boolean tryLock(long time, TimeUnit unit) throws InterruptedException {
        return delegate().tryLock(time, unit);
      }
    
      @Override
      public void unlock() {
        delegate().unlock();
      }
    
      @Override
      public Condition newCondition() {
        return delegate().newCondition();
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/ntlmssp/av/AvFlags.java

            this(encode(flags));
        }
    
    
        /**
         * 
         * @return flags
         */
        public int getFlags () {
            return SMBUtil.readInt4(this.getRaw(), 0);
        }
    
    
        private static byte[] encode ( int flags ) {
            byte[] raw = new byte[4];
            SMBUtil.writeInt4(flags, raw, 0);
            return raw;
        }
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/SmbFileHandle.java

    package jcifs;
    
    
    /**
     * Handle to an open file
     * 
     * @author mbechler
     *
     */
    public interface SmbFileHandle extends AutoCloseable {
    
        /**
         * @return the tree
         */
        SmbTreeHandle getTree ();
    
    
        /**
         * @return whether the file descriptor is valid
         */
        boolean isValid ();
    
    
        /**
         * @param lastWriteTime
         * @throws CIFSException
         */
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/http/NtlmHttpServletRequest.java

            super( req );
            this.principal = principal;
        }
        public String getRemoteUser() {
            return principal.getName();
        }
        public Principal getUserPrincipal() {
            return principal;
        }
        public String getAuthType() {
            return "NTLM";
        }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 1.5K bytes
    - Viewed (0)
Back to top