Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 4,849 for ADD (0.17 sec)

  1. pkg/proxy/nftables/proxier_test.go

    	expected := dedent.Dedent(`
    		add table ip kube-proxy { comment "rules for kube-proxy" ; }
    
    		add chain ip kube-proxy mark-for-masquerade
    		add rule ip kube-proxy mark-for-masquerade mark set mark or 0x4000
    		add chain ip kube-proxy masquerading
    		add rule ip kube-proxy masquerading mark and 0x4000 == 0 return
    		add rule ip kube-proxy masquerading mark set mark xor 0x4000
    		add rule ip kube-proxy masquerading masquerade fully-random
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/IterationOrderRetainingSetElementSourceTest.groovy

            when:
            source.add("a")
    
            then:
            source.iterator().collect() == ["b", "a"]
        }
    
        def "can re-add an ordinary value after clear"() {
            when:
            source.add("a")
            source.add("b")
            source.clear()
    
            then:
            source.iterator().collect() == []
    
            when:
            source.add("a")
            source.add("b")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 06:43:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. src/runtime/map_faststr.go

    		x.k = add(unsafe.Pointer(x.b), dataOffset)
    		x.e = add(x.k, abi.MapBucketCount*2*goarch.PtrSize)
    
    		if !h.sameSizeGrow() {
    			// Only calculate y pointers if we're growing bigger.
    			// Otherwise GC can see bad pointers.
    			y := &xy[1]
    			y.b = (*bmap)(add(h.buckets, (oldbucket+newbit)*uintptr(t.BucketSize)))
    			y.k = add(unsafe.Pointer(y.b), dataOffset)
    			y.e = add(y.k, abi.MapBucketCount*2*goarch.PtrSize)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/HeadersTest.kt

        val headers =
          Headers.Builder()
            .add("A", "a")
            .add("B", "bb")
            .build()
        assertThat(headers.toString()).isEqualTo("A: a\nB: bb\n")
      }
    
      @Test fun headersToStringRedactsSensitiveHeaders() {
        val headers =
          Headers.Builder()
            .add("content-length", "99")
            .add("authorization", "peanutbutter")
            .add("proxy-authorization", "chocolate")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/CachingDependencyResolveContextTest.groovy

            FileCollectionInternal fileCollection = Mock()
    
            when:
            context.add(dependency)
            def files = context.resolve()
    
            then:
            1 * dependency.resolve(context) >> { context.add(otherDependency) }
            1 * otherDependency.resolve(context) >> { context.add(fileCollection); context.add(dependency) }
            files instanceof UnionFileCollection
            files.sources as List == [fileCollection]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultDomainObjectSetTest.groovy

            def set = new DefaultDomainObjectSet<String>(String, composite.getStore(), callbackActionDecorator)
    
            when:
            c1.add("a")
            c1.add("b")
            c1.add("c")
            c1.add("d")
            c2.add("a")
            c2.add("c")
    
            then:
            set.size() == 4
            set.findAll { it != "c" } == ["a", "b", "d"] as LinkedHashSet
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 23:50:58 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. src/crypto/md5/md5block_s390x.s

    loop:
    	STMY	R2, R5, tmp-16(SP)
    
    	MOVWBR	0(R6), R8
    	MOVWZ	R5, R9
    
    #define ROUND1(a, b, c, d, index, const, shift) \
    	XOR	c, R9; \
    	ADD	$const, a; \
    	ADD	R8, a; \
    	MOVWBR	(index*4)(R6), R8; \
    	AND	b, R9; \
    	XOR	d, R9; \
    	ADD	R9, a; \
    	RLL	$shift, a; \
    	MOVWZ	c, R9; \
    	ADD	b, a
    
    	ROUND1(R2,R3,R4,R5, 1,0xd76aa478, 7);
    	ROUND1(R5,R2,R3,R4, 2,0xe8c7b756,12);
    	ROUND1(R4,R5,R2,R3, 3,0x242070db,17);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r35/ToolingApiEclipseModelDependencyAccessRuleCrossVersionSpec.groovy

                    dependency.accessRules.add(new AccessRule('0', 'id-accessible'))
                    dependency.accessRules.add(new AccessRule('1', 'id-nonaccessible'))
                    dependency.accessRules.add(new AccessRule('2', 'id-discouraged'))
                    dependency.accessRules.add(new AccessRule('accessible', 'literal-accessible'))
                    dependency.accessRules.add(new AccessRule('nonaccessible', 'literal-nonaccessible'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. test/codegen/arithmetic.go

    	// ppc64x/power8:"ADDIS\t[$]19,", "ADD\t[$]-10617,"
    	out[2] = a + 1234567
    	// ppc64x/power10:"ADD\t[$]-1234567,"
    	// ppc64x/power9:"ADDIS\t[$]-19,", "ADD\t[$]10617,"
    	// ppc64x/power8:"ADDIS\t[$]-19,", "ADD\t[$]10617,"
    	out[3] = a - 1234567
    	// ppc64x/power10:"ADD\t[$]2147450879,"
    	// ppc64x/power9:"ADDIS\t[$]32767,", "ADD\t[$]32767,"
    	// ppc64x/power8:"ADDIS\t[$]32767,", "ADD\t[$]32767,"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/SystemProperties.java

            standardProperties.add("java.compiler");
            standardProperties.add("java.ext.dirs");
            standardProperties.add("os.name");
            standardProperties.add("os.arch");
            standardProperties.add("os.version");
            standardProperties.add("file.separator");
            standardProperties.add("path.separator");
            standardProperties.add("line.separator");
            standardProperties.add("user.name");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top