Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 723 for 21$ (0.04 sec)

  1. guava-tests/test/com/google/common/collect/CountTest.java

      }
    
      public void testGetAndAdd() {
        Count holder = new Count(20);
        assertEquals(20, holder.get());
        holder.add(1);
        assertEquals(21, holder.get());
      }
    
      public void testAddAndGet() {
        Count holder = new Count(20);
        assertEquals(21, holder.addAndGet(1));
      }
    
      public void testGetAndSet() {
        Count holder = new Count(10);
        assertEquals(10, holder.getAndSet(20));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/asm7.go

    	ASWPH:   1<<30 | 0x1c1<<21 | 0x20<<10,
    	ASWPB:   0<<30 | 0x1c1<<21 | 0x20<<10,
    	ASWPLD:  3<<30 | 0x1c3<<21 | 0x20<<10,
    	ASWPLW:  2<<30 | 0x1c3<<21 | 0x20<<10,
    	ASWPLH:  1<<30 | 0x1c3<<21 | 0x20<<10,
    	ASWPLB:  0<<30 | 0x1c3<<21 | 0x20<<10,
    	ACASD:   3<<30 | 0x45<<21 | 0x1f<<10,
    	ACASW:   2<<30 | 0x45<<21 | 0x1f<<10,
    	ACASH:   1<<30 | 0x45<<21 | 0x1f<<10,
    	ACASB:   0<<30 | 0x45<<21 | 0x1f<<10,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  3. docs/site-replication/run-multi-site-oidc.sh

    minio server --address ":9001" --console-address ":10000" /tmp/minio1/{1...4} >/tmp/minio1_1.log 2>&1 &
    site1_pid=$!
    export MINIO_IDENTITY_OPENID_REDIRECT_URI="http://127.0.0.1:11000/oauth_callback"
    minio server --address ":9002" --console-address ":11000" /tmp/minio2/{1...4} >/tmp/minio2_1.log 2>&1 &
    site2_pid=$!
    
    export MINIO_IDENTITY_OPENID_REDIRECT_URI="http://127.0.0.1:12000/oauth_callback"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. docs/bucket/replication/setup_3site_replication.sh

    minio server --address 127.0.0.1:9004 "http://127.0.0.1:9003/tmp/multisiteb/data/disterasure/xl{1...4}" \
    	"http://127.0.0.1:9004/tmp/multisiteb/data/disterasure/xl{5...8}" >/tmp/siteb_2.log 2>&1 &
    
    minio server --address 127.0.0.1:9005 "http://127.0.0.1:9005/tmp/multisitec/data/disterasure/xl{1...4}" \
    	"http://127.0.0.1:9006/tmp/multisitec/data/disterasure/xl{5...8}" >/tmp/sitec_1.log 2>&1 &
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. buildscripts/verify-healing.sh

    	done
    
    	"${MINIO[@]}" --address ":$((start_port + 1))" $args >"${WORK_DIR}/dist-minio-server1.log" 2>&1 &
    	pid1=$!
    	disown ${pid1}
    
    	"${MINIO[@]}" --address ":$((start_port + 2))" $args >"${WORK_DIR}/dist-minio-server2.log" 2>&1 &
    	pid2=$!
    	disown $pid2
    
    	"${MINIO[@]}" --address ":$((start_port + 3))" $args >"${WORK_DIR}/dist-minio-server3.log" 2>&1 &
    	pid3=$!
    	disown $pid3
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. hack/update-generated-api-compatibility-data.sh

    # We suppress the test failure that occurs when there are changes.
    UPDATE_COMPATIBILITY_FIXTURE_DATA=true go test k8s.io/api -run //HEAD >/dev/null 2>&1 || true
    UPDATE_COMPATIBILITY_FIXTURE_DATA=true go test k8s.io/apiextensions-apiserver/pkg/apis -run //HEAD >/dev/null 2>&1 || true
    
    # Now that we have regenerated data at HEAD, run the test without suppressing output or failures
    go test k8s.io/api -run //HEAD -count=1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/primitives/CharsTest.java

        testRotate(new char[] {'1', '2'}, -3, new char[] {'2', '1'});
        testRotate(new char[] {'1', '2'}, -1, new char[] {'2', '1'});
        testRotate(new char[] {'1', '2'}, -2, new char[] {'1', '2'});
        testRotate(new char[] {'1', '2'}, 0, new char[] {'1', '2'});
        testRotate(new char[] {'1', '2'}, 1, new char[] {'2', '1'});
        testRotate(new char[] {'1', '2'}, 2, new char[] {'1', '2'});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. hack/tools/go.mod

    	go.uber.org/mock v0.4.0
    	gotest.tools/gotestsum v1.6.4
    	honnef.co/go/tools v0.4.6
    	sigs.k8s.io/logtools v0.8.1
    )
    
    require (
    	4d63.com/gocheckcompilerdirectives v1.2.1 // indirect
    	4d63.com/gochecknoglobals v0.2.1 // indirect
    	github.com/4meepo/tagalign v1.3.3 // indirect
    	github.com/Abirdcfly/dupword v0.0.13 // indirect
    	github.com/Antonboom/errname v0.1.12 // indirect
    	github.com/Antonboom/nilnil v0.1.7 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. tests/integration/tests.mk

    define run-test
    $(GO) test -exec=true -toolexec=$(REPO_ROOT)/tools/go-compile-without-link -vet=off -tags=integ $2 $1
    $(GO) test -p 1 ${T} -tags=integ -vet=off -timeout 30m $2 $1 ${_INTEGRATION_TEST_FLAGS} ${_INTEGRATION_TEST_SELECT_FLAGS} 2>&1 | tee >($(JUNIT_REPORT) > $(JUNIT_OUT))
    endef
    
    # Ensure that all test files are tagged properly. This ensures that we don't accidentally skip tests
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/library/cost_test.go

    			expr:                `sets.contains([], [])`,
    			expectEstimatedCost: checker.CostEstimate{Min: 21, Max: 21},
    			expectRuntimeCost:   21,
    		},
    		{
    			expr:                `sets.contains([1], [])`,
    			expectEstimatedCost: checker.CostEstimate{Min: 21, Max: 21},
    			expectRuntimeCost:   21,
    		},
    		{
    			expr:                `sets.contains([1], [1])`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 40.8K bytes
    - Viewed (0)
Back to top