Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 128 for corerest (0.73 sec)

  1. src/net/http/request.go

    // earliest days of HTTP.  This value can also be fetched from the
    // [Header] map as Header["Referer"]; the benefit of making it available
    // as a method is that the compiler can diagnose programs that use the
    // alternate (correct English) spelling req.Referrer() but cannot
    // diagnose programs that use Header["Referrer"].
    func (r *Request) Referer() string {
    	return r.Header.Get("Referer")
    }
    
    // multipartByReader is a sentinel value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/load.go

    			// the root packages and promote their containing modules to root modules
    			// dependencies. If their go.mod files are tidy (the common case) and the
    			// set of root packages does not change then we can select the correct
    			// versions of all transitive imports on the first try and complete
    			// loading in a single iteration.
    			changedBuildList := ld.preloadRootModules(ctx, rootPkgs)
    			if changedBuildList {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/elf.go

    		ehdr.Phentsize = ELF32PHDRSIZE /* Must be ELF32PHDRSIZE */
    		ehdr.Shentsize = ELF32SHDRSIZE /* Must be ELF32SHDRSIZE */
    	}
    }
    
    // Make sure PT_LOAD is aligned properly and
    // that there is no gap,
    // correct ELF loaders will do this implicitly,
    // but buggy ELF loaders like the one in some
    // versions of QEMU and UPX won't.
    func fixElfPhdr(e *ElfPhdr) {
    	frag := int(e.Vaddr & (e.Align - 1))
    
    	e.Off -= uint64(frag)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

                        module("org.utils:api:1.5")
                    }
                    module("org.utils:optional-lib:5.0")
                }
            }
        }
    
        void "module forced by rule has correct selection reason"() {
            mavenRepo.module("org.utils", "impl", '1.3').dependsOn('org.utils', 'api', '1.3').publish()
            mavenRepo.module("org.utils", "impl", '1.5').dependsOn('org.utils', 'api', '1.5').publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  5. src/crypto/internal/nistec/p256_asm_ppc64le.s

    // - The string used with VPERM to swap the byte order
    //   for loads and stores.
    // - The constants that are loaded from CPOOL.
    //
    
    // The following constants are defined in an order
    // that is correct for use with LXVD2X/STXVD2X
    // on little endian.
    DATA p256<>+0x00(SB)/8, $0xffffffff00000001 // P256
    DATA p256<>+0x08(SB)/8, $0x0000000000000000 // P256
    DATA p256<>+0x10(SB)/8, $0x00000000ffffffff // P256
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  6. src/runtime/mbitmap.go

    			println("runtime: would've stopped here")
    			dumpTypePointers(tp)
    			break
    		}
    		print("runtime: addr=", hex(addr), "\n")
    		dumpTypePointers(tp)
    	}
    	throw("heapSetType: pointer entry not correct")
    }
    
    func doubleCheckHeapPointersInterior(x, interior, size, dataSize uintptr, typ *_type, header **_type, span *mspan) {
    	bad := false
    	if interior < x {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                    parent = parseOtherIvyFileOnFileSystem(location);
                    if (parent != null) {
                        //verify that the parsed descriptor is the correct parent module.
                        ModuleId expected = IvyUtil.createModuleId(parentOrganisation, parentModule);
                        ModuleId pid = parent.getModuleRevisionId().getModuleId();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

    }
    
    // Finish step N-1
    if (C_nm1) {
       T_nm1 = core_tpu(args_nm1, N_nm1, F_nm1)
       backward(args_nm1, N_nm1, F_nm1, T_nm1)
    }
    
    // To match the original, un-pipelined while loop, we need to return the
    // correct results from the pipelined version. Nominally, we'd like to do
    // this:
    // if ( NOT(C_nm2) ) {
    //   return args_nm2
    // } else if (NOT(C_nm1)) {
    //   return args_nm1
    // } else {
    //   return args_n
    // }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/SetsTest.java

        new EqualsTester().addEqualityGroup(forward, reverse).testEquals();
      }
    
      /**
       * Test that a hash code miscomputed by "input.hashCode() * tooFarValue / 2" is correct under our
       * {@code hashCode} implementation.
       */
      public void testPowerSetHashCode_inputHashCodeTimesTooFarValueIsZero() {
        Set<Object> sumToEighthMaxIntElements =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    func FindFirstFile(name *uint16, data *Win32finddata) (handle Handle, err error) {
    	// NOTE(rsc): The Win32finddata struct is wrong for the system call:
    	// the two paths are each one uint16 short. Use the correct struct,
    	// a win32finddata1, and then copy the results out.
    	// There is no loss of expressivity here, because the final
    	// uint16, if it is used, is supposed to be a NUL, and Go doesn't need that.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top