Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for isModifier (0.15 sec)

  1. src/vendor/golang.org/x/net/idna/trieval.go

    		return category(small)
    	}
    	return category(c & catBigMask)
    }
    
    func (c info) joinType() info {
    	if c.isMapped() {
    		return 0
    	}
    	return (c >> joinShift) & joinMask
    }
    
    func (c info) isModifier() bool {
    	return c&(modifier|catSmallMask) == modifier
    }
    
    func (c info) isViramaModifier() bool {
    	return c&(attributesMask|catSmallMask) == viramaModifier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 04:45:15 UTC 2022
    - 3K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/idna/idna9.0.0.go

    	}
    	if !p.checkJoiners {
    		return nil
    	}
    	trie := p.trie // p.checkJoiners is only set if trie is set.
    	// TODO: merge the use of this in the trie.
    	v, sz := trie.lookupString(s)
    	x := info(v)
    	if x.isModifier() {
    		return &labelError{s, "V5"}
    	}
    	// Quickly return in the absence of zero-width (non) joiners.
    	if strings.Index(s, zwj) == -1 && strings.Index(s, zwnj) == -1 {
    		return nil
    	}
    	st := stateStart
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    	}
    	if !p.checkJoiners {
    		return nil
    	}
    	trie := p.trie // p.checkJoiners is only set if trie is set.
    	// TODO: merge the use of this in the trie.
    	v, sz := trie.lookupString(s)
    	x := info(v)
    	if x.isModifier() {
    		return &labelError{s, "V5"}
    	}
    	// Quickly return in the absence of zero-width (non) joiners.
    	if strings.Index(s, zwj) == -1 && strings.Index(s, zwnj) == -1 {
    		return nil
    	}
    	st := stateStart
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/tasks/incremental/InputFileDetails.java

         * @return true if the file was added since the last execution
         */
        boolean isAdded();
    
        /**
         * Was the file modified?
         * @return if the file was modified
         */
        boolean isModified();
    
        /**
         * Was the file removed?
         * @return true if the file was removed since the last execution
         */
        boolean isRemoved();
    
        /**
         * The input file, which may no longer exist.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 05 07:18:07 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/NonIncrementalInputChanges.java

                return normalizedPath;
            }
    
            @Override
            public boolean isAdded() {
                return false;
            }
    
            @Override
            public boolean isModified() {
                return false;
            }
    
            @Override
            public boolean isRemoved() {
                return false;
            }
    
            @Override
            public boolean equals(Object o) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DefaultFileChange.java

            return change;
        }
    
        @Override
        public boolean isAdded() {
            return change == ChangeTypeInternal.ADDED;
        }
    
        @Override
        public boolean isModified() {
            return change == ChangeTypeInternal.MODIFIED;
        }
    
        @Override
        public boolean isRemoved() {
            return change == ChangeTypeInternal.REMOVED;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top