Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,088 for remapping (0.15 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/runtimeshaded/RuntimeShadedJarCreator.java

                ImplementationDependencyRelocator.ClassLiteralRemapping remapping = null;
                if (CLASS_DESC.equals(desc)) {
                    remapping = remapper.maybeRemap(name);
                    if (remapping != null) {
                        remappedClassLiterals.put(remapping.getLiteral(), remapping.getLiteralReplacement().replace("/", "."));
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/mmap/mmap.go

    	// for the 3 specializations
    	f    *os.File
    	Data []byte
    	// Some windows magic
    	Windows interface{}
    }
    
    // Mmap maps the given file into memory.
    // When remapping a file, pass the most recently returned Data.
    func Mmap(f *os.File, data *Data) (Data, error) {
    	return mmapFile(f, data)
    }
    
    // Munmap unmaps the given file from memory.
    func Munmap(d *Data) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 21:40:49 UTC 2024
    - 1002 bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/RangeMap.java

       */
      void remove(Range<K> range);
    
      /**
       * Merges a value into a part of the map by applying a remapping function.
       *
       * <p>If any parts of the range are already present in this map, those parts are mapped to new
       * values by applying the remapping function. The remapping function accepts the map's existing
       * value for that part of the range and the given value. It returns the value to be associated
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorInjectDecoratedTest.groovy

            def returnType = obj.getClass().getDeclaredMethod("getThing").genericReturnType
            returnType == Number
        }
    
        def "can inject services using @Inject on a super interface with type parameter remapping"() {
            given:
            def services = defaultServices()
            _ * services.get(_) >> { Type type ->
                if (type instanceof ParameterizedType) {
                    assert type.rawType == List.class
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  7. 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)
  8. src/strings/replace.go

    		r.tableSize += int(b)
    	}
    
    	var index byte
    	for i, b := range r.mapping {
    		if b == 0 {
    			r.mapping[i] = byte(r.tableSize)
    		} else {
    			r.mapping[i] = index
    			index++
    		}
    	}
    	// Ensure root node uses a lookup table (for performance).
    	r.root.table = make([]*trieNode, r.tableSize)
    
    	for i := 0; i < len(oldnew); i += 2 {
    		r.root.add(oldnew[i], oldnew[i+1], len(oldnew)-i, r)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top