Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 642 for remapping (0.2 sec)

  1. src/runtime/os_openbsd.go

    	if err != 0 || uintptr(a) != s.base() {
    		print("runtime: remapping stack memory ", hex(s.base()), " ", s.npages*pageSize, " a=", a, " err=", err, "\n")
    		throw("remapping stack memory failed")
    	}
    }
    
    //go:nosplit
    func raise(sig uint32) {
    	thrkill(getthrid(), int(sig))
    }
    
    func signalM(mp *m, sig int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GroovyScriptClassCompiler.java

            File instrumentedOutput = output.getInstrumentedOutput();
            File metadataDir = output.getMetadataDir();
            // TODO: Remove the remapping or move remapping to an uncached unit of work?
            ClassPath remappedClasses = remapClasses(instrumentedOutput, remapped);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:23:24 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/hash/Hashing.java

        return Fingerprint2011.FINGERPRINT_2011;
      }
    
      /**
       * Assigns to {@code hashCode} a "bucket" in the range {@code [0, buckets)}, in a uniform manner
       * that minimizes the need for remapping as {@code buckets} grows. That is, {@code
       * consistentHash(h, n)} equals:
       *
       * <ul>
       *   <li>{@code n - 1}, with approximate probability {@code 1/n}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/hash/Hashing.java

        return Fingerprint2011.FINGERPRINT_2011;
      }
    
      /**
       * Assigns to {@code hashCode} a "bucket" in the range {@code [0, buckets)}, in a uniform manner
       * that minimizes the need for remapping as {@code buckets} grows. That is, {@code
       * consistentHash(h, n)} equals:
       *
       * <ul>
       *   <li>{@code n - 1}, with approximate probability {@code 1/n}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/CrossBuildScriptCachingIntegrationSpec.groovy

            then:
            def scripts = scriptDetails()
            scriptsAreReused(before, scripts)
            getCompileBuildFileOperationsCount() == 2 // classpath + body changed build.gradle file
        }
    
        def "remapping scripts doesn't mix up classes with same name"() {
            given:
            root {
                'build.gradle'('''
                        task greet()
                        apply from: "gradle/one.gradle"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    		}
    	}
    
    	// Map into memory.
    	var mapping mmap.Data
    	if existing != nil {
    		mapping, err = memmap(f, existing.mapping)
    	} else {
    		mapping, err = memmap(f, nil)
    	}
    	if err != nil {
    		return nil, err
    	}
    	m.mapping = &mapping
    	if !bytes.HasPrefix(m.mapping.Data, hdr) {
    		return nil, fmt.Errorf("counter: header mismatch")
    	}
    	m.hdrLen = uint32(len(hdr))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. src/internal/coverage/cfile/emit.go

    	// List of meta-data symbols obtained from the runtime
    	metalist []rtcov.CovMetaBlob
    
    	// List of counter-data symbols obtained from the runtime
    	counterlist []rtcov.CovCounterBlob
    
    	// Table to use for remapping hard-coded pkg ids.
    	pkgmap map[int]int
    
    	// emit debug trace output
    	debug bool
    }
    
    var (
    	// finalHash is computed at init time from the list of meta-data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    	// it's a kernel / .ko module mapping, because with quipper address remapping
    	// enabled, the address would be in the lower half of the address space.
    
    	if m.kernelOffset != nil || m.start >= m.limit || m.limit >= (uint64(1)<<63) {
    		// For the kernel, find the program segment that includes the .text section.
    		return elfexec.FindTextProgHeader(ef), nil
    	}
    
    	// Fetch all the loadable segments.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    <2> Remaps the path of the extracting files into the destination directory by dropping the `libs` segment from the file path
    <3> Ignores the empty directories resulting from the remapping, see Caution note below
    
    [CAUTION]
    ====
    You can not change the destination path of empty directories with this technique.
    You can learn more in https://github.com/gradle/gradle/issues/2940[this issue].
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/cluster_tf_ops_pass.cc

        // appropriate.
        OpBuilder builder(block, block->end());
        IRMapping mapping;
        for (int i : llvm::seq<int>(0, metadata.inputs.size())) {
          Value original_value = metadata.inputs[i];
          Value new_value = func_op.getArgument(i);
          mapping.map(original_value, new_value);
        }
        for (Operation *op : metadata.ops) {
          builder.clone(*op, mapping);
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top