Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 788 for Tables (0.19 sec)

  1. src/cmd/vendor/golang.org/x/arch/x86/x86asm/inst.go

    }
    
    func isSegment(p Prefix) bool {
    	switch p {
    	case PrefixCS, PrefixDS, PrefixES, PrefixFS, PrefixGS, PrefixSS:
    		return true
    	}
    	return false
    }
    
    // The Op definitions and string list are in tables.go.
    
    var prefixNames = map[Prefix]string{
    	PrefixCS:       "CS",
    	PrefixDS:       "DS",
    	PrefixES:       "ES",
    	PrefixFS:       "FS",
    	PrefixGS:       "GS",
    	PrefixSS:       "SS",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. src/debug/dwarf/line.go

    }
    
    // Files returns the file name table of this compilation unit as of
    // the current position in the line table. The file name table may be
    // referenced from attributes in this compilation unit such as
    // [AttrDeclFile].
    //
    // Entry 0 is always nil, since file index 0 represents "no file".
    //
    // The file name table of a compilation unit is not fixed. Files
    // returns the file table as of the current position in the line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/flags.cc

               "\"xla_compile_cache\""),
          Flag("tf_xla_sparse_core_disable_table_stacking",
               &sparse_core_flags->tf_xla_sparse_core_disable_table_stacking,
               "Disable table stacking for all the tables passed to the SparseCore"
               "mid level API."),
          Flag("tf_xla_sparse_core_minibatch_max_division_level",
               &sparse_core_flags->tf_xla_sparse_core_minibatch_max_division_level,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_tpu_device.cc

                  xla_output->shaped_buffer()));
    
          // We need a single definition event for an XlaTensor, so make the
          // device to device stream wait for the stream that wrote the tuple index
          // tables on the destination device. Should this prove to be a problem,
          // we can always extend XlaTensor to take a pair of definition events that
          // must all be satisfied, or add an Event::Merge() API that allows us to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top