Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,111 for Tables (0.12 sec)

  1. dbflute_fess/dfprop/classificationDeploymentMap.dfprop

    #
    # This property uses classification names of classificationDefinitionMap.
    # The table name '$$ALL$$' means all tables are target.
    # The table names and column names are treated as case insensitive.
    #
    # You don't need specify here about table classifications.
    # Because table classifications are auto-deployed by relation information.
    #
    # Specification:
    # map: {
    #     [table-name or $$ALL$$] = map:{
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 04 22:46:31 UTC 2015
    - 795 bytes
    - Viewed (0)
  2. src/internal/profile/merge.go

    	ids := make([]string, len(sample.Location))
    	for i, l := range sample.Location {
    		ids[i] = strconv.FormatUint(l.ID, 16)
    	}
    
    	labels := make([]string, 0, len(sample.Label))
    	for k, v := range sample.Label {
    		labels = append(labels, fmt.Sprintf("%q%q", k, v))
    	}
    	sort.Strings(labels)
    
    	numlabels := make([]string, 0, len(sample.NumLabel))
    	for k, v := range sample.NumLabel {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 17 19:35:56 UTC 2020
    - 11.3K bytes
    - Viewed (0)
  3. src/internal/abi/symtab.go

    	// FuncFlagSPWrite indicates a function that writes an arbitrary value to SP
    	// (any write other than adding or subtracting a constant amount).
    	// The traceback routines cannot encode such changes into the
    	// pcsp tables, so the function traceback cannot safely unwind past
    	// SPWrite functions. Stopping at an SPWrite function is considered
    	// to be an incomplete unwinding of the stack. In certain contexts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 14:25:22 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Table.java

      /**
       * Copies all mappings from the specified table to this table. The effect is equivalent to calling
       * {@link #put} with each row key / column key / value mapping in {@code table}.
       *
       * @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.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  5. src/image/jpeg/writer.go

    //   - the marker length "\x00\x0c",
    //   - the number of components "\x03",
    //   - component 1 uses DC table 0 and AC table 0 "\x01\x00",
    //   - component 2 uses DC table 1 and AC table 1 "\x02\x11",
    //   - component 3 uses DC table 1 and AC table 1 "\x03\x11",
    //   - the bytes "\x00\x3f\x00". Section B.2.3 of the spec says that for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  6. test/codegen/retpoline.go

    package codegen
    
    func CallFunc(f func()) {
    	// amd64:`CALL\truntime.retpoline`
    	f()
    }
    
    func CallInterface(x interface{ M() }) {
    	// amd64:`CALL\truntime.retpoline`
    	x.M()
    }
    
    // Check to make sure that jump tables are disabled
    // when retpoline is on. See issue 57097.
    func noJumpTables(x int) int {
    	switch x {
    	case 0:
    		return 0
    	case 1:
    		return 1
    	case 2:
    		return 2
    	case 3:
    		return 3
    	case 4:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 580 bytes
    - Viewed (0)
  7. cni/pkg/plugin/sidecar_intercept_rule_mgr.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package plugin
    
    // InterceptRuleMgr configures networking tables (e.g. iptables or nftables) for
    // redirecting traffic to an Istio proxy.
    type InterceptRuleMgr interface {
    	Program(podName, netns string, redirect *Redirect) error
    }
    
    // Constructor for iptables InterceptRuleMgr
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 940 bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Table.java

      /**
       * Copies all mappings from the specified table to this table. The effect is equivalent to calling
       * {@link #put} with each row key / column key / value mapping in {@code table}.
       *
       * @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.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/TablesTransposeRowTest.java

    public class TablesTransposeRowTest extends RowTests {
      public TablesTransposeRowTest() {
        super(false, true, true, true, false);
      }
    
      @Override
      Table<Character, String, Integer> makeTable() {
        Table<String, Character, Integer> original = TreeBasedTable.create();
        return Tables.transpose(original);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/internal/language/compact/language.go

    // license that can be found in the LICENSE file.
    
    //go:generate go run gen.go gen_index.go -output tables.go
    //go:generate go run gen_parents.go
    
    package compact
    
    // TODO: Remove above NOTE after:
    // - verifying that tables are dropped correctly (most notably matcher tables).
    
    import (
    	"strings"
    
    	"golang.org/x/text/internal/language"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top