Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for lxvl (0.05 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/internal/bytealg/indexbyte_ppc64x.s

    	BNE	CR6,foundat0		// Match found at R8+48 bytes, jump out
    
    	BR	notfound
    
    
    cmp8:	// Length 8 - 15
    #ifdef GOPPC64_power10
    	// Load all the bytes into a single VSR in BE order.
    	SLD	$56,R4,R5
    	LXVLL	R3,R5,V2
    	// Compare and count the number which don't match.
    	VCMPEQUB	V2,V1,V6
    	VCLZLSBB	V6,R3
    	// If count is the number of bytes, or more. No matches are found.
    	CMPU	R3,R4
    	MOVD	$-1,R5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:10:29 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/ppc64_p10.s

    	CNTTZDM R2, R3, R1                      // 7c411c76
    	DCFFIXQQ V1, F2                         // fc400fc4
    	DCTFIXQQ F2, V3                         // fc6117c4
    	LXVKQ $0, VS33                          // f03f02d1
    	LXVP 12352(R5), VS6                     // 18c53040
    	LXVPX (R1)(R2), VS4                     // 7c820a9a
    	LXVRBX (R1)(R2), VS4                    // 7c82081a
    	LXVRDX (R1)(R2), VS4                    // 7c8208da
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 23 20:52:57 UTC 2023
    - 14.3K bytes
    - Viewed (0)
Back to top