Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 213 for pfxload (0.34 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    				objabi.R_ADDRPOWER_TOCREL, objabi.R_ADDRPOWER_TOCREL_DS:
    				o1, o2 = pfxload(p.As, p.To.Reg, REG_R0, PFX_R_PCREL)
    				rel.Type = objabi.R_ADDRPOWER_PCREL34
    			case objabi.R_POWER_TLS_IE:
    				o1, o2 = pfxload(p.As, p.To.Reg, REG_R0, PFX_R_PCREL)
    				rel.Type = objabi.R_POWER_TLS_IE_PCREL34
    			case objabi.R_ADDRPOWER_GOT:
    				o1, o2 = pfxload(p.As, p.To.Reg, REG_R0, PFX_R_PCREL)
    				rel.Type = objabi.R_ADDRPOWER_GOT_PCREL34
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. callbacks/preload.go

    		identityMap, foreignValues = schema.GetIdentityFieldValuesMap(tx.Statement.Context, reflectValue, foreignFields)
    		if len(foreignValues) == 0 {
    			return nil
    		}
    	}
    
    	// nested preload
    	for p, pvs := range preloads {
    		tx = tx.Preload(p, pvs...)
    	}
    
    	reflectResults := rel.FieldSchema.MakeSlice().Elem()
    	column, values := schema.ToQueryValues(clause.CurrentTable, relForeignKeys, foreignValues)
    
    	if len(values) != 0 {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. tests/preload_test.go

    		t.Fatalf("Expected first query to preload manager tools, got: %s", query[0])
    	}
    }
    
    func TestNestedPreloadWithPointerJoin(t *testing.T) {
    	type (
    		Preload struct {
    			ID     uint
    			Value  string
    			JoinID uint
    		}
    		Join struct {
    			ID       uint
    			Value    string
    			Preload  Preload
    			NestedID uint
    		}
    		Nested struct {
    			ID      uint
    			Join    Join
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:00:47 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loader/loader.go

    }
    
    // Preload has to be called prior to invoking the various methods
    // below related to pcdata, funcdataoff, files, and inltree nodes.
    func (fi *FuncInfo) Preload() {
    	fi.lengths = (*goobj.FuncInfo)(nil).ReadFuncInfoLengths(fi.data)
    }
    
    func (fi *FuncInfo) NumFile() uint32 {
    	if !fi.lengths.Initialized {
    		panic("need to call Preload first")
    	}
    	return fi.lengths.NumFile
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/ws/WebSocketWriterTest.kt

        val payload = Buffer()
        while (payload.completeSegmentByteCount() <= PAYLOAD_BYTE_MAX) {
          payload.writeByte('0'.code)
        }
        serverWriter.writeMessageFrame(OPCODE_BINARY, payload.snapshot())
    
        // Write directly to the unbuffered sink. This ensures it will become single frame.
        assertData("827e") // 'e' == 4-byte follow-up length.
        assertData(format("%04X", payload.completeSegmentByteCount()))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/builder/testdata/http/extended-allow-full-rule-out.yaml

                            path:
                            - key: payload
                            - key: iss
                            value:
                              stringMatch:
                                exact: requestPrincipals
                        - metadata:
                            filter: envoy.filters.http.jwt_authn
                            path:
                            - key: payload
                            - key: sub
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 39K bytes
    - Viewed (0)
  7. internal/grid/handlers.go

    	return m.RegisterSingleHandler(h.id, func(payload []byte) ([]byte, *RemoteErr) {
    		req := h.NewRequest()
    		_, err := req.UnmarshalMsg(payload)
    		if err != nil {
    			PutByteBuffer(payload)
    			r := RemoteErr(err.Error())
    			return nil, &r
    		}
    		resp, rerr := handle(req)
    		h.recycleReq(req)
    
    		if rerr != nil {
    			PutByteBuffer(payload)
    			return nil, rerr
    		}
    		payload, err = resp.MarshalMsg(payload[:0])
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/daemon-protocol/src/test/groovy/org/gradle/tooling/internal/provider/serialization/PayloadSerializerTest.groovy

            then:
            received1.class.classLoader == received2.class.classLoader
            received1.payload.class.classLoader == received2.payload.class.classLoader
            reply1.class == wrapperClass
            reply1.payload.class == payloadClass
            reply2.class == wrapperClass
            reply2.payload.class == payloadClass
        }
    
        void assertNotVisible(Class<?> from, Class<?> to) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. pkg/volume/util/atomic_writer_test.go

    		},
    		{
    			name: "payload with absolute path is invalid",
    			payload: map[string]FileProjection{
    				"/dev/null": {},
    			},
    			valid: false,
    		},
    		{
    			name: "payload with reserved path is invalid",
    			payload: map[string]FileProjection{
    				"..sneaky.txt": {},
    			},
    			valid: false,
    		},
    		{
    			name: "payload with doubledot path is invalid",
    			payload: map[string]FileProjection{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/builder/testdata/http/extended-single-policy-out.yaml

                            - key: payload
                            - key: iss
                            value:
                              stringMatch:
                                exact: rule[0]-from[0]-requestPrincipal[1]
                        - metadata:
                            filter: envoy.filters.http.jwt_authn
                            path:
                            - key: payload
                            - key: sub
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top