Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for _Sat (0.05 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/test/resources/before_script.sh

        exit 1
      fi
      sleep 1
    done
    
    pushd /tmp >/dev/null
    git clone https://github.com/codelibs/fess-testdata.git
    popd >/dev/null
    
    cat ${temp_log_file} ./fess-*/logs/*.log
    curl -s "http://localhost:9201/_cat/indices?v"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 10 03:25:34 UTC 2024
    - 863 bytes
    - Viewed (0)
  3. 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)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    Often adding an attribute means adding it to _all_ existing variants.
    ====
    
    What we have done here is that we have added a _new_ variant, which can be used _at runtime_, but contains instrumented classes instead of the normal classes.
    However, it now means that for runtime, the consumer has to choose between two variants:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_dependencies.adoc

       (such _consumable_ configurations usually represent the <<variant_model.adoc#understanding-variant-selection,variants>> the producer offers to its consumers)
    
    For example, to express that an application `app` _depends on_ library `lib`, _at least_ one configuration is required:
    
    .Configurations are used to declare dependencies
    ====
    include::sample[dir="snippets/dependencyManagement/attributeMatching/kotlin",files="build.gradle.kts[tags=declare-configuration]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/c/experimental/filesystem/filesystem_interface.h

    ///
    /// The API number increases whenever we break API compatibility while still
    /// maintaining ABI compatibility. This happens only in the following cases:
    ///   1. A new method is added _at the end_ of the function table.
    ///   2. Preconditions or postconditions for one operation in these function
    ///   table change. Note that only core TensorFlow is able to impose these
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
Back to top