Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 426 for Positions (0.22 sec)

  1. test/inline.go

    	if issue62211F(x) { // ERROR "inlining call to issue62211F"
    	}
    	if issue62211G(x) { // ERROR "inlining call to issue62211G"
    	}
    
    	// Initial fix CL caused a "non-monotonic scope positions" failure
    	// on code like this.
    	if z := 0; false {
    		panic(z)
    	}
    }
    
    func issue62211F(x bool) bool { // ERROR "can inline issue62211F"
    	if x || true {
    		return true
    	}
    	return true
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  2. src/debug/pe/file_test.go

    		// In order to identify this portion, the original image was first parsed by modified debug/pe package.
    		// Modification essentially communicated reader's positions before and after parsing.
    		// Finally, bytes between those positions where written to a separate file,
    		// generating trimmed down version Linux Kernel image used in this test case.
    		file: "testdata/vmlinuz-4.15.0-47-generic",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 01 02:25:16 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ImmutableSet.java

            }
          }
          return false;
        }
    
        /**
         * If more than this many consecutive positions are filled in a table of the specified size,
         * report probable hash flooding. ({@link #hashFloodingDetected} may also report hash flooding
         * if fewer consecutive positions are filled; see that method for details.)
         */
        static int maxRunBeforeFallback(int tableSize) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  4. src/runtime/callers_test.go

    	// function exit, rather than at the defer statement.
    	state = 2
    }
    
    // issue #51988
    // Func.Endlineno was lost when instantiating generic functions, leading to incorrect
    // stack trace positions.
    func TestCallersEndlineno(t *testing.T) {
    	testNormalEndlineno(t)
    	testGenericEndlineno[int](t)
    }
    
    func testNormalEndlineno(t *testing.T) {
    	defer testCallerLine(t, callerLine(t, 0)+1)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 21:36:31 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. src/encoding/csv/reader.go

    }
    
    // InputOffset returns the input stream byte offset of the current reader
    // position. The offset gives the location of the end of the most recently
    // read row and the beginning of the next row.
    func (r *Reader) InputOffset() int64 {
    	return r.offset
    }
    
    // pos holds the position of a field in the current line.
    type position struct {
    	line, col int
    }
    
    // ReadAll reads all the remaining records from r.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:32:28 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types_jsonschema.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: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/stackalloc.go

    				s.nNamedSlot++
    				f.setHome(v, name)
    				continue
    			}
    
    		noname:
    			// Set of stack slots we could reuse.
    			typeKey := v.Type.LinkString()
    			locs := locations[typeKey]
    			// Mark all positions in locs used by interfering values.
    			for i := 0; i < len(locs); i++ {
    				used[i] = false
    			}
    			for _, xid := range s.interfere[v.ID] {
    				slot := slots[xid]
    				if slot >= 0 {
    					used[slot] = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1alpha1/types_swagger_doc_generated.go

    == [2, 1]. Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:\n  - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and\n    non-intersecting elements in `Y` are appended, retaining their partial order.\n  - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values\n    are overwritten by values in `Y` when the key sets of `X` and `Y` intersect. Elements in `Y` with\n...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:10 UTC 2023
    - 27K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    		TypesInfo    *types.Info
    		ResultOf     map[*Analyzer]interface{}
    		Report       func(Diagnostic)
    		...
    	}
    
    The Fset, Files, Pkg, and TypesInfo fields provide the syntax trees,
    type information, and source positions for a single package of Go code.
    
    The OtherFiles field provides the names of non-Go
    files such as assembly that are part of this package.
    Similarly, the IgnoredFiles field provides the names of Go and non-Go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. 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)
Back to top