Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 43 for getTokens (0.18 sec)

  1. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiItem.java

        }
    
        public String getNewPos() {
            return newPos;
        }
    
        public void setNewPos(final String newPos) {
            this.newPos = newPos;
        }
    
        public String getToken() {
            return token;
        }
    
        public String getSegmentation() {
            return segmentation;
        }
    
        public String getReading() {
            return reading;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. src/text/scanner/scanner.go

    // returns the respective individual characters (or possibly sub-tokens).
    // For instance, if the mode is ScanIdents (not ScanStrings), the string
    // "foo" is scanned as the token sequence '"' [Ident] '"'.
    //
    // Use GoTokens to configure the Scanner such that it accepts all Go
    // literal tokens including Go identifiers. Comments will be skipped.
    const (
    	ScanIdents     = 1 << -Ident
    	ScanInts       = 1 << -Int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsentity/BsAccessToken.java

            return permissions;
        }
    
        public void setPermissions(String[] value) {
            registerModifiedProperty("permissions");
            this.permissions = value;
        }
    
        public String getToken() {
            checkSpecifiedProperty("token");
            return convertEmptyToNull(token);
        }
    
        public void setToken(String value) {
            registerModifiedProperty("token");
            this.token = value;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DefaultIncomingConnectionHandler.java

                LOGGER.debug("{}{} with connection: {}.", DaemonMessages.STARTED_EXECUTING_COMMAND, command, connection);
                try {
                    if (!Arrays.equals(command.getToken(), token)) {
                        throw new BadlyFormedRequestException(String.format("Unexpected authentication token in command %s received from %s", command, connection));
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 7K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/registry/DaemonInfo.java

        }
    
        public DaemonContext getContext() {
            return context;
        }
    
        public State getState() {
            return state;
        }
    
        @Override
        public byte[] getToken() {
            return token;
        }
    
        /** Last time the daemon was brought out of idle mode. */
        public Date getLastBusy() {
            return new Date(lastBusy);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. src/cmd/gofmt/gofmt_test.go

    	}
    	defer f.Close()
    
    	// initialize scanner
    	var s scanner.Scanner
    	s.Init(f)
    	s.Error = func(*scanner.Scanner, string) {}       // ignore errors
    	s.Mode = scanner.GoTokens &^ scanner.SkipComments // want comments
    
    	// look for //gofmt comment
    	for s.Line <= maxLines {
    		switch s.Scan() {
    		case scanner.Comment:
    			const prefix = "//gofmt "
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 19:22:49 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClient.java

                if (connection == null) {
                    break;
                }
                // Compatible daemon was found, try it
                try {
                    Build build = new Build(buildId, connection.getDaemon().getToken(), action, requestContext.getClient(), requestContext.getStartTime(), requestContext.isInteractive(), parameters);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/registry/PersistentDaemonRegistry.java

        }
    
        @Override
        public void store(final DaemonInfo info) {
            final Address address = info.getAddress();
            final DaemonContext daemonContext = info.getContext();
            final byte[] token = info.getToken();
            final State state = info.getState();
    
            lock.lock();
            try {
                LOGGER.debug("Storing daemon address: {}, context: {}", address, daemonContext);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/ApiAdminDictKuromojiAction.java

        protected EditBody createEditBody(final KuromojiItem entity, final String dictId) {
            final EditBody body = new EditBody();
            body.id = entity.getId();
            body.dictId = dictId;
            body.token = entity.getToken();
            body.reading = entity.getReading();
            body.pos = entity.getPos();
            body.segmentation = entity.getSegmentation();
            return body;
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/AccessTokenDbm.java

            setupEpg(_epgMap, et -> ((AccessToken) et).getPermissions(), (et, vl) -> ((AccessToken) et).setPermissions((String[]) vl),
                    "permissions");
            setupEpg(_epgMap, et -> ((AccessToken) et).getToken(), (et, vl) -> ((AccessToken) et).setToken(DfTypeUtil.toString(vl)), "token");
            setupEpg(_epgMap, et -> ((AccessToken) et).getUpdatedBy(), (et, vl) -> ((AccessToken) et).setUpdatedBy(DfTypeUtil.toString(vl)),
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top