Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 180 for bleh (0.06 sec)

  1. src/internal/bytealg/compare_386.s

    	LEAL	ret+16(FP), AX
    	JMP	cmpbody<>(SB)
    
    // input:
    //   SI = a
    //   DI = b
    //   BX = alen
    //   DX = blen
    //   AX = address of return word (set to 1/0/-1)
    TEXT cmpbody<>(SB),NOSPLIT,$0-0
    	MOVL	DX, BP
    	SUBL	BX, DX // DX = blen-alen
    	JLE	2(PC)
    	MOVL	BX, BP // BP = min(alen, blen)
    	CMPL	SI, DI
    	JEQ	allsame
    	CMPL	BP, $4
    	JB	small
    #ifdef GO386_softfloat
    	JMP	mediumloop
    #endif
    largeloop:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 23 21:22:58 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/process/internal/JvmOptionsTest.groovy

            expect:
            parse("-Dfile.encoding=UTF-8 -Dfoo.encoding=blah -Dfile.encoding=UTF-16").defaultCharacterEncoding == "UTF-16"
        }
    
        def "system properties are always before the symbolic arguments"() {
            expect:
            parse("-Xms1G -Dfile.encoding=UTF-8 -Dfoo.encoding=blah -Dfile.encoding=UTF-16").allJvmArgs == ["-Dfoo.encoding=blah", "-Xms1G", "-Dfile.encoding=UTF-16", *localePropertyStrings()]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/fields/selector_test.go

    		"foo":     "bar",
    		"baz":     "blah",
    		"complex": `=value\,\`,
    	}
    	expectMatch(t, "foo=bar", fieldset)
    	expectMatch(t, "baz=blah", fieldset)
    	expectMatch(t, "foo=bar,baz=blah", fieldset)
    	expectMatch(t, `foo=bar,baz=blah,complex=\=value\\\,\\`, fieldset)
    	expectNoMatch(t, "foo=blah", fieldset)
    	expectNoMatch(t, "baz=bar", fieldset)
    	expectNoMatch(t, "foo=bar,foobar=bar,baz=blah", fieldset)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 27 08:00:38 UTC 2017
    - 11.2K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/html/HtmlEscapersTest.java

        assertEquals("foo&amp;bar", htmlEscaper().escape("foo&bar"));
    
        // If the string contains no escapes, it should return the arg.
        // Note: assert<b>Same</b> for this implementation.
        String s = "blah blah farhvergnugen";
        assertSame(s, htmlEscaper().escape(s));
    
        // Tests escapes at begin and end of string.
        assertEquals("&lt;p&gt;", htmlEscaper().escape("<p>"));
    
        // Test all escapes.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 16 19:54:45 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  5. maven-core/src/test/projects/project-builder/MNG-6716/project/pom.xml

      <version>0.1-SNAPSHOT</version>
    
      <mailingLists>
        <mailingList>
          <name>blah</name>
        </mailingList>
      </mailingLists>
    
      <build>
          <testSourceDirectory>../sibling/src-test</testSourceDirectory>
          <sourceDirectory>../sibling/src-main</sourceDirectory>
          <resources>
            <resource><directory>blah</directory></resource>
          </resources>
      </build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Nov 09 12:45:14 UTC 2019
    - 742 bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/test/groovy/org/gradle/plugins/ide/internal/tooling/DefaultGradleProjectTest.groovy

            child1.children = [child11, child12]
            child2.children = [child21]
    
            expect:
            root.findByPath(':') == root
            root.findByPath('') == null
            root.findByPath('blah blah') == null
    
            root.findByPath(':child1:child12') == child12
            root.findByPath(':child2') == child2
    
            child1.findByPath(':') == null
            child1.findByPath(':child1:child11') == child11
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractClassChangeIncrementalCompilationIntegrationTest.groovy

                source """class AccessedFromPrivateMethod {
                    private String foo = "blah";
                }"""
            }
    
            void applyModificationToClassAccessedFromPrivateMethodBody() {
                source """class AccessedFromPrivateMethodBody {
                    private String foo = "blah";
                }"""
            }
    
            void applyModificationToClassAccessedFromPackagePrivateField() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  8. pkg/util/hash/hash_test.go

    	wheel2 := wheel{radius: 22}
    	wheel3 := wheel{radius: 17}
    
    	myUni1 := unicycle{licencePlateID: "blah", primaryWheel: &wheel1, tags: map[string]string{"color": "blue", "name": "john"}}
    	myUni2 := unicycle{licencePlateID: "blah", primaryWheel: &wheel2, tags: map[string]string{"color": "blue", "name": "john"}}
    	myUni3 := unicycle{licencePlateID: "blah", primaryWheel: &wheel3, tags: map[string]string{"color": "blue", "name": "john"}}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. cni/pkg/repair/repair_test_helpers.go

    		Name: constants.ValidationContainerName,
    		State: corev1.ContainerState{
    			Waiting: &corev1.ContainerStateWaiting{
    				Reason:  "CrashLoopBackOff",
    				Message: "Back-off 5m0s restarting failed blah blah blah",
    			},
    		},
    		LastTerminationState: corev1.ContainerState{
    			Terminated: &corev1.ContainerStateTerminated{
    				ExitCode: constants.ValidationErrorCode,
    				Reason:   "Error",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 12 17:39:53 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. src/internal/bytealg/compare_amd64.s

    	MOVQ	DI, DX
    	MOVQ	CX, DI
    	JMP	cmpbody<>(SB)
    
    // input:
    //   SI = a
    //   DI = b
    //   BX = alen
    //   DX = blen
    // output:
    //   AX = output (-1/0/1)
    TEXT cmpbody<>(SB),NOSPLIT,$0-0
    	CMPQ	SI, DI
    	JEQ	allsame
    	CMPQ	BX, DX
    	MOVQ	DX, R8
    	CMOVQLT	BX, R8 // R8 = min(alen, blen) = # of bytes to compare
    	CMPQ	R8, $8
    	JB	small
    
    	CMPQ	R8, $63
    	JBE	loop
    #ifndef hasAVX2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 17:17:01 UTC 2022
    - 4.3K bytes
    - Viewed (0)
Back to top