Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 4,111 for Tables (0.11 sec)

  1. src/internal/profile/profile.go

    		if len(s.Value) != sampleLen {
    			return fmt.Errorf("mismatch: sample has: %d values vs. %d types", len(s.Value), len(p.SampleType))
    		}
    	}
    
    	// Check that all mappings/locations/functions are in the tables
    	// Check that there are no duplicate ids
    	mappings := make(map[uint64]*Mapping, len(p.Mapping))
    	for _, m := range p.Mapping {
    		if m.ID == 0 {
    			return fmt.Errorf("found mapping with reserved ID=0")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/schema/schema.fbs

    }
    
    table LogicalAndOptions {
    }
    
    table LogicalNotOptions {
    }
    
    table UnpackOptions {
      num:int;
      axis:int;
    }
    
    table FloorDivOptions {
    }
    
    table SquareOptions {
    }
    
    table ZerosLikeOptions {
    }
    
    table FillOptions {
    }
    
    table FloorModOptions {
    }
    
    table RangeOptions {
    }
    
    table LeakyReluOptions {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types.go

    	Versions []CustomResourceDefinitionVersion `json:"versions,omitempty" protobuf:"bytes,7,rep,name=versions"`
    	// additionalPrinterColumns specifies additional columns returned in Table output.
    	// See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details.
    	// If present, this field configures columns for all versions.
    	// Top-level and per-version columns are mutually exclusive.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/util/DES.java

            int count = length / 8;
    
            for (int i=0; i<count; i++)
                encrypt(cipherText, i*8, clearText, i*8);
    
            return clearText;
        }
    
    
        // Tables, permutations, S-boxes, etc.
    
        private static byte[] bytebit = {
            (byte)0x80, (byte)0x40, (byte)0x20, (byte)0x10,
            (byte)0x08, (byte)0x04, (byte)0x02, (byte)0x01
        };
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 21.4K bytes
    - Viewed (0)
  5. tests/joins_test.go

    		t.Errorf("joins should be ordered, but got %v", stmt.SQL.String())
    	}
    
    	iv := DB.Table(`table_invoices`).Select(`seller, SUM(total) as total, SUM(paid) as paid, SUM(balance) as balance`).Group(`seller`)
    	stmt = dryDB.Table(`table_employees`).Select(`id, name, iv.total, iv.paid, iv.balance`).Joins(`LEFT JOIN (?) AS iv ON iv.seller = table_employees.id`, iv).Scan(&user).Statement
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. tests/update_test.go

    	DB.First(&result2, "code = ?", "save")
    	AssertEqual(t, result2, lang)
    
    	DB.Table("langs").Migrator().DropTable(&Language{})
    	DB.Table("langs").AutoMigrate(&Language{})
    
    	if err := DB.Table("langs").Save(&lang).Error; err != nil {
    		t.Errorf("no error should happen when creating data, but got %v", err)
    	}
    
    	var result3 Language
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Dec 04 03:50:58 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/sym.go

    	return false
    }
    
    // StaticNamePref is the prefix the front end applies to static temporary
    // variables. When turned into LSyms, these can be tagged as static so
    // as to avoid inserting them into the linker's name lookup tables.
    const StaticNamePref = ".stmp_"
    
    type traverseFlag uint32
    
    const (
    	traverseDefs traverseFlag = 1 << iota
    	traverseRefs
    	traverseAux
    	traversePcdata
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/unicode/norm/composition.go

    func (rb *reorderBuffer) bytesAt(n int) []byte {
    	inf := rb.rune[n]
    	return rb.byte[inf.pos : int(inf.pos)+int(inf.size)]
    }
    
    // For Hangul we combine algorithmically, instead of using tables.
    const (
    	hangulBase  = 0xAC00 // UTF-8(hangulBase) -> EA B0 80
    	hangulBase0 = 0xEA
    	hangulBase1 = 0xB0
    	hangulBase2 = 0x80
    
    	hangulEnd  = hangulBase + jamoLVTCount // UTF-8(0xD7A4) -> ED 9E A4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. src/unicode/letter_test.go

    	}
    }
    
    // Running 'go test -calibrate' runs the calibration to find a plausible
    // cutoff point for linear search of a range list vs. binary search.
    // We create a fake table and then time how long it takes to do a
    // sequence of searches within that table, for all possible inputs
    // relative to the ranges (something before all, in each, between each, after all).
    // This assumes that all possible runes are equally likely.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:46:03 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loader/symbolbuilder.go

    }
    
    // MakeSymbolUpdater creates a symbol builder helper for an existing
    // symbol 'symIdx'. If 'symIdx' is not an external symbol, then create
    // a clone of it (copy name, properties, etc) fix things up so that
    // the lookup tables and caches point to the new version, not the old
    // version.
    func (l *Loader) MakeSymbolUpdater(symIdx Sym) *SymbolBuilder {
    	if symIdx == 0 {
    		panic("can't update the null symbol")
    	}
    	if !l.IsExternal(symIdx) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 15:25:19 UTC 2023
    - 13.9K bytes
    - Viewed (0)
Back to top