Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isModifier (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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