Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,059 for 3$ (0.02 sec)

  1. pkg/registry/core/service/storage/transaction_test.go

    				commit: func() {
    					temp = temp + 2
    				},
    				revert: func() {
    					temp = temp - 2
    				},
    			},
    			callbackTransaction{
    				commit: func() {
    					temp = temp + 3
    				},
    				revert: func() {
    					temp = temp - 3
    				},
    			},
    		},
    		want: 10,
    	}, {
    		name: "missing revert",
    		mt: metaTransaction{
    			callbackTransaction{
    				commit: func() {
    					temp = temp + 1
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 11 17:49:37 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/collection/SLinkedListTest.java

            list.addLast("2");
            assertThat(list.remove("3"), is(not(true)));
            assertThat(list.remove("1"), is(true));
            assertThat(list.remove(null), is(true));
            list.clear();
            list.addLast("1");
            list.addLast("2");
            list.addLast("3");
            list.remove(1);
            assertThat(list.get(0), is("1"));
            assertThat(list.get(1), is("3"));
    
            list.clear();
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. buildscripts/upgrade-tests/compose.yml

    volumes:
      data1-1:
      data1-2:
      data1-3:
      data2-1:
      data2-2:
      data2-3:
      data3-1:
      data3-2:
      data3-3:
      data4-1:
      data4-2:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/gcflags_patterns.txt

    go build -a -n -ldflags=-X=math.pi=3 my/cmd/prog
    stderr 'link.* -X=math.pi=3'
    
    # -ldflags applies to link of command even with strange directory name
    go build -a -n -ldflags=-X=math.pi=3 my/cmd/prog/
    stderr 'link.* -X=math.pi=3'
    
    # -ldflags applies to current directory
    cd my/cmd/prog
    go build -a -n -ldflags=-X=math.pi=3
    stderr 'link.* -X=math.pi=3'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 21 14:58:44 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/impl/FileCollectionFingerprintSerializerTest.groovy

                '/3': new DefaultFileSystemLocationFingerprint("/3", FileType.Missing, FileSystemLocationFingerprint.DIR_SIGNATURE),
                rootHashes,
                strategyConfigurationHash
            ), serializer)
    
            then:
            out.fingerprints.size() == 3
            out.fingerprints['/1'].with {
                type == FileType.Directory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. src/internal/buildcfg/cfg_test.go

    	}
    }
    
    func TestGoarm64FeaturesSupports(t *testing.T) {
    	g, _ := ParseGoarm64("v9.3")
    
    	if !g.Supports("v9.3") {
    		t.Errorf("Wrong goarm64Features.Supports for v9.3, v9.3")
    	}
    
    	if g.Supports("v9.4") {
    		t.Errorf("Wrong goarm64Features.Supports for v9.3, v9.4")
    	}
    
    	if !g.Supports("v8.8") {
    		t.Errorf("Wrong goarm64Features.Supports for v9.3, v8.8")
    	}
    
    	if g.Supports("v8.9") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. src/cmd/cover/testdata/test.go

    	} else {
    		check(LINE, 1)
    	}
    	for i := 0; i < 3; i++ {
    		if checkVal(LINE, 3, i) <= 2 {
    			check(LINE, 3)
    		}
    		if checkVal(LINE, 3, i) <= 1 {
    			check(LINE, 2)
    		}
    		if checkVal(LINE, 3, i) <= 0 {
    			check(LINE, 1)
    		}
    	}
    	for i := 0; i < 3; i++ {
    		if checkVal(LINE, 3, i) <= 1 {
    			check(LINE, 2)
    		} else {
    			check(LINE, 1)
    		}
    	}
    	for i := 0; i < 3; i++ {
    		if checkVal(LINE, 3, i) <= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.9K bytes
    - Viewed (0)
  8. src/net/tcpconn_keepalive_conf_posix_test.go

    		Idle:     0,
    		Interval: 3 * time.Second,
    		Count:    10,
    	},
    	{
    		Enable:   true,
    		Idle:     5 * time.Second,
    		Interval: 0,
    		Count:    10,
    	},
    	{
    		Enable:   true,
    		Idle:     5 * time.Second,
    		Interval: 3 * time.Second,
    		Count:    0,
    	},
    	{
    		Enable:   true,
    		Idle:     0,
    		Interval: 0,
    		Count:    10,
    	},
    	{
    		Enable:   true,
    		Idle:     0,
    		Interval: 3 * time.Second,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:21 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. pkg/apis/autoscaling/v1/conversion_test.go

    					MaxReplicas:                    3,
    					TargetCPUUtilizationPercentage: utilpointer.Int32(70),
    				},
    				s: nil,
    			},
    			false,
    		},
    		{
    			"TestConversionWithCPUAverageValueAndUtilizationBoth2",
    			args{
    				in: &autoscaling.HorizontalPodAutoscalerSpec{
    					MinReplicas: utilpointer.Int32(1),
    					MaxReplicas: 3,
    					Metrics: []autoscaling.MetricSpec{
    						{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 08 12:14:37 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. test/codegen/bitfield.go

    }
    
    // merge shift and sign-extension into sbfiz.
    func sbfiz2(x int32) int64 {
    	return int64(x << 3) // arm64:"SBFIZ\t[$]3, R[0-9]+, [$]29",-"LSL"
    }
    
    func sbfiz3(x int16) int64 {
    	return int64(x << 3) // arm64:"SBFIZ\t[$]3, R[0-9]+, [$]13",-"LSL"
    }
    
    func sbfiz4(x int8) int64 {
    	return int64(x << 3) // arm64:"SBFIZ\t[$]3, R[0-9]+, [$]5",-"LSL"
    }
    
    // sbfiz combinations.
    // merge shift with sbfiz into sbfiz.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 06:11:32 UTC 2022
    - 9.6K bytes
    - Viewed (0)
Back to top