Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Xadd (0.1 sec)

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

    			// pass through to the external linker.
    			rr.Xadd = 0
    			if target.IsElf() {
    				rr.Xadd -= int64(siz)
    			}
    			rr.Xsym = rs
    			break
    		}
    		if rs != 0 && (ldr.SymSect(rs) != ldr.SymSect(s) || rt == objabi.R_GOTPCREL) {
    			// set up addend for eventual relocation via outer symbol.
    			rs := rs
    			rs, off := FoldSubSymbolOffset(ldr, rs)
    			rr.Xadd = r.Add() + off
    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

    }
    
    func TestEarlyHints(t *testing.T) {
    	ht := newHandlerTest(HandlerFunc(func(w ResponseWriter, r *Request) {
    		h := w.Header()
    		h.Add("Link", "</style.css>; rel=preload; as=style")
    		h.Add("Link", "</script.js>; rel=preload; as=script")
    		w.WriteHeader(StatusEarlyHints)
    
    		h.Add("Link", "</foo.js>; rel=preload; as=script")
    		w.WriteHeader(StatusEarlyHints)
    
    		w.Write([]byte("stuff"))
    	}))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    		if !v1helper.IsServiceIPSet(service) {
    			continue
    		}
    		serviceName := service.Name
    
    		// We always want to add environment variabled for master services
    		// from the default namespace, even if enableServiceLinks is false.
    		// We also add environment variables for other services in the same
    		// namespace, if enableServiceLinks is true.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            for (def line : stream.call().readLines()) {
                def matcher = pattern.matcher(line)
                if (matcher.matches()) {
                    dirs.add(new TestFile(matcher.group(1)))
                }
            }
            return dirs
        }
    
        TestFile getGcFile() {
            return cacheDir.file("gc.properties")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers.go

    	}
    
    	migrationGVR := obj.Spec.Resource.Resource + "." + obj.Spec.Resource.Version + "." + obj.Spec.Resource.Group
    	row.Cells = append(row.Cells, obj.Name, migrationGVR)
    	//ToDo: add migration condition 'status' and 'type' (migration successful | failed)
    
    	return []metav1.TableRow{row}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
Back to top