Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 446 for starting (0.14 sec)

  1. android/guava/src/com/google/common/escape/CharEscaper.java

      protected CharEscaper() {}
    
      /**
       * Returns the escaped form of a given literal string.
       *
       * @param string the literal string to be escaped
       * @return the escaped form of {@code string}
       * @throws NullPointerException if {@code string} is null
       */
      @Override
      public String escape(String string) {
        checkNotNull(string); // GWT specific check (do not optimize)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/MessageBuilder.java

         * @param args arguments referenced by the format specifiers in the format string
         * @return the current builder
         */
        @Nonnull
        default MessageBuilder format(String pattern, Object... args) {
            return append(String.format(pattern, args));
        }
    
        /**
         * Set the buffer length.
         *
         * @param length the new length
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 08 10:37:09 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. src/packaging/deb/init.d/fess

      start)
    	checkJava
    
    	if [ -n "$MAX_LOCKED_MEMORY" -a -z "$FESS_HEAP_SIZE" ]; then
    		log_failure_msg "MAX_LOCKED_MEMORY is set - FESS_HEAP_SIZE must also be set"
    		exit 1
    	fi
    
    	log_daemon_msg "Starting $DESC"
    
    	pid=`pidofproc -p $PID_FILE fess`
    	if [ -n "$pid" ] ; then
    		log_begin_msg "Already running."
    		log_end_msg 0
    		exit 0
    	fi
    
    	# Prepare environment
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. src/test/java/jcifs/tests/WatchTest.java

        private ExecutorService executor;
        private SmbFile base;
        private Future<List<FileNotifyInformation>> future;
    
    
        public WatchTest ( String name, Map<String, String> properties ) {
            super(name, properties);
        }
    
    
        @Parameters ( name = "{0}" )
        public static Collection<Object> configs () {
            return getConfigs("smb1", "smb2", "smb30", "smb31");
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/AbstractExecutionThreadService.java

       *
       * <p>The default implementation returns a new {@link Executor} that sets the name of its threads
       * to the string returned by {@link #serviceName}
       */
      protected Executor executor() {
        return command -> MoreExecutors.newThread(serviceName(), command).start();
      }
    
      @Override
      public String toString() {
        return serviceName() + " [" + state() + "]";
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. src/cmd/covdata/subtractintersect.go

    			// s.mm.pod.pmm.
    			s.imm = nil
    		} else {
    			// We're now starting to visit the Nth directory, N != 0.
    			if s.mode == intersectMode {
    				if s.imm != nil {
    					s.pruneCounters()
    				}
    				s.imm = make(map[pkfunc]struct{})
    			}
    		}
    		s.inidx = dirIdx
    	}
    }
    
    func (s *sstate) EndCounterDataFile(cdf string, cdr *decodecounter.CounterDataReader, dirIdx int) {
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 12:50:46 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_split.txt

    
    # @none applies to all matching module paths,
    # regardless of whether they contain any packages.
    
    go get example.net/...@none
    go list -m all
    ! stdout '^example.net'
    
    # Starting from no dependencies, a wildcard can resolve to an empty module with
    # the same prefix even if it contains no packages.
    
    go get example.net/...@none
    go get example.net/split/...@v0.1.0
    go list -m all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  8. src/cmd/cover/cover.go

    		Srcfile:  filename,
    		Units:    f.fn.units,
    		Lit:      flit,
    	}
    	funcId := f.mdb.AddFunc(fd)
    
    	hookWrite := func(cv string, which int, val string) string {
    		return fmt.Sprintf("%s[%d] = %s", cv, which, val)
    	}
    	if *mode == "atomic" {
    		hookWrite = func(cv string, which int, val string) string {
    			return fmt.Sprintf("%sStoreUint32(&%s[%d], %s)",
    				atomicPackagePrefix(), cv, which, val)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/source.go

    const sentinel = utf8.RuneSelf
    
    func (s *source) init(in io.Reader, errh func(line, col uint, msg string)) {
    	s.in = in
    	s.errh = errh
    
    	if s.buf == nil {
    		s.buf = make([]byte, nextSize(0))
    	}
    	s.buf[0] = sentinel
    	s.ioerr = nil
    	s.b, s.r, s.e = -1, 0, 0
    	s.line, s.col = 0, 0
    	s.ch = ' '
    	s.chw = 0
    }
    
    // starting points for line and column numbers
    const linebase = 1
    const colbase = 1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 05 19:25:46 UTC 2020
    - 5.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    // file, line, column, and byte offset.
    type Position struct {
    	Line     int // line in input (starting at 1)
    	LineRune int // rune in line (starting at 1)
    	Byte     int // byte in input (starting at 0)
    }
    
    // add returns the position at the end of s, assuming it starts at p.
    func (p Position) add(s string) Position {
    	p.Byte += len(s)
    	if n := strings.Count(s, "\n"); n > 0 {
    		p.Line += n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top