Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for ulong (0.05 sec)

  1. src/cmd/link/internal/ld/data.go

    // changed during the symtab() phase so as to insure that similar symbols
    // are bucketed together, then their types are changed back again during
    // dodata. Symbol to section assignment also plays tricks along these lines
    // in the case where a relro segment is needed.
    //
    // The value returned from setType() below reflects the effects of
    // any overrides made by symtab and/or dodata.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    		return fmt.Errorf("Get #2 got %q, %v, want %q, nil", string(got), err, expected)
    	}
    
    	if !testing.Short() {
    		conn, err := net.Dial("tcp", ts.Listener.Addr().String())
    		if err != nil {
    			return fmt.Errorf("long Dial: %v", err)
    		}
    		defer conn.Close()
    		go io.Copy(io.Discard, conn)
    		for i := 0; i < 5; i++ {
    			_, err := conn.Write([]byte("GET / HTTP/1.1\r\nHost: foo\r\n\r\n"))
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_test.go

    				}
    				return nil
    			},
    		},
    		{
    			"consistent hash settings with RingHash with min ringsize size defined along with deprecated minring size",
    			&networking.LoadBalancerSettings{
    				LbPolicy: &networking.LoadBalancerSettings_ConsistentHash{
    					ConsistentHash: &networking.LoadBalancerSettings_ConsistentHashLB{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  4. cmd/metrics-v2.go

    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"context"
    	"fmt"
    	"math"
    	"net/http"
    	"runtime"
    	"strconv"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"time"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  5. cmd/bucket-replication.go

    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"context"
    	"encoding/base64"
    	"encoding/binary"
    	"errors"
    	"fmt"
    	"io"
    	"math/rand"
    	"net/http"
    	"net/url"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  6. pkg/config/validation/validation.go

    }
    
    func validateWasmPluginSHA(plugin *extensions.WasmPlugin) error {
    	if plugin.Sha256 == "" {
    		return nil
    	}
    	if len(plugin.Sha256) != 64 {
    		return fmt.Errorf("sha256 field must be 64 characters long")
    	}
    	for _, r := range plugin.Sha256 {
    		if !('a' <= r && r <= 'f' || '0' <= r && r <= '9') {
    			return fmt.Errorf("sha256 field must match [a-f0-9]{64} pattern")
    		}
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      if (failed(failure_or_converged) || !failure_or_converged.value())
        return failure_or_converged;
      // TODO(b/156276510): Verify that it is always fine to refine a function's
      // return type, as long as we do not change the argument shapes.
      if (failed(context.InferShapeForFunctionReturnType(func))) return failure();
      return true;
    }
    
    absl::StatusOr<SmallVector<SmallVector<int64_t>>> ParseArgumentShapes(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  8. cluster/gce/util.sh

    # shellcheck disable=SC2153
    NODE_TAGS="${NODE_TAG}"
    
    ALLOCATE_NODE_CIDRS=true
    PREEXISTING_NETWORK=false
    PREEXISTING_NETWORK_MODE=""
    
    KUBE_PROMPT_FOR_UPDATE=${KUBE_PROMPT_FOR_UPDATE:-"n"}
    # How long (in seconds) to wait for cluster initialization.
    KUBE_CLUSTER_INITIALIZATION_TIMEOUT=${KUBE_CLUSTER_INITIALIZATION_TIMEOUT:-300}
    
    function join_csv() {
      local IFS=','; echo "$*";
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  9. cmd/object-handlers_test.go

    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"bytes"
    	"context"
    	"crypto/md5"
    	"crypto/sha1"
    	"encoding/base64"
    	"encoding/hex"
    	"encoding/xml"
    	"fmt"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods_test.go

    	for c, test := range map[string]struct {
    		input  string
    		output string
    	}{
    		"valid hostname": {
    			input:  "test.pod.hostname",
    			output: "test.pod.hostname",
    		},
    		"too long hostname": {
    			input:  "1234567.1234567.1234567.1234567.1234567.1234567.1234567.1234567.1234567.", // 8*9=72 chars
    			output: "1234567.1234567.1234567.1234567.1234567.1234567.1234567.1234567",          //8*8-1=63 chars
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
Back to top