Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 122 for 4000 (0.04 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

                properties.put("user.home", getUserHomeDir().getAbsolutePath());
            }
    
            properties.put(DaemonBuildOptions.IdleTimeoutOption.GRADLE_PROPERTY, "" + (daemonIdleTimeoutSecs * 1000));
            properties.put(DaemonBuildOptions.BaseDirOption.GRADLE_PROPERTY, daemonBaseDir.getAbsolutePath());
            if (!noExplicitNativeServicesDir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	return printUint16(uint16(r))
    }
    
    func printPaddedUint8(i uint8) string {
    	b := byte(i)
    	return string([]byte{
    		b/100 + '0',
    		b/10%10 + '0',
    		b%10 + '0',
    	})
    }
    
    func printUint8Bytes(buf []byte, i uint8) []byte {
    	b := byte(i)
    	if i >= 100 {
    		buf = append(buf, b/100+'0')
    	}
    	if i >= 10 {
    		buf = append(buf, b/10%10+'0')
    	}
    	return append(buf, b%10+'0')
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  3. pilot/pkg/model/virtualservice_test.go

    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/config/schema/kind"
    	"istio.io/istio/pkg/config/visibility"
    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/util/sets"
    )
    
    const wildcardIP = "0.0.0.0"
    
    func TestMergeVirtualServices(t *testing.T) {
    	independentVs := config.Config{
    		Meta: config.Meta{
    			GroupVersionKind: gvk.VirtualService,
    			Name:             "virtual-service",
    			Namespace:        "default",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  4. src/sync/atomic/atomic_test.go

    			v := addr.Load()
    			if addr.CompareAndSwap(v, v+1) {
    				break
    			}
    		}
    	}
    }
    
    func TestHammer32(t *testing.T) {
    	const p = 4
    	n := 100000
    	if testing.Short() {
    		n = 1000
    	}
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(p))
    
    	for name, testf := range hammer32 {
    		c := make(chan int)
    		var val uint32
    		for i := 0; i < p; i++ {
    			go func() {
    				defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbTransportImpl.java

                    rn = dfsResp.getNumReferrals();
                }
    
                DfsReferralDataImpl cur = null;
                long expiration = System.currentTimeMillis() + ( ctx.getConfig().getDfsTtl() * 1000 );
                Referral[] refs = dfsResp.getReferrals();
                for ( int di = 0; di < rn; di++ ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

                  }
                },
                executor);
        assertThat(getFinalValue(closingFuture)).isEqualTo(mockCloseable);
        waitUntilClosed(closingFuture);
        verify(mockCloseable, timeout(1000)).close();
      }
    
      /**
       * Marks the given step final, waits for it to be finished, and returns the value.
       *
       * @throws ExecutionException if the step failed
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  7. hack/local-up-cluster.sh

    API_HOST=${API_HOST:-localhost}
    API_HOST_IP=${API_HOST_IP:-"127.0.0.1"}
    ADVERTISE_ADDRESS=${ADVERTISE_ADDRESS:-""}
    NODE_PORT_RANGE=${NODE_PORT_RANGE:-""}
    API_BIND_ADDR=${API_BIND_ADDR:-"0.0.0.0"}
    EXTERNAL_HOSTNAME=${EXTERNAL_HOSTNAME:-localhost}
    
    KUBELET_HOST=${KUBELET_HOST:-"127.0.0.1"}
    KUBELET_RESOLV_CONF=${KUBELET_RESOLV_CONF:-"/etc/resolv.conf"}
    # By default only allow CORS for requests on localhost
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. internal/bucket/lifecycle/lifecycle_test.go

    			prefix:      "foodir/",
    			want:        false,
    		},
    		{
    			inputConfig: `<LifecycleConfiguration><Rule><Filter><Prefix>foodir/</Prefix></Filter><Status>Enabled</Status><Expiration><Date>2999-01-01T00:00:00.000Z</Date></Expiration></Rule></LifecycleConfiguration>`,
    			prefix:      "foodir/foobject",
    			want:        false,
    		},
    		{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. cmd/peer-rest-server.go

    	mask, err := strconv.Atoi(params.Get(peerRESTLogMask))
    	if err != nil {
    		mask = int(madmin.LogMaskAll)
    	}
    	ch := make(chan log.Info, 1000)
    	err = globalConsoleSys.Subscribe(ch, ctx.Done(), "", 0, madmin.LogMask(mask), nil)
    	if err != nil {
    		return grid.NewRemoteErr(err)
    	}
    	var buf bytes.Buffer
    	enc := json.NewEncoder(&buf)
    	for {
    		select {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

                  }
                },
                executor);
        assertThat(getFinalValue(closingFuture)).isEqualTo(mockCloseable);
        waitUntilClosed(closingFuture);
        verify(mockCloseable, timeout(1000)).close();
      }
    
      /**
       * Marks the given step final, waits for it to be finished, and returns the value.
       *
       * @throws ExecutionException if the step failed
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
Back to top