Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 825 for Positions (0.12 sec)

  1. src/crypto/cipher/gcm.go

    			msw := z.high & 0xf
    			z.high >>= 4
    			z.high |= z.low << 60
    			z.low >>= 4
    			z.low ^= uint64(gcmReductionTable[msw]) << 48
    
    			// the values in |table| are ordered for
    			// little-endian bit positions. See the comment
    			// in NewGCMWithNonceSize.
    			t := &g.productTable[word&0xf]
    
    			z.low ^= t.low
    			z.high ^= t.high
    			word >>= 4
    		}
    	}
    
    	*y = z
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. src/debug/dwarf/entry.go

    func (r *Reader) offset() Offset {
    	return r.b.off
    }
    
    // SeekPC returns the [Entry] for the compilation unit that includes pc,
    // and positions the reader to read the children of that unit.  If pc
    // is not covered by any unit, SeekPC returns [ErrUnknownPC] and the
    // position of the reader is undefined.
    //
    // Because compilation units can describe multiple regions of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  3. pilot/pkg/config/file/store.go

    		return
    	}
    
    	nodeContent := yamlNode.Content
    	// Iterate content by a step of 2, because in the content array the value is in the key's next index position
    	for i := 0; i < len(nodeContent)-1; i += 2 {
    		// Two condition, i + 1 positions have no content, which means they have the format like "key: value", then build the map
    		// Or i + 1 has contents, which means "key:\n  value...", then perform one more DFS search
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/enclosing.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package astutil
    
    // This file defines utilities for working with source positions.
    
    import (
    	"fmt"
    	"go/ast"
    	"go/token"
    	"sort"
    )
    
    // PathEnclosingInterval returns the node that encloses the source
    // interval [start, end), and all its ancestors up to the AST root.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

    // Eliminates unusued results from an operation `op` by cloning it with reduced
    // result types and doing appropriate use replacements. `results_to_eliminate`
    // is a bitvector of result positions to eliminate. If its null, then all unused
    // results of the operation will be eliminated.
    void EliminateUnusedResults(
        Operation *op, const llvm::BitVector *results_to_eliminate = nullptr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      //   - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and
      //     non-intersecting elements in `Y` are appended, retaining their partial order.
      //   - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1alpha1/types.go

    	//   - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and
    	//     non-intersecting elements in `Y` are appended, retaining their partial order.
    	//   - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 05 20:06:13 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  8. src/go/printer/printer_test.go

    		i2 := <-i2range
    
    		if i2.Name != i1.Name {
    			t.Errorf("got ident %s; want %s", i2.Name, i1.Name)
    		}
    
    		// here we care about the relative (line-directive adjusted) positions
    		l1 := fset.Position(i1.Pos()).Line
    		l2 := fset.Position(i2.Pos()).Line
    		if l2 != l1 {
    			t.Errorf("got line %d; want %d for %s", l2, l1, i1.Name)
    		}
    	}
    
    	if t.Failed() {
    		t.Logf("\n%s", buf.Bytes())
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  9. src/go/internal/gcimporter/ureader.go

    	return &reader{
    		Decoder: pr.TempDecoder(k, idx, marker),
    		p:       pr,
    	}
    }
    
    func (pr *pkgReader) retireReader(r *reader) {
    	pr.RetireDecoder(&r.Decoder)
    }
    
    // @@@ Positions
    
    func (r *reader) pos() token.Pos {
    	r.Sync(pkgbits.SyncPos)
    	if !r.Bool() {
    		return token.NoPos
    	}
    
    	// TODO(mdempsky): Delta encoding.
    	posBase := r.posBase()
    	line := r.Uint()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/value.go

    // The supplied position is used as the position of the new value.
    // Because this is used for rematerialization, check for case that (rematerialized)
    // input to value with position 'pos' carried a statement mark, and that the supplied
    // position (of the instruction using the rematerialized value) is not marked, and
    // preserve that mark if its line matches the supplied position.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top