Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for gdbscript (0.23 sec)

  1. tensorflow/cc/gradients/linalg_grad.cc

      }
      return absl::nullopt;
    }
    
    // Returns a tuple denoting the slice mapping to ellipsis.
    //
    // For a given subscript, returns a tuple (start, end) denoting the start
    // axis index and the (negative) end axis index respectively. For any input
    // Tensor `x` described by the subscript, `x[start:end]` would be the slice
    // represented by the ellipsis. E.g. For `ab...cd` returns `[1, -2]`.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 07 23:11:54 UTC 2022
    - 20.4K bytes
    - Viewed (0)
  2. pkg/fieldpath/fieldpath_test.go

    				},
    			},
    			expectedMessageFragment: "invalid key subscript in metadata.annotations",
    		},
    		{
    			name:      "invalid label key",
    			fieldPath: "metadata.labels['Www.k8s.io/test']",
    			obj: &v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Annotations: map[string]string{"foo": "bar"},
    				},
    			},
    			expectedMessageFragment: "invalid key subscript in metadata.labels",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 02 06:26:55 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/typestring.go

    		w.typ(sig.results.vars[0].typ)
    		return
    	}
    
    	// multiple or named result(s)
    	w.tuple(sig.results, false)
    }
    
    // subscript returns the decimal (utf8) representation of x using subscript digits.
    func subscript(x uint64) string {
    	const w = len("₀") // all digits 0...9 have the same utf8 width
    	var buf [32 * w]byte
    	i := len(buf)
    	for {
    		i -= w
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. src/go/types/typestring.go

    		w.typ(sig.results.vars[0].typ)
    		return
    	}
    
    	// multiple or named result(s)
    	w.tuple(sig.results, false)
    }
    
    // subscript returns the decimal (utf8) representation of x using subscript digits.
    func subscript(x uint64) string {
    	const w = len("₀") // all digits 0...9 have the same utf8 width
    	var buf [32 * w]byte
    	i := len(buf)
    	for {
    		i -= w
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. src/math/big/prime.go

    	// In general V(k) = α^k + β^k, where α and β are roots of x² - Px + Q.
    	// Crandall and Pomerance (p.147) observe that for 0 ≤ j ≤ k,
    	//
    	//	V(j+k) = V(j)V(k) - V(k-j).
    	//
    	// So in particular, to quickly double the subscript:
    	//
    	//	V(2k) = V(k)² - 2
    	//	V(2k+1) = V(k) V(k+1) - P
    	//
    	// We can therefore start with k=0 and build up to k=s in log₂(s) steps.
    	natP := nat(nil).setWord(p)
    	vk := nat(nil).setWord(2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  6. tensorflow/cc/framework/cc_op_gen.cc

                           "  operator ::tensorflow::Operation() const { "
                           "return operation; }\n");
      } else if (op_info.output_types.size() == 1) {
        if (op_info.is_list_output[0]) {
          // Write the subscript operator, allowing out[i] for the list-typed
          // output.
          strings::StrAppend(&class_decl,
                             "  ::tensorflow::Output operator[](size_t index) "
                             "const { return ",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 17:22:47 UTC 2023
    - 17K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/api.go

    func (err Error) Error() string {
    	return fmt.Sprintf("%s: %s", err.Pos, err.Msg)
    }
    
    // FullError returns an error string like Error, buy it may contain
    // type-checker internal details such as subscript indices for type
    // parameters and more. Useful for debugging.
    func (err Error) FullError() string {
    	return fmt.Sprintf("%s: %s", err.Pos, err.Full)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  8. src/go/internal/gcimporter/iimport.go

    		declData: declData,
    		pkgIndex: make(map[*types.Package]map[string]uint64),
    		typCache: make(map[uint64]types.Type),
    		// Separate map for typeparams, keyed by their package and unique
    		// name (name with subscript).
    		tparamIndex: make(map[ident]*types.TypeParam),
    
    		fake: fakeFileSet{
    			fset:  fset,
    			files: make(map[string]*fileInfo),
    		},
    	}
    	defer p.fake.setLines() // set lines for files in fset
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/cases/map.go

    		c.writeBytes(b[:sz])
    		i = len(b[sz:]) / 2 // Greek modifiers are always of length 2.
    	}
    
    	for ; i < maxIgnorable && c.next(); i++ {
    		switch r, _ := utf8.DecodeRune(c.src[c.pSrc:]); r {
    		// Above and Iota Subscript
    		case 0x0300, // U+0300 COMBINING GRAVE ACCENT
    			0x0301, // U+0301 COMBINING ACUTE ACCENT
    			0x0304, // U+0304 COMBINING MACRON
    			0x0306, // U+0306 COMBINING BREVE
    			0x0308, // U+0308 COMBINING DIAERESIS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
Back to top