Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for isYesD (1.96 sec)

  1. src/vendor/golang.org/x/text/unicode/norm/forminfo.go

    //
    // When all 4 bits are zero, the character is inert, meaning it is never
    // influenced by normalization.
    type qcInfo uint8
    
    func (p Properties) isYesC() bool { return p.flags&0x10 == 0 }
    func (p Properties) isYesD() bool { return p.flags&0x4 == 0 }
    
    func (p Properties) combinesForward() bool  { return p.flags&0x20 != 0 }
    func (p Properties) combinesBackward() bool { return p.flags&0x8 != 0 } // == isMaybe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/unicode/norm/forminfo.go

    //
    // When all 4 bits are zero, the character is inert, meaning it is never
    // influenced by normalization.
    type qcInfo uint8
    
    func (p Properties) isYesC() bool { return p.flags&0x10 == 0 }
    func (p Properties) isYesD() bool { return p.flags&0x4 == 0 }
    
    func (p Properties) combinesForward() bool  { return p.flags&0x20 != 0 }
    func (p Properties) combinesBackward() bool { return p.flags&0x8 != 0 } // == isMaybe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/text/unicode/norm/normalize.go

    		case ssOverflow:
    			return lastSegStart, false
    		case ssSuccess:
    			if lastCC > info.ccc {
    				return lastSegStart, false
    			}
    		}
    		if f.composing {
    			if !info.isYesC() {
    				break
    			}
    		} else {
    			if !info.isYesD() {
    				break
    			}
    		}
    		lastCC = info.ccc
    		i += int(info.size)
    	}
    	if i == n {
    		if !atEOF {
    			n = lastSegStart
    		}
    		return n, true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 14.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/unicode/norm/normalize.go

    		case ssOverflow:
    			return lastSegStart, false
    		case ssSuccess:
    			if lastCC > info.ccc {
    				return lastSegStart, false
    			}
    		}
    		if f.composing {
    			if !info.isYesC() {
    				break
    			}
    		} else {
    			if !info.isYesD() {
    				break
    			}
    		}
    		lastCC = info.ccc
    		i += int(info.size)
    	}
    	if i == n {
    		if !atEOF {
    			n = lastSegStart
    		}
    		return n, true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresourcedefinition/strategy_test.go

    									XValidations: apiextensions.ValidationRules{
    										{
    											Rule:            "isTest == true",
    											Message:         "isTest should be true.",
    											OptionalOldSelf: ptr.To(true),
    										},
    									},
    									Properties: map[string]apiextensions.JSONSchemaProps{
    										"isTest": {
    											Type: "boolean",
    										},
    									},
    								},
    							},
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/AbstractTestFrameworkDetector.java

            TestClass testClass = readClassFile(testClassFile, fallbackClassNameProvider);
    
            boolean isTest = testClass.isTest();
    
            if (!isTest) { // scan parent class
                String superClassName = testClass.getSuperClassName();
    
                if (isKnownTestCaseClassName(superClassName)) {
                    isTest = true;
                } else {
                    File superClassFile = getSuperTestClassFile(superClassName);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  7. src/internal/coverage/cfile/hooks.go

    // called only by the compiler (via runtime/coverage.initHook).
    //
    // If 'istest' is false, it indicates we're building a regular program
    // ("go build -cover ..."), in which case we immediately try to write
    // out the meta-data file, and register emitCounterData as an exit
    // hook.
    //
    // If 'istest' is true (indicating that the program in question is a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 02:32:19 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. src/crypto/ecdh/nist.go

    	var acc byte
    	for _, b := range a {
    		acc |= b
    	}
    	return acc == 0
    }
    
    // isLess returns whether a < b, where a and b are big-endian buffers of the
    // same length and shorter than 72 bytes.
    func isLess(a, b []byte) bool {
    	if len(a) != len(b) {
    		panic("crypto/ecdh: internal error: mismatched isLess inputs")
    	}
    
    	// Copy the values into a fixed-size preallocated little-endian buffer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. src/runtime/coverage/coverage.go

    package coverage
    
    import (
    	"internal/coverage/cfile"
    	"io"
    )
    
    // initHook is invoked from main.init in programs built with -cover.
    // The call is emitted by the compiler.
    func initHook(istest bool) {
    	cfile.InitHook(istest)
    }
    
    // WriteMetaDir writes a coverage meta-data file for the currently
    // running program to the directory specified in 'dir'. An error will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:41:02 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestDryRunner.java

            queue.add(runner.getDescription());
            while (!queue.isEmpty()) {
                Description description = queue.removeFirst();
                queue.addAll(description.getChildren());
                if (description.isTest()) {
                    notifier.fireTestIgnored(description);
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top