Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for lxvl (0.03 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/validation.go

    	if v == nil {
    		return nil
    	}
    
    	allErrs := field.ErrorList{}
    
    	allErrs = append(allErrs, validateValueValidation(&v.ValueValidation, skipAnyOf, skipAllOfAnyOf, lvl, fldPath, opts)...)
    	allErrs = append(allErrs, validateNestedValueValidation(v.Items, false, false, lvl, fldPath.Child("items"), opts)...)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/text/unicode/bidi/bidi.go

    }
    
    func calculateOrdering(levels []level, runes []rune) Ordering {
    	var curDir Direction
    
    	prevDir := Neutral
    	prevI := 0
    
    	o := Ordering{}
    	// lvl = 0,2,4,...: left to right
    	// lvl = 1,3,5,...: right to left
    	for i, lvl := range levels {
    		if lvl%2 == 0 {
    			curDir = LeftToRight
    		} else {
    			curDir = RightToLeft
    		}
    		if curDir != prevDir {
    			if i > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 10.3K bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginDependenciesIntegrationTest.groovy

            // No Warnings
            file("src/main/java/org/gradle/Class1.java") <<
                "package org.gradle; class Class1 { public boolean isFoo(Object arg) { return true; } }"
            // PMD Lvl 2 Warning BooleanInstantiation
            // PMD Lvl 3 Warning OverrideBothEqualsAndHashcode
            file("src/test/java/org/gradle/Class1Test.java") <<
                """
                package org.gradle;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginIncrementalAnalysisIntegrationTest.groovy

                   class GoodClass {
                       public boolean isFoo(final Object arg) { return true; }
                   }""".stripMargin()
        }
    
        private badCode() {
            // PMD Lvl 2 Warning BooleanInstantiation
            // PMD Lvl 3 Warning OverrideBothEqualsAndHashcode
            file("src/main/java/org/gradle/BadClass.java") <<
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:47:00 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. tests/preload_suits_test.go

    		t.Error(err)
    	}
    
    	lvl := &Level3{}
    	if err := DB.Save(lvl).Error; err != nil {
    		t.Error(err)
    	}
    
    	sublvl1 := &Level4{Level3ID: lvl.ID}
    	if err := DB.Save(sublvl1).Error; err != nil {
    		t.Error(err)
    	}
    	sublvl2 := &Level4{Level3ID: lvl.ID}
    	if err := DB.Save(sublvl2).Error; err != nil {
    		t.Error(err)
    	}
    
    	lvl.Level4s = []*Level4{sublvl1, sublvl2}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Mar 18 05:38:46 UTC 2022
    - 30.3K bytes
    - Viewed (0)
  6. src/internal/bytealg/compare_ppc64x.s

    	MFVSRD	VS36,R10
    
    	CMPU	R16,R10
    	SETB_CR0_NE(R3)
    	RET
    
    	PCALIGN $16
    cmp8:	// 8 - 15B (0 - 15B if GOPPC64_power10)
    #ifdef GOPPC64_power10
    	SLD	$56,R9,R9
    	LXVLL	R5,R9,V3	// Load bytes starting from MSB to LSB, unused are zero filled.
    	LXVLL	R6,R9,V4
    	VCMPUQ	V3,V4,CR0	// Compare as a 128b integer.
    	SETB_CR0(R6)
    	ISEL	CR0EQ,R3,R6,R3	// If equal, length determines the return value.
    	RET
    #else
    	CMP	R9,$8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:33:20 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  7. src/internal/bytealg/index_ppc64x.s

    #endif
    	PCALIGN  $16
    
    index2to16loop:
    
    #ifdef GOPPC64_power10
    	LXVLL  R7, R14, V8          // Load next 16 bytes of string  from Base
    	LXVLL  R10, R14, V9         // Load next 16 bytes of string from Base+1
    	LXVLL  R8, R14, V11         // Load next 16 bytes of string from Base+2
    	LXVLL  R17,R14, V12         // Load next 16 bytes of string  from Base+3
    #else
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 31.6K bytes
    - Viewed (0)
  8. src/os/signal/signal_cgo_test.go

    	pause := time.Duration(scale) * 10 * time.Millisecond
    
    	lvl := os.Getenv("GO_TEST_TERMINAL_SIGNALS")
    	switch lvl {
    	case "":
    		// Main test process, run code below.
    		break
    	case "1":
    		runSessionLeader(t, pause)
    		panic("unreachable")
    	case "2":
    		runStoppingChild()
    		panic("unreachable")
    	default:
    		fmt.Fprintf(os.Stderr, "unknown subprocess level %s\n", lvl)
    		os.Exit(1)
    	}
    
    	t.Parallel()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 10:09:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. pkg/log/config.go

    	}
    
    	alwaysOn := zapcore.NewCore(enc, sink, zap.NewAtomicLevelAt(zapcore.DebugLevel))
    	conditionallyOn := func(scopeName string) zapcore.Core {
    		scope := FindScope(scopeName)
    		enabler := func(lvl zapcore.Level) bool {
    			switch lvl {
    			case zapcore.ErrorLevel:
    				return scope.ErrorEnabled()
    			case zapcore.WarnLevel:
    				return scope.WarnEnabled()
    			case zapcore.InfoLevel:
    				return scope.InfoEnabled()
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginVersionIntegrationTest.groovy

            // No Warnings
            file("src/main/java/org/gradle/Class1.java") <<
                "package org.gradle; class Class1 { public boolean isFoo(Object arg) { return true; } }"
            // PMD Lvl 2 Warning AvoidMultipleUnaryOperators
            // PMD Lvl 3 Warning OverrideBothEqualsAndHashcode
            file("src/test/java/org/gradle/Class1Test.java") <<
                """
                package org.gradle;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:47:00 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top