Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,776 for mapLine (0.26 sec)

  1. src/cmd/internal/osinfo/os_unix.go

    	}
    
    	sysname := unix.ByteSliceToString(uts.Sysname[:])
    	release := unix.ByteSliceToString(uts.Release[:])
    	version := unix.ByteSliceToString(uts.Version[:])
    	machine := unix.ByteSliceToString(uts.Machine[:])
    
    	return sysname + " " + release + " " + version + " " + machine, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 23:58:34 UTC 2022
    - 666 bytes
    - Viewed (0)
  2. operator/pkg/translate/translate_value.go

    		mapping := igwOutputMapping
    		if componentName == name.EgressComponentName {
    			mapping = egwOutputMapping
    		}
    		for K8SValKey, outPathTmpl := range t.KubernetesPatternMapping {
    			newKey, err := renderComponentName(K8SValKey, valKey)
    			if err != nil {
    				return err
    			}
    			newP := util.PathFromString(outPathTmpl)
    			mapping[newKey] = &Translation{newP[len(newP)-2:].String(), nil}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 03:52:24 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  3. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/DefaultDependencyCoordinateResolverFactory.java

                    // The configuration set on the variant is almost always more correct than the
                    // default version mapping configuration, which is currently set project-wide
                    // by the Java plugin. For this reason, we only use the version mapping default
                    // if the dependency mapping configuration is not set.
                    configuration = versionMapping.getDefaultResolutionConfiguration();
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    	if len(p.Mapping) > 0 {
    		// Remove the initial mapping if named '/anon_hugepage' and has a
    		// consecutive adjacent mapping.
    		if m := p.Mapping[0]; strings.HasPrefix(m.File, "/anon_hugepage") {
    			if len(p.Mapping) > 1 && m.Limit == p.Mapping[1].Start {
    				p.Mapping = p.Mapping[1:]
    			}
    		}
    	}
    
    	// Subtract the offset from the start of the main mapping if it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java

        Mapping<F, T> selfMapping() {
          return new Mapping<F, T>() {};
        }
      }
    
      public void testCyclicMapping() {
        Mapping<Integer, String> mapping = new Mapping<>();
        assertEquals(mapping.f, mapping.getFromType());
        assertEquals(mapping.t, mapping.getToType());
        assertEquals(mapping.f, mapping.flip().getFromType());
        assertEquals(mapping.t, mapping.flip().getToType());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java

        Mapping<F, T> selfMapping() {
          return new Mapping<F, T>() {};
        }
      }
    
      public void testCyclicMapping() {
        Mapping<Integer, String> mapping = new Mapping<>();
        assertEquals(mapping.f, mapping.getFromType());
        assertEquals(mapping.t, mapping.getToType());
        assertEquals(mapping.f, mapping.flip().getFromType());
        assertEquals(mapping.t, mapping.flip().getToType());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Table.java

       *
       * @param table the table to add to this table
       */
      void putAll(Table<? extends R, ? extends C, ? extends V> table);
    
      /**
       * Removes the mapping, if any, associated with the given keys.
       *
       * @param rowKey row key of mapping to be removed
       * @param columnKey column key of mapping to be removed
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

                    final Tuple3<String, String, String> mapping = fessConfig.getCrawlerMetadataNameMapping(key);
                    if (mapping != null) {
                        if (Constants.MAPPING_TYPE_ARRAY.equalsIgnoreCase(mapping.getValue2())) {
                            dataMap.put(mapping.getValue1(), values);
                        } else if (Constants.MAPPING_TYPE_STRING.equalsIgnoreCase(mapping.getValue2())) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/profile/encode.go

    		x := new(Sample)
    		pp := m.(*Profile)
    		pp.Sample = append(pp.Sample, x)
    		return decodeMessage(b, x)
    	},
    	// repeated Mapping mapping = 3
    	func(b *buffer, m message) error {
    		x := new(Mapping)
    		pp := m.(*Profile)
    		pp.Mapping = append(pp.Mapping, x)
    		return decodeMessage(b, x)
    	},
    	// repeated Location location = 4
    	func(b *buffer, m message) error {
    		x := new(Location)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  10. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JvmImplementation.java

     * limitations under the License.
     */
    
    package org.gradle.jvm.toolchain;
    
    
    /**
     * Represents a filter for a implementation of a Java Virtual Machine.
     *
     * @since 6.8
     */
    public final class JvmImplementation {
    
        /**
         * Vendor-specific virtual machine implementation.
         *
         * Acts as a placeholder and matches any implementation from any vendor.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 17:40:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top