Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 107 for Dealer (0.56 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	nameptr = (*uint32)(unsafe.Pointer(uintptr(*nameptr + 12)))
    	argv[0] = unsafe.Pointer(uintptr(*nameptr))
    
    	request.header.ident = nwmHeaderIdentifier
    	request.header.length = uint32(unsafe.Sizeof(request.header))
    	request.header.version = nwmCurrentVer
    	request.header.nwmType = nwmTCPConnType
    	request.header.options = 0x80000000
    
    	request.filter.ident = nwmFilterIdentifier
    
    	var localSockaddr RawSockaddrAny
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/xcoff.go

    // as PE and XCOFF are based on COFF files.
    // XCOFF files generated are 64 bits.
    
    const (
    	// Total amount of space to reserve at the start of the file
    	// for File Header, Auxiliary Header, and Section Headers.
    	// May waste some.
    	XCOFFHDRRESERVE = FILHSZ_64 + AOUTHSZ_EXEC64 + SCNHSZ_64*23
    
    	// base on dump -o, then rounded from 32B to 64B to
    	// match worst case elf text section alignment on ppc64.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  3. cmd/object-api-datatypes_gen.go

    func (z BackendType) Msgsize() (s int) {
    	s = msgp.IntSize
    	return
    }
    
    // MarshalMsg implements msgp.Marshaler
    func (z *BucketInfo) MarshalMsg(b []byte) (o []byte, err error) {
    	o = msgp.Require(b, z.Msgsize())
    	// map header, size 5
    	// string "Name"
    	o = append(o, 0x85, 0xa4, 0x4e, 0x61, 0x6d, 0x65)
    	o = msgp.AppendString(o, z.Name)
    	// string "Created"
    	o = append(o, 0xa7, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  4. hack/local-up-cluster.sh

        fi
    
        # Create auth proxy client ca
        kube::util::create_signing_certkey "${CONTROLPLANE_SUDO}" "${CERT_DIR}" request-header '"client auth"'
    
        # serving cert for kube-apiserver
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. cmd/erasure-healing_test.go

    		t.Fatalf("part.1 not healed correctly")
    	}
    
    	partReconstructed, err = secondDisk.ReadAll(context.Background(), bucket, pathJoin(object, fi.DataDir, "part.1"))
    	if err != nil {
    		t.Fatalf("Failed to read a file - %v", err)
    	}
    
    	if !reflect.DeepEqual(part1Disk2Origin, partReconstructed) {
    		t.Fatalf("part.1 not healed correctly")
    	}
    }
    
    // Tests healing of object.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  6. tests/integration/security/authz_test.go

    			extAuthzHeaders := func(value string) http.Header {
    				return headers.New().
    					With(authz.XExtAuthz, value).
    					With(authz.XExtAuthzAdditionalHeaderOverride, "should-be-override").
    					Build()
    			}
    			allowHeaders := func() http.Header {
    				return extAuthzHeaders(authz.XExtAuthzAllow)
    			}
    			denyHeaders := func() http.Header {
    				return extAuthzHeaders("deny")
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  7. internal/bucket/lifecycle/lifecycle_test.go

    		lc.SetPredictionHeaders(w, tc.obj)
    		if expHdrs, ok := w.Header()[xhttp.AmzExpiration]; ok && !strings.Contains(expHdrs[0], lc.Rules[tc.expRuleID].ID) {
    			t.Fatalf("Test %d: Expected %s header", i+1, xhttp.AmzExpiration)
    		}
    		if transHdrs, ok := w.Header()[xhttp.MinIOTransition]; ok {
    			if !strings.Contains(transHdrs[0], lc.Rules[tc.transRuleID].ID) {
    				t.Fatalf("Test %d: Expected %s header", i+1, xhttp.MinIOTransition)
    			}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_client_test.go

    			NextProtos:   []string{"http", "something-else"},
    		})
    		errChan <- client.Handshake()
    	}()
    
    	var header [5]byte
    	if _, err := io.ReadFull(s, header[:]); err != nil {
    		t.Fatal(err)
    	}
    	recordLen := int(header[3])<<8 | int(header[4])
    
    	record := make([]byte, recordLen)
    	if _, err := io.ReadFull(s, record); err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  9. tests/integration/ambient/baseline_test.go

      hosts:
      - "{{.Destination}}"
      http:
      - headers:
          request:
            add:
              istio-custom-header: user-defined-value
        route:
        - destination:
            host: "{{.Destination}}"
    `).ApplyOrFail(t)
    				opt.Check = check.And(
    					check.OK(),
    					check.RequestHeader("Istio-Custom-Header", "user-defined-value"))
    				src.CallOrFail(t, opt)
    			})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/httproute_test.go

    				},
    				Spec: virtualServiceSpec,
    			}},
    			nil,
    		},
    		{
    			"session filter with header",
    			[]*model.Service{
    				buildHTTPServiceWithLabels("test-service.default.svc.cluster.local", visibility.Public, "", "default",
    					map[string]string{"istio.io/persistent-session-header": "x-session-header"}, 80),
    			},
    			[]config.Config{{
    				Meta: config.Meta{
    					GroupVersionKind: gvk.VirtualService,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
Back to top