Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for _Sat (0.53 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    // FixedType is a fixed numeric type of unknown size.
    type FixedType struct {
    	Base  AST
    	Accum bool
    	Sat   bool
    }
    
    func (ft *FixedType) print(ps *printState) {
    	if ft.Sat {
    		ps.writeString("_Sat ")
    	}
    	if bt, ok := ft.Base.(*BuiltinType); ok && bt.Name == "int" {
    		// The standard demangler skips printing "int".
    	} else {
    		ps.print(ft.Base)
    		ps.writeByte(' ')
    	}
    	if ft.Accum {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

                    zos.putNextEntry(entry);
                    try (CurlResponse response = ComponentUtil.getCurlHelper().get("/_cat/" + name).param("v", "").execute()) {
                        CopyUtil.copy(response.getContentAsStream(), zos);
                    }
                } catch (final Exception e) {
                    logger.warn("Failed to access /_cat/{}", name, e);
                }
            });
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

    First, the consumer needs to explain which version of the Java it needs.
    
    The consumer wants to resolve a variant that:
    
    - can be used at runtime (has `org.gradle.usage=java-runtime`)
    - can be run on _at least_ Java 8 (`org.gradle.jvm.version=8`)
    
    Second, the producer needs to expose the different variants of the component.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top