Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 399 for revalue (0.14 sec)

  1. src/cmd/internal/objfile/pe.go

    	var syms []Sym
    	for _, s := range f.pe.Symbols {
    		const (
    			N_UNDEF = 0  // An undefined (extern) symbol
    			N_ABS   = -1 // An absolute symbol (e_value is a constant, not an address)
    			N_DEBUG = -2 // A debugging symbol
    		)
    		sym := Sym{Name: s.Name, Addr: uint64(s.Value), Code: '?'}
    		switch s.SectionNumber {
    		case N_UNDEF:
    			sym.Code = 'U'
    		case N_ABS:
    			sym.Code = 'C'
    		case N_DEBUG:
    			sym.Code = '?'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 20 00:56:30 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/testing/FreshValueGenerator.java

        return generateListMultimap(key, value);
      }
    
      @Generates
      static <K, V> ImmutableMultimap<K, V> generateImmutableMultimap(K key, V value) {
        return ImmutableMultimap.of(key, value);
      }
    
      @Generates
      static <K, V> ListMultimap<K, V> generateListMultimap(@Nullable K key, @Nullable V value) {
        return generateArrayListMultimap(key, value);
      }
    
      @Generates
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals("test-prop", pom.getValue("properties[1]/b")); // verifies profile applied
            assertEquals(4, ((List<?>) pom.getValue("modules")).size());
            assertEquals("module-2", pom.getValue("modules[1]"));
            assertEquals("module-1", pom.getValue("modules[2]"));
            assertEquals("module-3", pom.getValue("modules[3]"));
            assertEquals("module-4", pom.getValue("modules[4]"));
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/misc/AssertionUtil.java

         * @param argName
         *            {@code null} でも空文字列でもあってはならない引数の名前
         * @param argValue
         *            引数の値
         * @throws EmptyArgumentException
         *             引数が<code>null</code>または空文字列の場合。
         */
        public static void assertArgumentNotEmpty(final String argName, final CharSequence argValue) {
            if (argValue == null || argValue.length() == 0) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/graph/dotgraph.go

    	const shift = 0.7
    
    	// Saturation and value (in hsv colorspace) for background colors.
    	const bgSaturation = 0.1
    	const bgValue = 0.93
    
    	// Saturation and value (in hsv colorspace) for foreground colors.
    	const fgSaturation = 1.0
    	const fgValue = 0.7
    
    	// Choose saturation and value based on isBackground.
    	var saturation float64
    	var value float64
    	if isBackground {
    		saturation = bgSaturation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 20:51:42 UTC 2022
    - 14.8K bytes
    - Viewed (0)
  6. src/database/sql/fakedb_test.go

    					tcol = string(bs)
    				}
    				var argValue any
    				if wcol.Placeholder == "?" {
    					argValue = args[wcol.Ordinal-1].Value
    				} else {
    					if v := valueFromPlaceholderName(args, wcol.Placeholder[1:]); v != nil {
    						argValue = v
    					}
    				}
    				if fmt.Sprintf("%v", tcol) != fmt.Sprintf("%v", argValue) {
    					continue rows
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  7. maven-xml-impl/src/test/java/org/apache/maven/internal/xml/XmlNodeImplTest.java

                    + "<property combine.id='TOOVERWRITE'><name>TOOVERWRITE</name><value>LHS</value></property>"
                    + "</props>";
    
            String rhs = "<props>" + "<property combine.id='RHS-ONLY'><name>RHS-ONLY</name><value>RHS</value></property>"
                    + "<property combine.id='TOOVERWRITE'><name>TOOVERWRITE</name><value>RHS</value></property>"
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/util/ParameterUtil.java

                    configConfigMap.put(key.substring(CONFIG_PREFIX.length()), entry.getValue());
                } else if (key.startsWith(CLIENT_PREFIX)) {
                    clientConfigMap.put(key.substring(CLIENT_PREFIX.length()), entry.getValue());
                } else if (key.startsWith(XPATH_PREFIX)) {
                    xpathConfigMap.put(key.substring(XPATH_PREFIX.length()), entry.getValue());
                } else if (key.startsWith(META_PREFIX)) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. pkg/collateral/control.go

    				result[deepkey] = value
    			}
    			delete(reversemap, key)
    			reversemap[value] = append(reversemap[value], deepkeys...)
    		}
    		result[key] = value
    		reversemap[value] = append(reversemap[value], key)
    	}
    	return
    }
    
    func buildNestedMap(flatMap map[string]string) (result map[string]any) {
    	result = make(map[string]any)
    	for complexkey, value := range flatMap {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/CoercingStringValueSnapshot.java

            }
            if (Named.class.isAssignableFrom(type)) {
                return type.cast(instantiator.named(type.asSubclass(Named.class), getValue()));
            }
            if (Integer.class.equals(type)) {
                return type.cast(Integer.parseInt(getValue()));
            }
            return null;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top